.public-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.public-body *, .public-body *::before, .public-body *::after {
  box-sizing: border-box;
}

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

.public-body a {
  color: inherit;
  text-decoration: none;
}

/* Grain overlay */
.public-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Header */
.public-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.public-header.scrolled {
  background: oklch(var(--lch-canvas) / 95%);
  backdrop-filter: blur(20px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 oklch(var(--lch-black) / 5%);
}

.public-nav-bar {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.public-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-theme);
  display: flex;
  align-items: center;
}

.public-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

.public-footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
}

.public-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.public-nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-theme);
  position: relative;
  transition: color 0.3s;
}

.public-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-theme);
  transition: width 0.3s;
}

.public-nav-links a:hover::after { width: 100%; }

.public-nav-cta {
  padding: 0.7rem 1.75rem !important;
  background: var(--color-theme);
  color: #fff !important;
  border-radius: 100px;
  transition: filter 0.3s, transform 0.3s !important;
}

.public-nav-cta::after { display: none !important; }

.public-nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.public-main { overflow-x: hidden; }

.public-body.menu-open { overflow: hidden; }

/* Shared section tokens */
.ph-section-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #CBA135);
  margin-bottom: 1rem;
}

.ph-section-number.light { color: rgba(255, 255, 255, 0.7); }

.ph-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text, #2D2D2B);
}

