:root {
  --plum: #6f5665;
  --plum-soft: #9a879b;
  --sage: #8b9677;
  --olive: #606049;
  --gold: #efb31a;
  --ink: #2d2a2a;
  --muted: #6f6869;
  --line: #e9e2e7;
  --wash: #fbfaf8;
  --lavender: #f5eff4;
  --sage-wash: #f2f5ee;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(62, 52, 57, 0.08);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 96px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
}

.logo {
  width: 232px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 24px);
  font-size: 0.94rem;
  color: #332f31;
  min-width: 0;
  flex: 1;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.page-get-started .site-header .nav-links .button {
  display: none;
}

.nav-links a:hover {
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--plum);
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0;
  cursor: pointer;
}

.button.secondary {
  color: var(--plum);
  background: var(--white);
  border-color: var(--plum-soft);
}

.button.sage {
  background: var(--olive);
  border-color: var(--olive);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 90px 0 96px;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 32%, rgba(111, 86, 101, 0.44) 0 9%, rgba(111, 86, 101, 0.2) 25%, rgba(111, 86, 101, 0) 52%),
    radial-gradient(circle at 84% 58%, rgba(139, 150, 119, 0.4) 0 11%, rgba(139, 150, 119, 0.19) 29%, rgba(139, 150, 119, 0) 56%),
    radial-gradient(circle at 63% 72%, rgba(239, 179, 26, 0.34) 0 8%, rgba(239, 179, 26, 0.15) 23%, rgba(239, 179, 26, 0) 46%),
    radial-gradient(circle at 94% 21%, rgba(154, 135, 155, 0.34) 0 10%, rgba(154, 135, 155, 0.14) 28%, rgba(154, 135, 155, 0) 52%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 34%, rgba(245, 239, 244, 0.8) 68%, rgba(242, 245, 238, 0.86) 100%);
  opacity: 0.96;
  transform: scale(1);
  transform-origin: 78% 48%;
  animation: heroAuraPulse 9s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.3) 58%, #fbfaf8 100%);
}

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.84;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: center;
}

.hero-grid > *,
.split > *,
.card,
.service-card,
.testimonial,
.step,
.detail-card,
.brand-panel {
  min-width: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--plum);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.9rem, 5.4vw, 4.7rem);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

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

.hero-note {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--olive);
  font-weight: 700;
}

.brand-panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  padding: 34px;
  border: 1px solid rgba(111, 86, 101, 0.18);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(62, 52, 57, 0.1);
}

.brand-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(280px, 42vw, 560px);
  height: clamp(280px, 42vw, 560px);
  right: clamp(-260px, -16vw, -130px);
  top: 58%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 150, 119, 0.42) 0 12%, rgba(139, 150, 119, 0.23) 29%, rgba(139, 150, 119, 0.09) 48%, rgba(139, 150, 119, 0) 70%),
    radial-gradient(circle at 42% 42%, rgba(239, 179, 26, 0.14), rgba(239, 179, 26, 0) 38%);
  transform: translateY(-50%) scale(0.94);
  transform-origin: center;
  animation: curiousTilePulse 7.2s ease-in-out infinite;
  pointer-events: none;
  display: none;
}

@keyframes curiousTilePulse {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(-50%) scale(0.92);
  }

  50% {
    opacity: 0.96;
    transform: translateY(-50%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .brand-panel::before {
    animation: none;
  }
}

.brand-panel h2 {
  margin: 0 0 16px;
  color: var(--olive);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1.85rem;
  line-height: 1.18;
  font-weight: 650;
}

.brand-panel p {
  margin: 0;
  color: var(--muted);
}

.curious-corner-leaves {
  position: absolute;
  right: -24px;
  bottom: -21px;
  z-index: 2;
  width: 126px;
  pointer-events: none;
}

.curious-corner-leaves svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 18px rgba(62, 52, 57, 0.12));
}

.corner-leaf {
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.corner-leaf-sage {
  fill: var(--sage);
}

.corner-leaf-plum {
  fill: var(--plum);
}

.corner-leaf-vein {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.accent-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.accent-list li {
  border-top: 1px solid var(--line);
}

.accent-list a {
  display: block;
  padding: 14px 0 14px 18px;
  border-left: 3px solid var(--sage);
  color: inherit;
}

.accent-list a:hover,
.accent-list a:focus-visible {
  border-left-color: var(--gold);
  color: var(--plum);
  background: linear-gradient(90deg, rgba(239, 179, 26, 0.08), transparent 72%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.split h2,
.final-cta h2,
.page-section h2 {
  margin: 0;
  color: var(--plum);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 650;
}

.section-head p,
.split p,
.page-section p {
  color: var(--muted);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

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

.card,
.service-card,
.testimonial,
.step,
.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(62, 52, 57, 0.05);
}

.card {
  padding: 30px;
}

.card h3,
.service-card h3,
.detail-card h3 {
  margin: 0 0 12px;
  color: var(--olive);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1.34rem;
  line-height: 1.28;
  font-weight: 650;
}

.card p,
.service-card p,
.testimonial p,
.step p,
.detail-card p {
  margin: 0;
  color: var(--muted);
}

.chip {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--lavender);
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.portrait-card {
  padding: 34px;
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.founder-photo {
  margin: 0 0 24px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(62, 52, 57, 0.06);
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  object-position: 42% center;
}

.lisa-photo-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lisa-photo-card img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center center;
}

.lisa-photo-card figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.portrait-card .mark {
  width: 86px;
  height: 86px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.credential-label {
  margin-top: 28px;
}

.trust-list a {
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--olive);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-list a:hover,
.trust-list a:focus-visible {
  border-color: rgba(239, 179, 26, 0.75);
  color: var(--plum);
  box-shadow: 0 10px 24px rgba(62, 52, 57, 0.06);
}

.social-block {
  margin-top: 28px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(111, 86, 101, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--olive);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(62, 52, 57, 0.05);
}

.social-button img {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 28px;
}

.social-button:hover,
.social-button:focus-visible {
  border-color: rgba(239, 179, 26, 0.68);
  color: var(--plum);
  transform: translateY(-1px);
}

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

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.credential-card {
  grid-column: span 2;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(62, 52, 57, 0.06);
}

.credential-card h3 {
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 1.22rem;
}

.credential-card .check-list + h3 {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(111, 86, 101, 0.12);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.media-card {
  grid-column: span 3;
}

.accolade-card {
  grid-column: span 3;
}

.testimonial-grid,
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid {
  align-items: stretch;
}

.testimonial-grid .testimonial,
.testimonial-grid .testimonial:nth-child(even) {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin-top: 0;
}

.testimonial-grid .testimonial cite {
  margin-top: auto;
}

.video-feature-link {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 6px;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid rgba(111, 86, 101, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 16%, rgba(239, 179, 26, 0.24), rgba(239, 179, 26, 0) 30%),
    radial-gradient(circle at 18% 88%, rgba(139, 150, 119, 0.22), rgba(139, 150, 119, 0) 34%),
    linear-gradient(135deg, rgba(111, 86, 101, 0.94), rgba(96, 96, 73, 0.88));
  color: var(--white);
}

.video-feature-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(118deg, transparent 0 54px, rgba(255, 255, 255, 0.055) 55px 56px);
}

.video-feature-link > * {
  position: relative;
  z-index: 1;
}

.video-feature-link strong {
  font-size: 1.35rem;
  line-height: 1.12;
}

.video-feature-link span:not(.play-mark) {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.86rem;
}

.play-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(45, 42, 42, 0.18);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--plum);
}

.video-feature-link:hover,
.video-feature-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(62, 52, 57, 0.14);
}

.media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(111, 86, 101, 0.16);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--olive);
  font-weight: 800;
  font-size: 0.88rem;
}