.ph-section-intro {
  font-size: 1.1rem;
  color: var(--text-soft, #5A5A57);
  max-width: 31rem;
  line-height: 1.7;
  margin: 0;
}

/* Buttons */
.ph-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 18px 36px;
  background: var(--purple, #7D5BA6);
  color: var(--white, #FFFFFF);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 56px;
  justify-content: center;
}

.ph-btn-primary svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.ph-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(125, 91, 166, 0.15); }
.ph-btn-primary:hover svg { transform: translateX(4px); }

.ph-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.25rem;
  color: var(--purple, #7D5BA6);
  border: 2px solid var(--purple, #7D5BA6);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.ph-btn-outline:hover {
  background: var(--purple, #7D5BA6);
  color: var(--white, #FFFFFF);
}

/* Hero */
.ph-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.ph-hero-decoration {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  color: var(--purple-light, #9B7BC0);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.ph-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.75rem 3.75rem 6.25rem 6.25rem;
  position: relative;
  z-index: 2;
  order: 1;
  animation: ph-fade-up 1s ease-out;
}

@keyframes ph-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ph-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-theme);
  margin-bottom: 1.5rem;
}

.ph-hero-title { margin-bottom: 2rem; }

.ph-title-line {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text, #2D2D2B);
}

.ph-title-accent {
  color: var(--purple, #7D5BA6);
  font-weight: 500;
}

.ph-hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 100px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted, #8A8A85);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ph-scroll-line {
  width: 60px;
  height: 1px;
  background: var(--text-muted, #8A8A85);
  position: relative;
  overflow: hidden;
}

.ph-scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: var(--text-soft, #5A5A57);
  animation: ph-scroll-anim 3s ease-in-out infinite;
}

@keyframes ph-scroll-anim {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  90% { transform: translateX(400%); opacity: 0; }
}

.ph-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft, #5A5A57);
  max-width: 26rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.ph-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ph-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.75rem 3.75rem;
  order: 2;
}

.ph-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 31rem;
}

.ph-hero-image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 300px 300px 20px 20px;
}

.ph-hero-image-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 160px;
  height: 160px;
  background: var(--gold-light, #E8D4A0);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

/* Statement */
.ph-statement {
  background: var(--white, #FFFFFF);
  padding: 7.5rem 3.75rem;
}

.ph-statement-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.ph-statement-mark {
  font-size: 12rem;
  font-weight: 300;
  color: var(--gold-light, #E8D4A0);
  line-height: 0;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.ph-statement-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text, #2D2D2B);
  position: relative;
  z-index: 1;
}

.ph-statement-text em {
  font-style: normal;
  color: var(--purple, #7D5BA6);
  font-weight: 500;
}

/* Approach */
.ph-section {
  padding: 6rem 3.75rem;
}

.ph-section-header {
  max-width: 88rem;
  margin: 0 auto 3.5rem;
}

.ph-approach-grid {
  max-width: 88rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ph-approach-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
}

.ph-approach-image {
  position: relative;
}

.ph-approach-image::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  border: 1px solid var(--gold, #CBA135);
  border-radius: 20px;
  z-index: -1;
}

.ph-approach-lead {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text, #2D2D2B);
  margin-bottom: 3rem;
}

.ph-values { display: flex; flex-direction: column; gap: 2rem; }

.ph-value {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ph-value-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  color: var(--purple, #7D5BA6);
}

.ph-value-icon svg { width: 100%; height: 100%; }

.ph-value-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text, #2D2D2B);
  margin-bottom: 0.375rem;
}

.ph-value-text p {
  font-size: 0.95rem;
  color: var(--text-soft, #5A5A57);
  line-height: 1.6;
  margin: 0;
}

/* Services */
.ph-services-section { background: var(--cream-dark, #F2EEE5); }

.ph-services-showcase {
  max-width: 88rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ph-service-item {
  display: flex;
  flex-direction: column;
  background: var(--white, #FFFFFF);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.ph-service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.ph-service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.ph-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ph-service-item:hover .ph-service-image img { transform: scale(1.08); }

.ph-service-details {
  padding: 1.75rem;
}

.ph-service-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold, #CBA135);
  margin-bottom: 0.75rem;
  display: block;
}

.ph-service-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text, #2D2D2B);
  margin-bottom: 0.625rem;
}

.ph-service-details p {
  font-size: 0.9rem;
  color: var(--text-soft, #5A5A57);
  line-height: 1.7;
  margin: 0;
}

.ph-services-cta {
  max-width: 88rem;
  margin: 2.5rem auto 0;
}

/* Process */
.ph-process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.ph-process-visual {
  position: relative;
  overflow: hidden;
}

.ph-process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(var(--lch-black) / 0%) 0%, oklch(var(--lch-black) / 60%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.ph-process-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.ph-process-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.75rem;
  gap: 0;
  background: var(--white, #FFFFFF);
}

.ph-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.ph-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ph-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-theme);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.ph-step-line {
  width: 1px;
  flex: 1;
  min-height: 3rem;
  background: var(--color-ink-lighter);
  margin: 0.5rem 0;
}

.ph-step-content {
  padding-bottom: 2.5rem;
  padding-top: 0.4rem;
}

.ph-step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.ph-step-content p {
  font-size: 0.875rem;
  color: var(--color-ink-medium);
  line-height: 1.6;
  margin: 0;
}

/* Blog */
.ph-blog-header {
  max-width: 88rem;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.ph-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-theme);
  white-space: nowrap;
  transition: gap 0.3s;
}

.ph-all-link svg { width: 1rem; height: 1rem; transition: transform 0.3s; }
.ph-all-link:hover svg { transform: translateX(3px); }

.ph-blog-grid {
  max-width: 88rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ph-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-ink-lighter);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ph-blog-card:hover {
  border-color: var(--color-theme-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ph-blog-card-image { overflow: hidden; }

.ph-blog-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ph-blog-card:hover .ph-blog-card-image img { transform: scale(1.05); }

.ph-blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex: 1;
}

.ph-blog-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-theme);
}

.ph-blog-card-body h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.4;
  margin: 0;
}

.ph-blog-card-body p {
  font-size: 0.8125rem;
  color: var(--color-ink-medium);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.ph-blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-ink-light);
}

.ph-blog-arrow svg { width: 0.875rem; height: 0.875rem; color: var(--color-theme); }

/* Booking CTA */
.ph-booking-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 3.75rem;
  background: var(--purple, #7D5BA6);
}

.ph-booking-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ph-booking-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.ph-booking-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--gold, #CBA135);
  top: -200px;
  right: -200px;
}

.ph-booking-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--white, #FFFFFF);
  bottom: -150px;
  left: -100px;
}

.ph-booking-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.ph-booking-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--white, #FFFFFF);
  margin: 1rem 0;
}

.ph-booking-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.ph-telehealth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white, #FFFFFF);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2.5rem;
}

.ph-telehealth-badge svg { width: 1rem; height: 1rem; }

.ph-booking-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ph-provider-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white, #FFFFFF);
  border: none;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.ph-provider-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ph-provider-info { display: flex; flex-direction: column; gap: 0.2rem; }

.ph-provider-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text, #2D2D2B);
}

.ph-provider-role {
  font-size: 0.875rem;
  color: var(--text-muted, #8A8A85);
}

.ph-provider-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--purple, #7D5BA6);
  flex-shrink: 0;
}

.ph-booking-alt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.ph-booking-alt a {
  color: var(--white, #FFFFFF);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.public-footer {
  border-top: 1px solid var(--color-ink-lighter);
  background: var(--color-canvas);
}

.public-footer-main {
  max-width: 88rem;
  margin: 0 auto;
  padding: 4rem 3.75rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.public-footer-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.public-footer-brand p {
  font-size: 0.875rem;
  color: var(--color-ink-medium);
  margin: 0;
}

.public-footer-nav {
  display: flex;
  gap: 4rem;
}

.public-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.public-footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-medium);
  margin: 0 0 0.25rem;
}

.public-footer-col a {
  font-size: 0.875rem;
  color: var(--color-ink-dark);
  transition: color 0.2s;
}

.public-footer-col a:hover { color: var(--color-theme); }

.public-footer-bottom {
  max-width: 88rem;
  margin: 0 auto;
  padding: 1.5rem 3.75rem;
  border-top: 1px solid var(--color-ink-lighter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.public-footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-ink-light);
  margin: 0;
}

.public-footer-powered strong { color: var(--color-ink-medium); }

/* Page interiors (services, careers, etc.) */
.public-page-header {
  max-width: 88rem;
  margin: 0 auto;
  padding: 9rem 3.75rem 3rem;
  border-bottom: 1px solid var(--color-ink-lighter);
}

.public-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--color-ink);
}

.public-empty {
  max-width: 88rem;
  margin: 3rem auto;
  padding: 0 3.75rem;
  color: var(--color-ink-medium);
  font-size: 0.9375rem;
}

/* ===========================
   MOBILE MENU
   =========================== */

.public-mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 200;
  position: relative;
}

.public-mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text, #2D2D2B);
  transition: all 0.3s ease;
  transform-origin: center;
}

.public-mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.public-mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.public-mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.public-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream, #FAF8F3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
}

.public-mobile-menu.active {
  display: flex;
}

.public-mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.public-mobile-menu.active .public-mobile-menu-content {
  transform: translateY(0);
}

.public-mobile-menu-content a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text, #2D2D2B);
  transition: color 0.3s ease;
}

.public-mobile-menu-content a:hover {
  color: var(--purple, #7D5BA6);
}

.public-mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: var(--purple, #7D5BA6) !important;
  color: var(--white, #FFFFFF) !important;
  border-radius: 100px;
  font-size: 1.1rem !important;
}

/* ===========================
   WELLNESS PAGE VARIABLES
   Default fallbacks; evenna overrides these
   in custom_css with exact wellness values.
   =========================== */

.public-body {
  --purple: #7D5BA6;
  --purple-dark: #5E4080;
  --purple-light: #9B7BC0;
  --gold: #CBA135;
  --gold-dark: #A8872B;
  --gold-light: #E8D4A0;
  --cream: #FAF8F3;
  --cream-dark: #F2EEE5;
  --white: #FFFFFF;
  --text: #2D2D2B;
  --text-soft: #5A5A57;
  --text-muted: #8A8A85;
  --font: inherit;
  --color-theme: var(--purple);
}

/* ===========================
   SHARED WELLNESS COMPONENTS
   =========================== */

.section-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-number.light { color: oklch(var(--lch-white) / 60%); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
}

.title-line {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--purple);
  font-weight: 500;
}

.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
}

.statement-mark {
  font-size: 8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 0;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.statement-text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.statement-text em {
  color: var(--purple);
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}

.hero-actions > * + * { margin-top: 20px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  border: none;
  min-height: 56px;
  justify-content: center;
}

.btn-primary svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover { background: var(--purple); color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  border: 2px solid var(--purple);
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  min-height: 56px;
  justify-content: center;
}

.btn-outline:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: var(--text-soft);
  animation: scrollLine 3s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  90% { transform: translateX(400%); opacity: 0; }
}

/* Page hero (services, faq, etc.) */
.page-hero {
  padding: 180px 60px 100px;
  background: var(--cream);
  text-align: center;
}