.media-links a:hover,
.media-links a:focus-visible {
  border-color: rgba(239, 179, 26, 0.72);
  color: var(--plum);
  box-shadow: 0 10px 24px rgba(62, 52, 57, 0.06);
}

.accolade-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(239, 179, 26, 0.13), rgba(239, 179, 26, 0) 34%),
    var(--white);
}

.accolade-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(96, 96, 73, 0.14);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(62, 52, 57, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.accolade-logo-link {
  display: inline-block;
  margin: 0 0 18px;
  border-radius: 50%;
}

.accolade-logo-link:hover .accolade-logo {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(62, 52, 57, 0.1);
}

.accolade-logo-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.accolade-card h3 {
  color: var(--plum);
}

.accolade-card p:not(.eyebrow) {
  color: var(--muted);
}

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

.step {
  padding: 26px;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-choice-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(62, 52, 57, 0.05);
}

.service-choice-cta .eyebrow {
  margin-bottom: 6px;
}

.service-choice-cta h3,
.service-choice-cta p {
  margin: 0;
}

.service-choice-cta h3 {
  color: var(--plum);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-choice-cta h3 + p {
  margin-top: 5px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .service-choice-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .service-choice-cta .button {
    width: 100%;
  }
}

.service-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card.featured {
  border-color: rgba(111, 86, 101, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7fb 100%);
}

.text-link {
  margin-top: auto;
  color: var(--plum);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
  width: fit-content;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 36px;
  align-items: start;
}

.testimonial {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 214px;
  padding: 38px 38px 34px;
  border-color: #e6dde3;
  background:
    linear-gradient(90deg, rgba(139, 150, 119, 0.12), transparent 34%),
    var(--white);
  box-shadow: 0 18px 48px rgba(62, 52, 57, 0.055);
}

.testimonial:nth-child(even) {
  margin-top: 18px;
}

.testimonial::before,
.testimonial::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.testimonial::before {
  width: 78px;
  height: 42px;
  top: 24px;
  right: 28px;
  border-radius: 80% 20% 80% 20%;
  background: rgba(111, 86, 101, 0.11);
  transform: rotate(-18deg);
}

.testimonial::after {
  width: 66px;
  height: 34px;
  top: 48px;
  right: 70px;
  border-radius: 20% 80% 20% 80%;
  background: rgba(139, 150, 119, 0.14);
  transform: rotate(20deg);
}

.testimonial p {
  position: relative;
  max-width: 34rem;
  padding-top: 24px;
  color: #5f595d;
}

.testimonial p::before {
  content: "Client testimonial";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial p::after {
  content: "";
  position: absolute;
  left: -18px;
  top: 28px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--sage));
}

.testimonial cite {
  display: block;
  position: relative;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--olive);
  font-style: normal;
  font-weight: 800;
}

.reflections-section {
  background:
    linear-gradient(180deg, rgba(247, 243, 247, 0.7), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.reflections-carousel {
  position: relative;
}

.carousel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.carousel-header h2 {
  max-width: 760px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.carousel-button {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border-color: rgba(111, 86, 101, 0.28);
  border-radius: 50%;
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 14px 36px rgba(62, 52, 57, 0.08);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: var(--plum);
  background: #fbf7fb;
}

.carousel-button span {
  display: block;
  transform: translateY(-1px);
  font-size: 2rem;
  line-height: 1;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  padding: 6px;
}

.carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18%);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white) 78%);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc((100% - 24px) / 2);
  box-sizing: border-box;
  scroll-snap-align: start;
}

.carousel-slide:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.carousel-dot {
  width: 11px;
  min-width: 11px;
  height: 11px;
  min-height: 11px;
  padding: 0;
  border: 1px solid rgba(111, 86, 101, 0.34);
  border-radius: 50%;
  background: var(--white);
}

.carousel-dot[aria-current="true"] {
  border-color: var(--plum);
  background: var(--plum);
}

.hidden {
  display: none !important;
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(239, 179, 26, 0.1) 0 10%, transparent 31%),
    linear-gradient(180deg, var(--white) 0%, #fbf8fb 100%);
}

.newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.newsletter-card::before,
.newsletter-card::after,
.newsletter-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50% 50% 48% 52%;
}

.newsletter-card::before {
  width: 190px;
  height: 190px;
  right: -52px;
  top: -76px;
  border: 1px solid rgba(111, 86, 101, 0.16);
  background: rgba(245, 239, 244, 0.72);
  transform: rotate(-22deg);
}

.newsletter-card::after {
  width: 86px;
  height: 86px;
  right: 72px;
  bottom: 28px;
  border: 1px solid rgba(139, 150, 119, 0.26);
  background: rgba(242, 245, 238, 0.82);
  transform: rotate(24deg);
}

.newsletter-copy,
.newsletter-live-form {
  position: relative;
  z-index: 1;
}

.newsletter-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
}

.newsletter-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.newsletter-live-form {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(111, 86, 101, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 250, 0.94)),
    radial-gradient(circle at 88% 12%, rgba(239, 179, 26, 0.12), transparent 32%);
  box-shadow: 0 18px 42px rgba(62, 52, 57, 0.08);
}