.page-hero-content { max-width: 700px; margin: 0 auto; }

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ===========================
   ABOUT PAGE
   =========================== */

.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.about-hero-decoration {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  color: var(--purple);
  pointer-events: none;
  z-index: 0;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px 100px;
  position: relative;
  z-index: 2;
}

.about-hero-title { margin-bottom: 32px; }

.about-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 400px;
  line-height: 1.8;
}

.about-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
}

.about-hero-image-wrapper { position: relative; width: 100%; max-width: 450px; }

.about-hero-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 300px 300px 20px 20px;
}

.about-hero-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: var(--gold-light);
  border-radius: 50%;
  z-index: -1;
}

.about-hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 100px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-statement {
  padding: 120px 60px;
  background: var(--white);
}

.about-statement-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.provider-section { padding: 120px 60px; background: var(--cream); }

.provider-header { max-width: 1400px; margin: 0 auto 80px; }

.provider-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
}

.provider-image-container { position: relative; }
.provider-image { position: relative; z-index: 2; }

.provider-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.provider-image-frame {
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  z-index: 1;
}

.provider-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--purple-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.provider-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.provider-name-display {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.provider-bio { margin-bottom: 48px; }

.provider-lead {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.provider-bio p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.credentials-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cream-dark);
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
}

.credential-badge svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.mission-visual { position: relative; overflow: hidden; }

.mission-visual img { width: 100%; height: 100%; object-fit: cover; }

.mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}

.mission-display {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  letter-spacing: -0.02em;
}

.mission-content {
  background: var(--purple);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-text {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.6;
  margin-bottom: 48px;
}

.mission-pillars { display: flex; flex-direction: column; gap: 20px; }

.pillar { display: flex; align-items: center; gap: 16px; }

.pillar-icon { width: 40px; height: 40px; color: var(--gold-light); flex-shrink: 0; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-text { font-size: 1rem; color: rgba(255,255,255,0.85); }

.values-editorial { padding: 0; background: var(--white); overflow: hidden; }

.values-editorial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  position: relative;
}

.values-editorial-intro {
  background: var(--cream);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-editorial-title { margin-top: 24px; }

.values-title-small {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.values-title-large {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.values-editorial-philosophy {
  background: var(--purple);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.values-editorial-philosophy p {
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
  line-height: 1.7;
  max-width: 400px;
}

.values-chapters { max-width: 1000px; margin: 0 auto; padding: 100px 60px; }

.value-chapter {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}

.value-chapter:first-child { padding-top: 0; }
.value-chapter:last-child { border-bottom: none; }

.value-chapter-number span {
  font-size: 6rem;
  font-weight: 200;
  color: var(--purple);
  opacity: 0.15;
  line-height: 1;
  position: sticky;
  top: 140px;
}

.value-chapter-content { padding-right: 40px; }

.value-chapter-header { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }

.value-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.value-icon-ring svg { width: 32px; height: 32px; }

.value-chapter:hover .value-icon-ring {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  transform: scale(1.05);
}

.value-chapter h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.value-chapter-text {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 540px;
}

.value-chapter-accent {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 32px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.value-chapter:hover .value-chapter-accent { opacity: 1; transform: translateX(0); }

.value-chapter-alt { direction: rtl; }
.value-chapter-alt > * { direction: ltr; }
.value-chapter-alt .value-chapter-content { padding-right: 0; padding-left: 40px; text-align: right; }
.value-chapter-alt .value-chapter-header { justify-content: flex-end; }
.value-chapter-alt .value-chapter-text { margin-left: auto; }
.value-chapter-alt .value-chapter-accent { margin-left: auto; background: linear-gradient(270deg, var(--gold), transparent); transform: translateX(20px); }
.value-chapter-alt:hover .value-chapter-accent { transform: translateX(0); }

.values-interlude { padding: 100px 0; text-align: center; position: relative; }

.interlude-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  color: var(--purple);
  opacity: 0.08;
  pointer-events: none;
}

.interlude-decoration svg { width: 100%; height: 100%; animation: slowRotate 60s linear infinite; }

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.values-interlude blockquote { position: relative; z-index: 1; }

.interlude-mark {
  display: block;
  font-size: 6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
}

.values-interlude p {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.values-interlude em { color: var(--purple); font-style: normal; }

.values-closing { padding: 80px 60px 120px; text-align: center; background: var(--cream); }

.values-closing-line {
  width: 1px;
  height: 60px;
  background: var(--purple);
  margin: 0 auto 40px;
  opacity: 0.3;
}

.values-closing p {
  font-size: 1.15rem;
  color: var(--text-soft);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

.about-cta {
  position: relative;
  padding: 140px 60px;
  background: var(--purple);
  overflow: hidden;
}

.about-cta-bg { position: absolute; inset: 0; pointer-events: none; }

.about-cta-shape { position: absolute; border-radius: 50%; opacity: 0.1; }

.about-cta-shape-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; }
.about-cta-shape-2 { width: 400px; height: 400px; background: white; bottom: -150px; left: -100px; }

.about-cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; text-align: center; }

.about-cta .section-number { color: var(--gold-light); }

.about-cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

/* ===========================
   SERVICES PAGE
   =========================== */

.services-detail { padding: 80px 60px; background: var(--white); }

.service-detail-item {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-item:last-child { margin-bottom: 0; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }

.service-detail-content h2 { font-size: 2rem; font-weight: 500; margin-bottom: 16px; }

.service-detail-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-detail-content > p {
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-features { list-style: none; margin-bottom: 32px; }

.service-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-soft);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.service-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

.telehealth-banner { background: var(--text); overflow: hidden; }

.telehealth-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.telehealth-content { padding: 80px 60px; color: white; }
.telehealth-content h2 { font-size: 2rem; font-weight: 400; margin-bottom: 20px; }
.telehealth-content > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.8; }

.telehealth-benefits { list-style: none; }

.telehealth-benefits li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: rgba(255,255,255,0.8);
}

.telehealth-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

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

.cta-section { padding: 100px 60px; background: var(--cream-dark); text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: 2rem; font-weight: 400; margin-bottom: 16px; }
.cta-inner p { color: var(--text-soft); margin-bottom: 32px; }

/* ===========================
   BOOKING PAGE
   =========================== */

.booking-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.booking-hero-decoration {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  color: var(--purple);
  pointer-events: none;
  z-index: 0;
}

.booking-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px 100px;
  position: relative;
  z-index: 2;
}

.booking-hero-title { margin-bottom: 32px; }
.booking-hero-title .title-line { line-height: 1.1; }

.booking-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 400px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.booking-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
}

.booking-hero-image-wrapper { position: relative; width: 100%; max-width: 450px; }

.booking-hero-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px 300px 300px 20px;
}

.booking-hero-accent {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: var(--gold-light);
  border-radius: 50%;
  z-index: -1;
}

.session-types { padding: 120px 60px; background: var(--white); }
.session-types-header { max-width: 1400px; margin: 0 auto 80px; }
.session-types-intro { font-size: 1.1rem; color: var(--text-soft); margin-top: 16px; max-width: 500px; }

.session-types-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.session-card {
  position: relative;
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.session-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,0.12); }
.session-card.featured { background: var(--text); }

.session-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 3;
}

.session-card-accent { height: 6px; background: var(--purple); }
.session-card.featured .session-card-accent { background: var(--gold); }
.session-card-content { padding: 40px; }

.session-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.session-card.featured .session-tag { color: var(--gold); }
.session-card h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.session-card.featured h3 { color: white; }

.session-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }

.session-duration { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-soft); }
.session-card.featured .session-duration { color: rgba(255,255,255,0.7); }
.session-duration svg { width: 18px; height: 18px; }
.session-price { font-size: 1.1rem; font-weight: 600; color: var(--purple); }
.session-card.featured .session-price { color: var(--gold); }
.session-description { color: var(--text-soft); line-height: 1.7; margin-bottom: 24px; }
.session-card.featured .session-description { color: rgba(255,255,255,0.7); }
.session-includes { list-style: none; margin-bottom: 32px; }

.session-includes li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.session-card.featured .session-includes li { color: rgba(255,255,255,0.8); }

.session-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

.session-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--purple);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 52px;
}

.session-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; flex-shrink: 0; }
.session-card.featured .session-btn { background: white; color: var(--text); }
.session-btn:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.session-btn:hover svg { transform: translateX(4px); }

.how-it-works { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.how-it-works-visual { position: relative; overflow: hidden; }
.how-it-works-visual img { width: 100%; height: 100%; object-fit: cover; }

.how-it-works-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}