.newsletter-live-form .eyebrow {
  color: var(--plum);
}

.newsletter-form-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.newsletter-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 0.84rem;
  font-weight: 800;
}

.newsletter-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #ded4dc;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.newsletter-field input:focus {
  outline: 3px solid rgba(239, 179, 26, 0.22);
  border-color: var(--plum-soft);
}

.newsletter-field input[aria-invalid="true"] {
  border-color: var(--plum);
}

.newsletter-form-button {
  min-width: 132px;
  min-height: 54px;
}

.newsletter-form-button[disabled] {
  cursor: wait;
  opacity: 0.76;
}

.newsletter-status {
  min-height: 1.55em;
  margin: 14px 0 0;
  color: var(--olive);
  font-size: 0.95rem;
  font-weight: 800;
}

.newsletter-status.is-error {
  color: var(--plum);
}

.newsletter-fallback {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter-fallback a {
  color: var(--plum);
  font-weight: 800;
  border-bottom: 1px solid rgba(111, 86, 101, 0.34);
}

.newsletter-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(245, 239, 244, 0.88) 100%),
    radial-gradient(circle at 84% 24%, rgba(239, 179, 26, 0.12) 0 12%, transparent 34%);
}

.newsletter-hero::before {
  width: 320px;
  height: 320px;
  right: max(28px, calc((100vw - 1120px) / 2));
  top: 58px;
  border: 1px solid rgba(111, 86, 101, 0.12);
  background: rgba(242, 245, 238, 0.58);
  transform: rotate(28deg);
}

.newsletter-hero .container {
  position: relative;
  z-index: 1;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(239, 179, 26, 0.2), transparent 18%),
    linear-gradient(135deg, #5f4a57 0%, var(--plum) 48%, #7d6374 100%);
  color: var(--white);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.final-cta::before {
  width: 340px;
  height: 340px;
  right: max(34px, calc((100vw - 1120px) / 2));
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    -72px 0 0 -18px rgba(255, 255, 255, 0.05),
    58px 42px 0 -34px rgba(239, 179, 26, 0.2);
}

.final-cta::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 42%),
    repeating-linear-gradient(118deg, transparent 0 74px, rgba(255, 255, 255, 0.045) 75px 76px);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--white);
  max-width: 900px;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.06;
  text-wrap: balance;
}

.final-cta p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  font-size: 1.18rem;
}

.final-cta .button {
  min-height: 56px;
  padding-inline: 30px;
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
  box-shadow: 0 16px 36px rgba(45, 42, 42, 0.18);
}

.final-cta .button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.site-footer {
  position: relative;
  padding: 34px 0 28px;
  background:
    linear-gradient(90deg, rgba(245, 239, 244, 0.48), rgba(255, 255, 255, 0.82) 48%, rgba(242, 245, 238, 0.52)),
    var(--wash);
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--plum) 0 34%, var(--gold) 34% 40%, var(--sage) 40% 100%);
  opacity: 0.72;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-social {
  margin-top: 18px;
}

.site-footer .social-button {
  background: rgba(255, 255, 255, 0.68);
}

.page-hero {
  padding: 88px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
}

.page-hero.success-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.62) 100%),
    url("assets/success-stories-light-background-v2.png") center center / cover no-repeat;
}

.page-hero.success-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.page-hero.success-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.corporate-hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  align-items: center;
  background: var(--white);
}

.page-hero.corporate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/corporate-wellness-hero.png") center left / cover no-repeat;
  filter: saturate(0.86) brightness(1.04);
  opacity: 0.82;
  transform: scaleX(-1);
  pointer-events: none;
}

.page-hero.corporate-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.92) 100%);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.page-hero.corporate-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.corporate-hero h1,
.page-hero.corporate-hero p {
  max-width: 800px;
}

.page-hero.corporate-hero h1 span {
  display: block;
}

.page-hero.akashic-hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  display: grid;
  align-items: center;
  background: var(--white);
}

.page-hero.akashic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/akashic-records-hero.png") center left / cover no-repeat;
  filter: saturate(0.78) brightness(1.08);
  opacity: 0.62;
  transform: scaleX(-1);
  pointer-events: none;
}

.page-hero.akashic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.68) 58%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.82) 100%);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.page-hero.akashic-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.akashic-hero h1,
.page-hero.akashic-hero p {
  max-width: 860px;
}

.page-hero.reiki-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.97) 34%, rgba(255, 255, 255, 0.68) 54%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/reiki-hero-treatment-cropped.png") center right / cover no-repeat;
}

.page-hero.reiki-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, 0.98) 0 21%, rgba(255, 255, 255, 0) 54%);
  pointer-events: none;
}

.page-hero.reiki-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.page-hero.reiki-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.reiki-hero h1,
.page-hero.reiki-hero p {
  max-width: 760px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
}

.contact-hero .container {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.contact-hero-copy {
  min-width: 0;
}

.contact-hero-copy h1 {
  max-width: 100%;
  text-wrap: balance;
}

.discovery-call-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 250, 0.96)),
    radial-gradient(circle at 92% 10%, rgba(239, 179, 26, 0.14), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.discovery-call-form::before,
.discovery-call-form::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(111, 86, 101, 0.14);
  border-radius: 50% 50% 48% 52%;
  pointer-events: none;
}

.discovery-call-form::before {
  width: 144px;
  height: 144px;
  right: -54px;
  top: -62px;
  background: rgba(245, 239, 244, 0.78);
  transform: rotate(-22deg);
}

.discovery-call-form::after {
  width: 58px;
  height: 58px;
  right: 34px;
  bottom: 28px;
  background: rgba(242, 245, 238, 0.86);
  transform: rotate(24deg);
}

.discovery-call-form > * {
  position: relative;
  z-index: 1;
}

.discovery-call-form h2 {
  margin: -4px 0 0;
  color: var(--plum);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}

.discovery-call-form p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.discovery-field {
  display: grid;
  gap: 8px;
  color: var(--olive);
  font-weight: 800;
}

.discovery-field input,
.discovery-field select,
.discovery-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid #ded4dc;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.discovery-field textarea {
  resize: vertical;
  border-radius: var(--radius-sm);
}

.discovery-field small,
.field-help {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
}

.discovery-field input:focus,
.discovery-field select:focus,
.discovery-field textarea:focus {
  outline: 3px solid rgba(239, 179, 26, 0.22);
  border-color: var(--plum-soft);
}