.how-it-works-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: white; letter-spacing: -0.02em; }

.how-it-works-steps {
  background: var(--cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-step { display: flex; gap: 24px; }
.journey-step-marker { display: flex; flex-direction: column; align-items: center; }

.journey-step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.journey-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--purple), var(--cream-dark));
  margin: 12px 0;
}

.journey-step-content { padding-bottom: 48px; }
.journey-step:last-child .journey-step-content { padding-bottom: 0; }
.journey-step-content h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.journey-step-content p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.7; max-width: 320px; }

.booking-form-premium { padding: 120px 60px; background: var(--white); }
.booking-form-premium-inner { max-width: 1200px; margin: 0 auto; }

.booking-form-header-premium { text-align: center; margin-bottom: 60px; }
.booking-form-header-premium h2 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 400; margin-bottom: 12px; letter-spacing: -0.02em; }
.booking-form-header-premium p { color: var(--text-soft); font-size: 1.1rem; }

.booking-form-container-premium {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.premium-form {
  background: var(--cream);
  padding: 48px;
  border-radius: 24px;
  box-sizing: border-box;
}

.form-section { margin-bottom: 40px; }
.form-section:last-of-type { margin-bottom: 0; }

.form-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-size: 0.9rem; font-weight: 500; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group { margin-top: 8px; }

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }

.btn-submit { margin-top: 24px; width: 100%; justify-content: center; min-height: 52px; font-size: 1rem; }

.booking-form-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 120px; }

.sidebar-card { background: var(--cream); padding: 32px; border-radius: 20px; }
.sidebar-icon { width: 48px; height: 48px; color: var(--purple); margin-bottom: 16px; }
.sidebar-icon svg { width: 100%; height: 100%; }
.sidebar-card h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.sidebar-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }

.booking-contact { background: var(--purple); padding: 100px 60px; position: relative; overflow: hidden; }
.booking-contact-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.booking-contact-content { text-align: left; }
.booking-contact .section-number { color: var(--gold-light); }
.booking-contact h2 { font-size: 2rem; font-weight: 400; color: white; margin-bottom: 12px; }
.booking-contact p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.booking-phone { display: block; font-size: 2.5rem; font-weight: 600; color: white; margin-bottom: 8px; transition: color 0.3s ease; }
.booking-phone:hover { color: var(--gold-light); }
.booking-hours { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.booking-contact-decoration { width: 200px; height: 200px; color: white; flex-shrink: 0; }
.booking-contact-decoration svg { width: 100%; height: 100%; }

/* ===========================
   FAQ PAGE
   =========================== */

.faq-section { padding: 80px 60px; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 60px; }
.faq-category:last-child { margin-bottom: 0; }

.faq-category-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--purple); }
.faq-question svg { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 24px; }
.faq-answer p { color: var(--text-soft); line-height: 1.8; }
.faq-answer a { color: var(--purple); text-decoration: underline; }

.faq-contact { padding: 100px 60px; background: var(--cream); text-align: center; }
.faq-contact-inner { max-width: 500px; margin: 0 auto; }
.faq-contact h2 { font-size: 2rem; font-weight: 400; margin-bottom: 12px; }
.faq-contact p { color: var(--text-soft); margin-bottom: 32px; }
.faq-contact-options { display: flex; gap: 16px; justify-content: center; }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1200px) {
  .ph-hero { grid-template-columns: 1fr; }

  .ph-hero-content {
    padding: 10rem 2.5rem 2.5rem;
    text-align: center;
    align-items: center;
    order: 2;
  }

  .ph-hero-subtitle { margin-left: auto; margin-right: auto; }

  .ph-hero-scroll { display: none; }

  .ph-hero-image {
    order: 1;
    padding: 11.25rem 2.5rem 0;
  }

  .ph-hero-image-wrapper img { height: 50vh; }

  .ph-approach-grid { grid-template-columns: 1fr; gap: 60px; }
  .ph-approach-image img { height: 400px; }
  .ph-process-section { grid-template-columns: 1fr; }
  .ph-process-visual { min-height: 400px; }
  .ph-blog-grid { grid-template-columns: repeat(2, 1fr); }

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

  .about-hero-content,
  .booking-hero-content {
    padding: 160px 40px 40px;
    text-align: center;
    align-items: center;
    order: 2;
  }

  .about-hero-image,
  .booking-hero-image {
    order: 1;
    padding: 140px 40px 0;
  }

  .about-hero-scroll { display: none; }

  .provider-grid { grid-template-columns: 1fr; gap: 60px; }
  .provider-image img { height: 450px; }

  .mission-section,
  .how-it-works { grid-template-columns: 1fr; }

  .mission-visual,
  .how-it-works-visual { min-height: 400px; }

  .session-types-grid { grid-template-columns: repeat(2, 1fr); }

  .booking-form-container-premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-form-sidebar { flex-direction: row; position: static; gap: 20px; }
  .sidebar-card { flex: 1; padding: 24px; }

  .booking-contact-inner { flex-direction: column; text-align: center; }
  .booking-contact-content { text-align: center; }
  .booking-contact-decoration { margin-top: 40px; }

  .values-editorial-header { grid-template-columns: 1fr; min-height: auto; }
  .values-editorial-intro,
  .values-editorial-philosophy { padding: 80px 60px; }

  .service-detail-item { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-item.reverse { direction: ltr; }

  .telehealth-inner { grid-template-columns: 1fr; }
  .telehealth-image { height: 300px; }

  .value-chapter { grid-template-columns: 80px 1fr; gap: 40px; }
  .value-chapter-number span { font-size: 4rem; }
}

@media (max-width: 1024px) {
  .public-mobile-menu-btn { display: flex; }
  .public-nav-links { display: none; }
  .public-nav-bar { padding: 0 1.5rem; }
  .public-logo { height: 80px; }
  .public-footer-logo { height: 70px; }

  .public-footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .public-footer-bottom { padding: 1.5rem 2rem; }
}

@media (max-width: 768px) {
  .public-nav-bar { padding: 0 1rem; }

  .public-footer-main { padding: 2.5rem 1.5rem; gap: 2rem; }
  .public-footer-nav { flex-wrap: wrap; gap: 2rem; }
  .public-footer-col { min-width: calc(50% - 1rem); }
  .public-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }

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

  .ph-hero-content {
    padding: 7.5rem 1.5rem 3.75rem;
    order: 2;
    align-items: center;
    text-align: center;
  }

  .ph-hero-actions { justify-content: center; }

  .ph-hero-image {
    order: 1;
    padding: 8.75rem 1.5rem 0;
  }

  .ph-hero-image-wrapper img { height: 350px; }

  .ph-title-line { font-size: 2.5rem; }

  .ph-section { padding: 5rem 1.5rem; }

  .ph-statement { padding: 5rem 1.5rem; }
  .ph-statement-mark { font-size: 8rem; }

  .ph-approach-image::before { display: none; }

  .ph-services-showcase { grid-template-columns: 1fr; }

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

  .ph-process-steps { padding: 3rem 1.5rem; }
  .ph-booking-section { padding: 5rem 1.5rem; }

  .title-line { font-size: 2.5rem; }

  .about-hero-content,
  .booking-hero-content { padding: 120px 24px 40px; }

  .about-hero-image,
  .booking-hero-image { padding: 120px 24px 0; }

  .about-hero-image-wrapper img,
  .booking-hero-image-wrapper img { height: 350px; }

  .about-statement,
  .provider-section,
  .session-types,
  .booking-form-premium { padding: 80px 24px; }

  .provider-image-frame { display: none; }

  .mission-content,
  .how-it-works-steps { padding: 60px 24px; }

  .session-types-grid { grid-template-columns: 1fr; }
  .session-card-content { padding: 32px 24px; }

  .premium-form { padding: 32px 24px; }
  .booking-form-sidebar { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group.full-width { grid-column: span 1; }

  .page-hero { padding: 140px 24px 60px; }

  .services-detail,
  .faq-section { padding: 60px 24px; }

  .service-detail-image img { height: 300px; }
  .telehealth-content { padding: 48px 24px; }

  .faq-contact,
  .cta-section { padding: 60px 24px; }
  .faq-contact-options { flex-direction: column; align-items: center; }

  .values-editorial-intro,
  .values-editorial-philosophy { padding: 60px 24px; }
  .values-title-large { font-size: 2.5rem; }
  .values-chapters { padding: 60px 24px; }
  .values-closing { padding: 60px 24px 80px; }

  .value-chapter { grid-template-columns: 1fr; gap: 20px; padding: 50px 0; position: relative; }
  .value-chapter-number { position: absolute; top: 50px; right: 0; }
  .value-chapter-number span { font-size: 5rem; position: static; }
  .value-chapter-content { padding-right: 0; }
  .value-chapter-alt { direction: ltr; }
  .value-chapter-alt .value-chapter-content { padding-left: 0; text-align: left; }
  .value-chapter-alt .value-chapter-header { justify-content: flex-start; }
  .value-chapter-alt .value-chapter-text { margin-left: 0; }
  .value-chapter h3 { font-size: 1.4rem; }
  .value-chapter-text { font-size: 1rem; }

  .about-cta { padding: 100px 24px; }
  .booking-contact { padding: 80px 24px; }
  .booking-phone { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .public-footer-col { min-width: 100%; }

  .ph-title-line { font-size: 2rem; }
  .ph-hero-image-wrapper img { height: 300px; border-radius: 150px 150px 16px 16px; }
  .ph-statement-text { font-size: 1.3rem; }
  .ph-approach-lead { font-size: 1.25rem; }

  .title-line { font-size: 2rem; }
  .about-hero-image-wrapper img,
  .booking-hero-image-wrapper img { height: 300px; }
}

/* ─── Sign-in ─────────────────────────────────────────────── */

.signin-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream, #FAF8F3);
}

.signin-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--purple, #7D5BA6);
}