.discovery-field input[aria-invalid="true"],
.discovery-field select[aria-invalid="true"],
.discovery-field textarea[aria-invalid="true"] {
  border-color: var(--plum);
}

.discovery-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(139, 150, 119, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(242, 245, 238, 0.55);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.discovery-checkbox input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--plum);
}

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

.discovery-call-form button {
  width: 100%;
  min-height: 54px;
}

.discovery-call-form button[disabled] {
  cursor: wait;
  opacity: 0.74;
}

.discovery-status {
  min-height: 1.4em;
  color: var(--olive) !important;
  font-weight: 800;
}

.discovery-status.is-error {
  color: var(--plum) !important;
}

.discovery-note {
  font-size: 0.86rem !important;
}

.page-section {
  padding: 76px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.detail-card {
  padding: 28px;
}

.detail-card > h2 + p {
  margin-top: 16px;
}

.detail-card > p + p {
  margin-top: 14px;
}

.clinical-note {
  background:
    linear-gradient(135deg, rgba(242, 245, 238, 0.72), rgba(255, 255, 255, 0.92) 46%, rgba(245, 239, 244, 0.68)),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clinical-note .section-head {
  max-width: 860px;
}

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

.citation-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(62, 52, 57, 0.055);
  overflow: hidden;
}

.citation-card::before,
.citation-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 46px;
  border: 1px solid rgba(139, 150, 119, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.citation-card::before {
  top: -18px;
  right: 34px;
  transform: rotate(-24deg);
}

.citation-card::after {
  top: 6px;
  right: -18px;
  transform: rotate(28deg);
}

.source-label {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.citation-card h3 {
  position: relative;
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 1.24rem;
  line-height: 1.3;
  font-weight: 650;
}

.citation-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.citation-card a {
  position: relative;
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(239, 179, 26, 0.62);
  color: var(--plum);
  font-weight: 800;
}

.clinical-disclaimer {
  max-width: 840px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--olive);
  font-weight: 700;
}

.booking-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 179, 26, 0.09) 0 12%, transparent 34%),
    linear-gradient(180deg, var(--white) 0%, #fbf8fb 100%);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 250, 0.94)),
    radial-gradient(circle at 94% 0%, rgba(242, 245, 238, 0.8), transparent 32%);
  box-shadow: var(--shadow);
}

.booking-copy {
  position: sticky;
  top: 124px;
}

.booking-copy h2 {
  margin: 0 0 18px;
  color: var(--plum);
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.08;
}

.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.booking-details span {
  padding: 12px 14px;
  border: 1px solid rgba(139, 150, 119, 0.24);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  color: var(--olive);
  font-weight: 800;
  line-height: 1.35;
}

.booking-widget {
  width: min(100%, 760px);
  min-width: 0;
  margin-inline: auto;
  justify-self: center;
  text-align: center;
}

.booking-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 244, 0.72));
  color: var(--olive);
  font-size: 0.84rem;
}

.booking-widget .booking-window-bar {
  text-align: left;
}

.booking-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(111, 86, 101, 0.22);
}

.booking-window-bar span:nth-child(2) {
  background: rgba(239, 179, 26, 0.54);
}

.booking-window-bar span:nth-child(3) {
  background: rgba(139, 150, 119, 0.46);
}

.booking-window-bar strong {
  margin-left: 6px;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-frame {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(145deg, var(--white), var(--sage-wash));
  box-shadow: 0 18px 46px rgba(62, 52, 57, 0.07);
  overflow: hidden;
}

.booking-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(111, 86, 101, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(139, 150, 119, 0.1), transparent 42%);
  mix-blend-mode: multiply;
}

.booking-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 820px;
  border: 0;
  background: var(--white);
  filter: saturate(0.82) contrast(0.98);
}

.booking-fallback {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.booking-fallback a {
  color: var(--plum);
  font-weight: 800;
  border-bottom: 2px solid rgba(239, 179, 26, 0.62);
}

.contact-next .section-head {
  max-width: 760px;
}

.contact-steps {
  grid-template-columns: repeat(3, 1fr);
}

.contact-note {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
}

.contact-note strong {
  color: var(--olive);
}

.availability-note {
  align-items: flex-start;
  flex-direction: column;
}

.availability-note > div {
  flex: 1;
  width: 100%;
}

.availability-note .eyebrow {
  margin-bottom: 16px;
}

.contact-social {
  display: grid;
  gap: 16px;
}

.contact-social .social-buttons {
  margin-top: 0;
}

.availability-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  width: 100%;
}

.availability-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
}

.availability-list dt {
  margin: 0 0 8px;
  color: var(--olive);
  font-weight: 800;
}

.availability-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.availability-list .location-address {
  color: var(--text);
  font-weight: 600;
}

.availability-list dd + dd {
  margin-top: 3px;
}

.location-section .split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 64px);
  align-items: stretch;
}

.location-overview {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}

.location-overview h2 {
  max-width: 12ch;
  margin-bottom: 24px;
  text-wrap: balance;
}

.location-section .availability-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
}

.location-section .detail-card {
  min-height: 100%;
  padding: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}

.location-section .detail-card h2 {
  max-width: 14ch;
  margin-bottom: 0;
  text-wrap: balance;
}

.location-section .detail-card .compact-faq {
  margin-top: auto;
  padding-top: 28px;
}

.availability-hours {
  grid-column: 1 / -1;
}

.availability-hours dd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
}

.availability-hours dd + dd {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(111, 86, 101, 0.1);
}

.availability-hours strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.availability-hours span {
  white-space: nowrap;
}

.availability-hours .hours-note {
  display: block;
  color: var(--olive);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-availability span {
  display: block;
}

.footer-availability span + span {
  margin-top: 4px;
}

.bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.bullets li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.compact-bullets {
  gap: 9px;
}

.compact-bullets li {
  max-width: 34rem;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-nav a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--plum);
  font-weight: 700;
}

.page-hero.about-hero,
.page-hero.work-hero,
.page-hero.blog-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  background: var(--white);
}

.page-hero.about-hero::before,
.page-hero.work-hero::before,
.page-hero.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.86) brightness(1.05);
  opacity: 0.78;
  pointer-events: none;
}

.page-hero.about-hero::before {
  background-image: url("assets/healer-next-door-houses-hero.png");
}

.page-hero.work-hero::before {
  background-image: url("assets/work-stress-hero.png");
  opacity: 0.74;
}

.page-hero.blog-hero::before {
  background-image: url("assets/resources-journal-hero.png");
  opacity: 0.72;
}

.page-hero.about-hero::after,
.page-hero.work-hero::after,
.page-hero.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.86) 100%);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.page-hero.about-hero .container,
.page-hero.work-hero .container,
.page-hero.blog-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.about-hero h1,
.page-hero.about-hero p,
.page-hero.work-hero h1,
.page-hero.work-hero p,
.page-hero.blog-hero h1,
.page-hero.blog-hero p {
  max-width: 800px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.blog-layout h2 {
  max-width: 760px;
}

.blog-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}

.blog-note h3 {
  margin-bottom: 18px;
}

.blog-note a {
  border-left: 3px solid var(--sage);
  border-top: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.35;
  padding: 14px 0 14px 16px;
}

.blog-note a:hover {
  color: var(--plum);
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 30px;
  position: relative;
}

.blog-card::before {
  background: var(--gold);
  content: "";
  height: 48px;
  left: 0;
  position: absolute;
  top: 30px;
  width: 3px;
}

.blog-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-card h3 a {
  color: var(--olive);
}

.blog-card h3 a:hover {
  color: var(--plum);
}

.blog-card p {
  flex: 1;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 18px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--soft);
}

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

.blog-card-meta {
  flex: 0 0 auto !important;
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-topic-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--olive);
  font-weight: 800;
  text-decoration: none;
}

.blog-topic-nav a:hover,
.blog-topic-nav a:focus-visible,
.blog-topic-nav a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--plum);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.featured-blog-card {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 248, 0.96)),
    radial-gradient(circle at 92% 12%, rgba(250, 179, 33, 0.12) 0 18%, rgba(250, 179, 33, 0) 48%);
}

.blog-cta {
  margin-top: 0;
}

.legacy-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(242, 245, 238, 0.86) 100%),
    radial-gradient(circle at 84% 28%, rgba(139, 150, 119, 0.18) 0 14%, rgba(139, 150, 119, 0) 38%),
    radial-gradient(circle at 76% 76%, rgba(111, 86, 101, 0.1) 0 16%, rgba(111, 86, 101, 0) 42%);
}

.legacy-seo-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legacy-seo-card > p:first-of-type {
  overflow-wrap: anywhere;
}

.legacy-seo-card > p:first-of-type a {
  color: var(--plum);
  font-weight: 800;
}

.legacy-article-hero {
  padding: 76px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 58%, rgba(245, 241, 245, 0.9) 100%),
    radial-gradient(circle at 86% 18%, rgba(139, 150, 119, 0.22) 0 18%, rgba(139, 150, 119, 0) 44%);
}

.legacy-article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.legacy-article-heading {
  min-width: 0;
}

.legacy-article-heading .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--olive);
  text-decoration: none;
}

.legacy-article-heading h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--plum);
  font-size: 4rem;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.legacy-article-heading > p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.75;
}

.legacy-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--olive);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-article-meta > *:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.legacy-article-hero-media {
  position: relative;
  margin: 0;
}

.legacy-article-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  z-index: 0;
  border: 1px solid rgba(111, 86, 101, 0.18);
  border-radius: var(--radius-lg);
}

.legacy-article-hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legacy-article-section {
  padding-top: 84px;
}

.legacy-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 300px);
  align-items: start;
  justify-content: space-between;
  gap: 72px;
}

.legacy-article-body {
  min-width: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.85;
}

.legacy-article-body .sqs-layout,
.legacy-article-body .sqs-row,
.legacy-article-body [class*="sqs-col"],
.legacy-article-body .sqs-block,
.legacy-article-body .sqs-block-content,
.legacy-article-body .sqs-text-block-container,
.legacy-article-body .sqs-html-content {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.legacy-article-body p,
.legacy-article-body ul,
.legacy-article-body ol,
.legacy-article-body blockquote,
.legacy-article-body figure {
  margin: 0 0 1.45em;
}

.legacy-article-body h2,
.legacy-article-body h3,
.legacy-article-body h4 {
  margin: 2em 0 0.7em;
  color: var(--olive);
  line-height: 1.2;
}

.legacy-article-body h2 {
  font-size: 2rem;
}

.legacy-article-body h3 {
  font-size: 1.45rem;
}

.legacy-article-body ul,
.legacy-article-body ol {
  padding-left: 1.4em;
}

.legacy-article-body li + li {
  margin-top: 0.55em;
}

.legacy-article-body a {
  color: var(--plum);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legacy-article-body blockquote {
  padding: 8px 0 8px 26px;
  border-left: 3px solid var(--gold);
  color: var(--plum);
  font-size: 1.2rem;
}

.legacy-article-body img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 34px auto;
  border-radius: var(--radius-lg);
}

.legacy-article-body iframe,
.legacy-article-body video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
}

.legacy-article-body .legacy-video-fallback {
  margin-top: 12px;
  font-size: 0.92rem;
  text-align: center;
}

.legacy-article-aside {
  position: sticky;
  top: 118px;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--sage);
}

.legacy-article-aside h2 {
  margin-bottom: 14px;
  color: var(--plum);
  font-size: 1.65rem;
  line-height: 1.2;
}

.legacy-article-aside p:not(.eyebrow) {
  color: var(--text-soft);
  line-height: 1.7;
}

.legacy-article-aside .button {
  width: 100%;
  margin: 10px 0 18px;
  text-align: center;
}

.legacy-article-aside .text-link {
  display: inline-block;
}

.legacy-archive {
  display: grid;
  gap: 26px;
}

.legacy-archive-group {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(62, 52, 57, 0.05);
}

.legacy-archive-group h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.legacy-archive-group h2 small {
  color: var(--sage);
  font-size: 0.95rem;
}

.legacy-archive-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-archive-group li {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--wash);
}

.legacy-archive-group a {
  display: block;
  color: var(--olive);
  font-weight: 800;
  line-height: 1.3;
}