.signin-decoration svg {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55vmin;
  height: 55vmin;
  opacity: 0.08;
}

.signin-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: var(--white, #FFFFFF);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 6px oklch(0% 0 0 / 4%), 0 20px 60px oklch(0% 0 0 / 8%);
}

.signin-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.signin-logo {
  height: 120px;
  width: auto;
}

.signin-brand .signin-eyebrow {
  margin: 0;
}

.signin-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #CBA135);
  margin: 0 0 1.5rem;
}

.signin-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text, #2D2D2B);
  margin: 0 0 0.5rem;
  text-align: center;
}

.signin-title span {
  color: var(--purple, #7D5BA6);
}

.signin-subtitle {
  font-size: 0.9375rem;
  color: var(--text-soft, #5A5A57);
  margin: 0 0 2rem;
  line-height: 1.5;
  text-align: center;
}

.signin-divider {
  height: 1px;
  background: var(--cream-dark, #F2EEE5);
  margin: 0 0 2rem;
  border: none;
}

.signin-alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.signin-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.signin-alert--notice {
  background: oklch(95% 0.04 292 / 30%);
  color: var(--purple-dark, #5E4080);
  border: 1px solid oklch(85% 0.06 292 / 40%);
}

.signin-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.signin-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text, #2D2D2B);
  letter-spacing: 0.01em;
}

.signin-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text, #2D2D2B);
  background: var(--cream, #FAF8F3);
  border: 1.5px solid var(--cream-dark, #F2EEE5);
  border-radius: 12px;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}

.signin-input:focus {
  border-color: var(--purple, #7D5BA6);
  box-shadow: 0 0 0 3px oklch(60% 0.117 292 / 12%);
  background: var(--white, #FFFFFF);
}

.signin-input::placeholder {
  color: var(--text-muted, #8A8A85);
}

.signin-hint {
  font-size: 0.8125rem;
  color: var(--text-muted, #8A8A85);
}

.signin-submit {
  width: 100%;
  padding: 0.9375rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--white, #FFFFFF);
  background: var(--purple, #7D5BA6);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 150ms, transform 100ms;
  margin-top: 0.5rem;
}

.signin-submit:hover {
  background: var(--purple-dark, #5E4080);
}

.signin-submit:active {
  transform: scale(0.98);
}

.signin-back {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-soft, #5A5A57);
  transition: color 150ms;
}

.signin-back:hover {
  color: var(--purple, #7D5BA6);
}

.signin-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--cream, #FAF8F3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-soft, #5A5A57);
  line-height: 1.5;
}

.signin-info-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--purple, #7D5BA6);
  margin-top: 0.1rem;
}

.signin-email-highlight {
  font-weight: 600;
  color: var(--text, #2D2D2B);
}

@media (max-width: 520px) {
  .signin-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}