.legacy-archive-group span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: center;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 16px 18px;
    flex-wrap: wrap;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .location-section .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .cards,
  .steps,
  .blog-grid,
  .credibility-grid,
  .testimonial-grid,
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-card {
    grid-column: span 2;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .legacy-article-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legacy-article-hero-media {
    max-width: 680px;
  }

  .legacy-article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .legacy-article-aside {
    position: static;
    max-width: 620px;
  }

  .contact-hero .container {
    grid-template-columns: minmax(0, 1fr);
    width: min(1120px, calc(100% - 40px));
  }

  .contact-hero-copy,
  .discovery-call-form {
    width: 100%;
    max-width: 680px;
  }

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

  .booking-copy {
    position: static;
  }

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

  .availability-note {
    flex-direction: column;
  }

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

  .location-overview {
    padding-top: 0;
  }

  .location-section .detail-card {
    min-height: 0;
  }

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

  .newsletter-form-body {
    grid-template-columns: 1fr;
  }

  .newsletter-form-button {
    width: 100%;
  }

  .carousel-viewport {
    padding-right: 0;
  }

  .carousel-viewport::after {
    width: 88px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white) 86%);
  }

  .carousel-track {
    gap: 18px;
    padding-right: 24%;
    scroll-padding-right: 24%;
  }

  .carousel-slide {
    flex: 0 0 min(520px, 72vw);
  }
}

@media (min-width: 880px) and (max-width: 940px) {
  .contact-hero .container {
    width: min(1120px, calc(100% - 100px));
  }
}

@media (min-width: 740px) and (max-width: 820px) {
  .booking-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: var(--mobile-header-space, 208px);
  }

  body {
    padding-top: var(--mobile-header-space, 208px);
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  .container {
    width: calc(100% - 72px);
    max-width: 318px;
  }

  .legacy-article-hero {
    padding: 52px 0 48px;
  }

  .legacy-article-heading h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .legacy-article-heading > p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .legacy-article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legacy-article-meta > *:not(:last-child)::after {
    display: none;
  }

  .legacy-article-hero-media::before {
    inset: 10px -8px -8px 10px;
  }

  .legacy-article-section {
    padding-top: 56px;
  }

  .legacy-article-body {
    font-size: 1rem;
    line-height: 1.78;
  }

  .legacy-article-body h2 {
    font-size: 1.65rem;
  }

  .legacy-article-body h3 {
    font-size: 1.3rem;
  }

  .legacy-article-aside {
    padding-left: 20px;
  }

  .nav {
    width: calc(100% - 32px);
    max-width: 520px;
  }

  .logo {
    transition: width 180ms ease;
    width: min(220px, 100%);
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 18px;
    right: 0;
    z-index: 3;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    flex-direction: column;
    gap: 5px;
    border-color: rgba(111, 86, 101, 0.38);
    border-radius: 50%;
    background: #fbf7fb;
    color: var(--plum);
    box-shadow: 0 14px 34px rgba(62, 52, 57, 0.13);
  }

  .nav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
      opacity 160ms ease,
      transform 180ms ease;
  }

  body.mobile-menu-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

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

  body.mobile-menu-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links a:not(.button) {
    display: none;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
    max-height: 64px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height 220ms ease,
      opacity 160ms ease,
      transform 180ms ease,
      margin 180ms ease;
  }

  .nav-links a {
    min-width: 0;
    text-align: center;
    white-space: normal;
    padding: 4px 2px;
  }

  .nav-links .button {
    width: calc(100% - 16px);
    grid-column: 1 / -1;
    margin: 4px auto 0;
  }

  body.mobile-menu-open .nav-links {
    gap: 8px;
    max-height: 360px;
    padding-top: 8px;
  }

  body.mobile-menu-open .nav-links a:not(.button) {
    display: block;
  }

  body.nav-collapsed .site-header {
    background: rgba(255, 255, 255, 0.97);
  }

  body.nav-collapsed .nav {
    padding: 10px 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
  }

  body.nav-collapsed .logo {
    width: min(168px, 100%);
  }

  body.nav-collapsed .nav-toggle {
    position: static;
    order: 2;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  body.nav-collapsed .nav-links {
    width: auto;
    max-height: 48px;
    display: flex;
    flex: 0 0 auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 0;
  }

  body.nav-collapsed .nav-links a:not(.button) {
    display: none;
  }

  body.nav-collapsed .nav-links .button {
    width: auto;
    min-height: 42px;
    margin: 0;
    padding: 0 18px;
    grid-column: auto;
  }

  body.nav-collapsed.mobile-menu-open .nav {
    padding: 14px 0 16px;
    align-items: center;
    flex-direction: column;
    gap: 14px;
  }

  body.nav-collapsed.mobile-menu-open .logo {
    width: min(220px, 100%);
  }

  body.nav-collapsed.mobile-menu-open .nav-toggle {
    position: absolute;
    top: 18px;
    right: 0;
  }

  body.nav-collapsed.mobile-menu-open .nav-links {
    width: 100%;
    max-height: 360px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 8px;
  }

  body.nav-collapsed.mobile-menu-open .nav-links a:not(.button) {
    display: block;
  }

  body.nav-collapsed.mobile-menu-open .nav-links .button {
    width: calc(100% - 16px);
    margin: 4px auto 0;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 68px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 84% 72%, rgba(111, 86, 101, 0.34) 0 11%, rgba(111, 86, 101, 0.16) 30%, rgba(111, 86, 101, 0) 60%),
      radial-gradient(circle at 14% 88%, rgba(239, 179, 26, 0.32) 0 9%, rgba(239, 179, 26, 0.14) 29%, rgba(239, 179, 26, 0) 58%),
      radial-gradient(circle at 76% 96%, rgba(139, 150, 119, 0.34) 0 11%, rgba(139, 150, 119, 0.15) 32%, rgba(139, 150, 119, 0) 60%),
      linear-gradient(180deg, #ffffff 0%, rgba(245, 239, 244, 0.68) 54%, rgba(242, 245, 238, 0.72) 100%);
    opacity: 1;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.58) 100%),
      radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.68) 0 22%, rgba(255, 255, 255, 0) 58%);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero p,
  .page-hero p,
  .brand-panel p,
  .hero-note {
    font-size: 1rem;
  }

  .page-hero.success-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 100%),
      url("assets/success-stories-light-background-v2.png") center top / cover no-repeat;
  }

  .page-hero.corporate-hero {
    min-height: auto;
  }

  .page-hero.corporate-hero::before {
    background-position: center left;
    opacity: 0.5;
  }

  .page-hero.corporate-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.72) 100%),
      radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.76) 0 22%, rgba(255, 255, 255, 0) 58%);
  }

  .page-hero.akashic-hero {
    min-height: auto;
  }

  .page-hero.akashic-hero::before {
    background-position: center left;
    opacity: 0.28;
  }

  .page-hero.akashic-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.76) 100%),
      radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82) 0 24%, rgba(255, 255, 255, 0) 60%);
  }

  .page-hero.reiki-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.66) 100%),
      url("assets/reiki-hero-treatment-cropped.png") 45% center / cover no-repeat;
  }

  .page-hero.reiki-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.8)),
      radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.82) 0 24%, rgba(255, 255, 255, 0) 58%);
  }

  .page-hero.about-hero,
  .page-hero.work-hero,
  .page-hero.blog-hero {
    min-height: auto;
  }

  .page-hero.about-hero::before,
  .page-hero.work-hero::before,
  .page-hero.blog-hero::before {
    background-position: center right;
    opacity: 0.42;
  }

  .page-hero.about-hero::after,
  .page-hero.work-hero::after,
  .page-hero.blog-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.76) 100%),
      radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.8) 0 24%, rgba(255, 255, 255, 0) 60%);
  }

  .brand-panel {
    padding: 24px;
  }

  .brand-panel::before {
    width: 380px;
    height: 380px;
    right: -190px;
    top: 58%;
  }

  .curious-corner-leaves {
    right: -14px;
    bottom: -16px;
    width: 98px;
  }

  .brand-panel h2 {
    font-size: 1.75rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .section,
  .page-section {
    padding: 64px 0;
  }

  .booking-section {
    scroll-margin-top: var(--mobile-header-space, 208px);
  }

  .booking-panel {
    width: min(780px, calc(100% - 24px));
    padding: 14px;
  }

  .booking-copy h2 {
    font-size: 1.9rem;
  }

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

  .contact-hero .container {
    gap: 28px;
    width: calc(100% - 40px);
    max-width: none;
  }

  .discovery-call-form {
    padding: 24px;
  }

  .discovery-call-form::after {
    right: 18px;
    bottom: -22px;
    opacity: 0.48;
  }

  .newsletter-card {
    padding: 26px;
  }

  .newsletter-copy h2 {
    font-size: 1.9rem;
  }

  .newsletter-live-form {
    padding: 22px;
  }

  .newsletter-hero::before,
  .newsletter-card::before,
  .newsletter-card::after {
    opacity: 0.58;
  }

  .booking-frame iframe {
    min-height: 900px;
  }

  .cards,
  .steps,
  .contact-steps,
  .service-grid,
  .testimonials,
  .detail-grid,
  .citation-grid,
  .trust-list,
  .legacy-archive-group ul,
  .footer-grid,
  .blog-grid,
  .credibility-grid,
  .testimonial-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .credential-card,
  .media-card,
  .accolade-card {
    grid-column: auto;
  }

  .featured-blog-card {
    grid-column: auto;
  }

  .media-card {
    grid-column: auto;
  }

  .container.testimonials {
    width: calc(100% - 32px);
    max-width: 520px;
  }

  .carousel-header {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .carousel-controls {
    align-self: flex-start;
  }

  .carousel-viewport {
    padding: 4px 0;
    overflow: hidden;
  }

  .carousel-viewport::after {
    width: 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white) 92%);
  }

  .carousel-track {
    gap: 16px;
    padding-right: 34%;
    scroll-padding-right: 34%;
  }

  .carousel-slide {
    flex: 0 0 clamp(238px, 66vw, 260px);
  }

  .testimonial,
  .testimonial:nth-child(even) {
    min-height: 0;
    margin-top: 0;
    padding: 30px 28px 28px;
  }

  .testimonial::before {
    right: 20px;
  }

  .testimonial::after {
    right: 56px;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .contact-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .availability-list {
    grid-template-columns: 1fr;
  }

  .location-section .availability-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .homepage-start-heading h2 {
    font-size: 1.9rem;
  }

  .homepage-start-heading h2 span {
    display: block;
    white-space: nowrap;
  }

  .wayfinding-card .chip {
    align-self: flex-start;
    max-width: 100%;
    font-size: clamp(0.53rem, 2.45vw, 0.63rem);
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .booking-section .booking-panel {
    width: calc(100vw - 32px);
    max-width: none;
    padding: 16px;
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-links .button {
    min-height: 46px;
  }
}

@media (max-width: 350px) {
  .homepage-start-heading h2 {
    font-size: 1.72rem;
  }
}

/* Reviewed copy architecture */
.nav-links a[aria-current="page"] {
  color: var(--plum);
  border-color: var(--gold);
  font-weight: 750;
}

.nav-links a.button[aria-current="page"] {
  color: var(--white);
}

.narrow-copy {
  max-width: 850px;
}

.hero-supporting-line {
  margin-top: 22px;
  color: var(--olive) !important;
  font-weight: 750;
}

.services-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 26%, rgba(139, 150, 119, 0.18), transparent 23%),
    radial-gradient(circle at 76% 74%, rgba(111, 86, 101, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
  border-bottom: 1px solid var(--line);
}

.services-hero::after {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 130px);
  bottom: -58px;
  width: 230px;
  height: 150px;
  border: 1px solid rgba(139, 150, 119, 0.2);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.services-hero .container,
.resources-hero .container,
.meditation-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.resources-hero,
.page-hero.meditation-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  background: var(--white);
}

.page-hero.resources-hero::before,
.page-hero.meditation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.78) brightness(1.08);
  pointer-events: none;
}

.page-hero.resources-hero::before {
  background-image: url("assets/resources-journal-hero.png");
  opacity: 0.72;
}

.page-hero.meditation-hero::before {
  background-image: url("assets/corporate-wellness-hero.png");
  background-position: center left;
  opacity: 0.66;
  transform: scaleX(-1);
}

.page-hero.resources-hero::after,
.page-hero.meditation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.74) 60%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.page-hero.resources-hero h1,
.page-hero.resources-hero p,
.page-hero.meditation-hero h1,
.page-hero.meditation-hero p {
  max-width: 810px;
}

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

.wayfinding-card {
  position: relative;
  min-width: 0;
  min-height: 228px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(62, 52, 57, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wayfinding-card::before {
  content: "";
  width: 38px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.wayfinding-card:hover,
.wayfinding-card:focus-visible,
.resource-path:hover,
.resource-path:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(111, 86, 101, 0.34);
  box-shadow: 0 18px 42px rgba(62, 52, 57, 0.08);
  outline: none;
}

.wayfinding-card h3,
.resource-path h3 {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 1.3rem;
  line-height: 1.26;
}

.wayfinding-card p,
.resource-path p {
  margin: 0 0 22px;
  color: var(--muted);
}

.wayfinding-card .text-link,
.resource-path .text-link {
  margin-top: auto;
}

.contact-path-grid .wayfinding-card::before {
  display: none;
}

.contact-path-grid .chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
}

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

.five-services .service-card.featured {
  grid-column: span 2;
}

.founder-intro {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.founder-intro .founder-photo {
  margin: 0;
}

.founder-photo figcaption {
  padding: 13px 4px 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

.local-proof {
  align-items: start;
}

.regional-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(139, 150, 119, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 150, 119, 0.14), transparent 34%),
    var(--white);
}

.akashic-insight-card {
  border-color: rgba(111, 86, 101, 0.18);
  background:
    radial-gradient(circle at 94% 10%, rgba(154, 135, 155, 0.1), transparent 34%),
    linear-gradient(145deg, #ffffff, rgba(245, 239, 244, 0.42));
  box-shadow: 0 14px 36px rgba(111, 86, 101, 0.055);
}

.akashic-insight-card .eyebrow {
  color: var(--plum-soft);
}

.ancestral-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ancestral-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.ancestral-context-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(145deg, rgba(245, 239, 244, 0.72), rgba(242, 245, 238, 0.92));
}

.regional-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -24px;
  width: 126px;
  height: 72px;
  border: 1px solid rgba(111, 86, 101, 0.16);
  border-radius: 50%;
  transform: rotate(-22deg);
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(62, 52, 57, 0.035);
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--olive);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--plum);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 56px 22px 22px;
}

.compact-faq {
  margin-top: 24px;
}

.founder-quote {
  margin: 30px 0 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(111, 86, 101, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 22%, rgba(154, 135, 155, 0.1), transparent 42%),
    radial-gradient(circle at 90% 78%, rgba(139, 150, 119, 0.11), transparent 44%),
    linear-gradient(135deg, rgba(251, 248, 250, 0.88), rgba(255, 255, 255, 0.98));
  box-shadow:
    0 12px 34px rgba(111, 86, 101, 0.045),
    inset 0 0 48px rgba(139, 150, 119, 0.025);
}

.founder-quote p {
  max-width: 36rem;
  margin: 0 0 14px;
  color: #786170;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  line-height: 1.3;
  font-style: italic;
  font-weight: 700;
}

.founder-quote cite {
  color: rgba(96, 96, 73, 0.78);
  font-size: 1rem;
  font-style: italic;
  font-weight: 650;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}

.story-grid > article:not(.detail-card) {
  padding-top: 10px;
}

.about-story-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
}

.about-story-grid > article:first-child {
  padding: 18px clamp(6px, 2vw, 24px) 8px 0;
}

.about-story-grid > article > p:not(.eyebrow) {
  line-height: 1.7;
}

.philosophy-card {
  height: 100%;
  padding: clamp(34px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 92% 12%, rgba(139, 150, 119, 0.1), transparent 34%),
    linear-gradient(145deg, #ffffff, rgba(245, 239, 244, 0.38));
}

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

.program-grid .detail-card {
  min-height: 250px;
}

.evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.evidence-list > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(139, 150, 119, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
}

.evidence-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-wash);
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 850;
}

.evidence-list p {
  margin: 4px 0 0;
}

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

.resource-path {
  min-width: 0;
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(62, 52, 57, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-path.featured-resource {
  grid-column: span 2;
  background:
    radial-gradient(circle at 96% 14%, rgba(239, 179, 26, 0.11), transparent 26%),
    linear-gradient(145deg, #ffffff, var(--sage-wash));
}

.footer-sitemap-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.footer-brand .logo {
  width: min(198px, 100%);
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-group h2 {
  margin: 0 0 5px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(111, 86, 101, 0.12);
  color: var(--olive);
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-group a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: var(--plum);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.site-footer .footer-social {
  gap: 7px;
  margin-top: 14px;
}

.site-footer .social-button {
  min-height: 36px;
  padding: 6px 10px;
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .five-services,
  .resource-paths,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .founder-intro {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .page-hero.resources-hero,
  .page-hero.meditation-hero {
    min-height: auto;
  }

  .page-hero.resources-hero::before,
  .page-hero.meditation-hero::before {
    background-position: center;
    opacity: 0.46;
  }

  .page-hero.resources-hero::after,
  .page-hero.meditation-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
      radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.8), transparent 58%);
  }

  .wayfinding-grid,
  .five-services,
  .story-grid,
  .program-grid,
  .evidence-list,
  .resource-paths,
  .founder-intro {
    grid-template-columns: 1fr;
  }

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

  .five-services .service-card.featured,
  .resource-path.featured-resource {
    grid-column: auto;
  }

  .wayfinding-card,
  .resource-path,
  .program-grid .detail-card {
    min-height: 0;
  }

  .footer-sitemap-grid {
    gap: 26px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .ancestral-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 24px;
  }

  .footer-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .availability-hours dd {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .availability-hours span {
    white-space: normal;
  }
}

/* Homepage carousel always presents one complete reflection. */
.local-proof {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(38px, 5vw, 64px);
}

.local-proof .home-reflections-carousel {
  min-width: 0;
}

.local-proof .local-card {
  min-height: 100%;
  padding: clamp(30px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.local-proof .local-card .text-link {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .local-proof {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .local-proof .local-card {
    min-height: 0;
  }
}

.home-carousel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.home-carousel-heading .eyebrow {
  margin-bottom: 0;
}

.home-reflections-carousel .carousel-controls {
  gap: 8px;
}

.home-reflections-carousel .carousel-button {
  width: 42px;
  min-width: 42px;
  height: 42px;
}

.home-reflections-carousel .carousel-viewport {
  padding: 6px;
}

.home-reflections-carousel .carousel-viewport::after {
  display: none;
}

.home-reflections-carousel .carousel-track {
  gap: 0;
  padding-right: 0;
  scroll-padding-right: 0;
}

.home-reflections-carousel .carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 270px;
  margin-top: 0;
}

.home-reflections-carousel .carousel-dots {
  margin-top: 14px;
}

.home-reflections-link {
  margin-top: 16px;
}

@media (max-width: 720px) {
  .home-reflections-carousel .carousel-track {
    gap: 0;
    padding-right: 0;
    scroll-padding-right: 0;
  }

  .home-reflections-carousel .carousel-slide {
    flex-basis: 100%;
    width: 100%;
  }
}
