:root {
  --page-ivory: #f7efed;
  --page-blush: #f5ebe7;
  --page-rose: #edd7da;
  --page-wash: #efe0df;
  --page-clay: #e9d4d5;
  --page-clay-deep: #e2c8cc;
  --page-clay-strong: #dbbcc3;
  --ink-soft: #6a4a3c;
  --ink-strong: #59382d;
  --ink-muted: rgba(104, 75, 61, 0.9);
  --line-soft: rgba(141, 101, 82, 0.44);
  --glass-soft: rgba(252, 242, 238, 0.2);
  --peach-solid: #d19a74;
  --peach-deep: #bd805c;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--page-blush);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 280px at 50% -20px, rgba(244, 222, 229, 0.56) 0%, rgba(244, 222, 229, 0.16) 56%, transparent 78%),
    linear-gradient(180deg, #f7efef 0%, #f3e8e4 12%, #f3e8e3 100%);
  overflow-x: hidden;
}

body.page-home {
  height: 100vh;
  overflow: hidden;
}

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

.header {
  position: relative;
  z-index: 5;
  padding: 8px clamp(28px, 4vw, 56px) 6px;
  text-align: center;
  background:
    linear-gradient(180deg,
      #d9adb7 0%,
      #e7c4ca 20%,
      #efd9da 48%,
      #f1e1dd 78%,
      #f6eeec 100%);
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 22px;
  background: linear-gradient(180deg, rgba(244, 235, 231, 0.2) 0%, rgba(244, 235, 231, 0) 100%);
  pointer-events: none;
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  max-width: 1040px;
  margin: 0 auto 2px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  gap: clamp(22px, 2.1vw, 34px);
  padding-top: 2px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: clamp(1.38rem, 1.45vw, 1.72rem);
  font-weight: 400;
  color: rgba(108, 76, 62, 0.94);
  letter-spacing: 0.01em;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-link:hover {
  color: var(--ink-strong);
  opacity: 0.92;
}

.logo-center {
  position: relative;
  display: flex;
  justify-content: center;
}

.logo-center::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: min(290px, 90%);
  height: 78px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 244, 240, 0.92) 0%, rgba(255, 244, 240, 0.12) 62%, rgba(255, 244, 240, 0) 76%);
  filter: blur(10px);
  pointer-events: none;
}

.logo-img {
  position: relative;
  z-index: 1;
  height: clamp(92px, 7.2vw, 114px);
  width: auto;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1.4px solid rgba(150, 107, 88, 0.34);
  border-radius: 14px;
  background: rgba(252, 243, 239, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 20px rgba(134, 92, 76, 0.05);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.menu-toggle-line {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(113, 79, 63, 0.94);
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.menu-toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

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

.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.btn-consultation-header,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 12px;
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.btn-consultation-header {
  min-height: 50px;
  padding: 0 22px;
  color: rgba(113, 79, 63, 0.95);
  background: rgba(252, 243, 239, 0.2);
  border: 1.4px solid rgba(150, 107, 88, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 20px rgba(134, 92, 76, 0.05);
  backdrop-filter: blur(8px);
}

.btn-consultation-header:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-consultation-header:hover {
  color: var(--ink-strong);
  border-color: rgba(136, 93, 74, 0.58);
  background: rgba(252, 243, 239, 0.32);
}

.tagline-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 12px 24px 0;
  text-align: center;
  pointer-events: none;
}

.tagline {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(1.28rem, 1.55vw, 1.72rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(107, 72, 58, 0.94);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow:
    0 1px 0 rgba(255, 247, 243, 0.5),
    0 0 22px rgba(255, 241, 236, 0.24);
  text-wrap: balance;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  margin-top: 0;
  padding: clamp(75px, 12.5vw, 144px) 24px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(1.14) contrast(1.08) brightness(0.94) sepia(0.04);
  transform: scale(1.015);
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(58% 46% at 50% 36%, rgba(255, 244, 236, 0.58) 0%, rgba(255, 244, 236, 0.32) 46%, rgba(255, 244, 236, 0.08) 72%, rgba(255, 244, 236, 0) 86%),
    radial-gradient(70% 42% at 50% 14%, rgba(255, 237, 228, 0.28) 0%, rgba(255, 237, 228, 0.09) 54%, rgba(255, 237, 228, 0) 78%),
    linear-gradient(180deg, rgba(246, 236, 235, 0.52) 0%, rgba(240, 222, 214, 0.24) 18%, rgba(230, 196, 178, 0.1) 38%, rgba(220, 180, 154, 0.03) 62%, rgba(214, 173, 146, 0) 82%),
    radial-gradient(48% 34% at 50% 0%, rgba(250, 229, 224, 0.15) 0%, rgba(250, 229, 224, 0) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  text-align: center;
}

.hero-title {
  max-width: 820px;
  margin: 0 auto 10px;
  font-size: clamp(2.7rem, 3.65vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: rgba(89, 56, 45, 0.95);
  text-shadow: 0 1px 0 rgba(255, 247, 243, 0.42);
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: clamp(1.3rem, 1.46vw, 1.68rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  color: rgba(98, 68, 55, 0.92);
  text-shadow: 0 1px 0 rgba(255, 247, 243, 0.36);
  text-wrap: balance;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-primary,
.btn-secondary {
  min-width: 236px;
  padding: 0 22px;
}

.btn-primary {
  color: #fff5ee;
  background: linear-gradient(180deg, rgba(220, 173, 139, 0.9) 0%, rgba(198, 142, 109, 0.94) 100%);
  border: 1.5px solid rgba(171, 116, 85, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 229, 0.4),
    0 12px 28px rgba(148, 95, 65, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(223, 176, 142, 0.94) 0%, rgba(201, 145, 112, 0.98) 100%);
  border-color: rgba(167, 113, 83, 0.82);
}

.btn-secondary {
  color: rgba(102, 69, 56, 0.96);
  background: rgba(251, 240, 236, 0.11);
  border: 1.5px solid rgba(148, 102, 82, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 24px rgba(123, 84, 68, 0.06);
  backdrop-filter: blur(7px);
}

.btn-secondary:hover {
  background: rgba(251, 240, 236, 0.18);
  border-color: rgba(139, 95, 76, 0.58);
}

.hero-availability {
  font-size: clamp(1.06rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.2;
  color: rgba(106, 71, 58, 0.96);
  text-shadow: 0 1px 0 rgba(255, 247, 243, 0.4);
}

@media (max-width: 1080px) {
  .header-row {
    max-width: 940px;
    gap: 18px;
  }

  .nav-left {
    gap: 24px;
  }

  .btn-consultation-header {
    padding: 0 20px;
  }

  .hero {
    padding-top: clamp(110px, 11.8vw, 136px);
  }

  .hero-title {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .header {
    padding: 14px 20px 8px;
  }

  .header::after {
    bottom: -10px;
    height: 22px;
  }

  .header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 84px;
    gap: 0;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    right: 20px;
    top: 32px;
    z-index: 20;
  }

  .logo-img {
    height: 82px;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 92px;
    right: 20px;
    left: auto;
    width: min(calc(100% - 40px), 320px);
    margin: 0;
    padding: 18px 18px 20px;
    border: 1.4px solid rgba(148, 102, 82, 0.22);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(252, 243, 239, 0.92) 0%, rgba(249, 236, 232, 0.86) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.58),
      0 18px 42px rgba(134, 92, 76, 0.14);
    backdrop-filter: blur(12px);
    z-index: 19;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-link {
    font-size: 1.55rem;
    font-weight: 400;
    color: rgba(108, 76, 62, 0.94);
    letter-spacing: 0.01em;
  }

  .mobile-consultation {
    width: 100%;
    margin-top: 16px;
  }

  .tagline-strip {
    padding: 12px 18px 0;
  }

  .tagline {
    max-width: 700px;
    font-size: clamp(1.05rem, 3.1vw, 1.32rem);
  }

  .hero {
    margin-top: 0;
    padding: 110px 18px 24px;
  }

  .hero-content {
    width: min(100%, 620px);
  }

  .hero-title {
    font-size: clamp(2.2rem, 5.8vw, 3.15rem);
    line-height: 0.98;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    margin-bottom: 18px;
    font-size: clamp(1.08rem, 3vw, 1.34rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-consultation-header {
    width: min(100%, 312px);
  }

  .btn-primary,
  .btn-secondary {
    min-width: 0;
  }

  .hero-availability {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .header {
    padding-inline: 16px;
  }

  .nav-link {
    font-size: 1.4rem;
  }

  .logo-img {
    height: 84px;
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 24px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.55rem);
  }

  .hero-subtitle {
    font-size: clamp(0.98rem, 4.2vw, 1.16rem);
    margin-bottom: 18px;
  }

  .hero-availability {
    font-size: 0.96rem;
  }
}

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

.about {
  position: relative;
  background: linear-gradient(180deg, var(--page-ivory) 0%, var(--page-wash) 100%);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  min-height: clamp(460px, 48vw, 660px);
}

.about-text {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  align-self: center;
  padding:
    clamp(48px, 6vw, 96px)
    clamp(32px, 4vw, 64px)
    clamp(48px, 6vw, 96px)
    clamp(48px, 8vw, 136px);
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 46%;
  background: linear-gradient(180deg, var(--page-ivory) 0%, var(--page-wash) 100%);
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 0.78) 30%,
    rgba(0, 0, 0, 0.32) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 0.78) 30%,
    rgba(0, 0, 0, 0.32) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a37a55;
  margin: 0 0 22px;
}

.about-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 3.75vw, 3.7rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: #432a20;
  margin: 0 0 22px;
  text-wrap: balance;
}

.about-heading .accent {
  color: #b78659;
}

.divider-line {
  margin: 0 0 26px;
}

.divider-line img {
  display: block;
  width: 120px;
  height: auto;
  opacity: 0.75;
}

.about-body {
  font-size: clamp(1.02rem, 1.1vw, 1.16rem);
  line-height: 1.7;
  color: #6a4a3d;
  margin: 0 0 18px;
}

.about-body:last-of-type {
  margin-bottom: 36px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 56px;
  color: #fbf0e5;
  background: linear-gradient(180deg, #c18a5f 0%, #a97149 100%);
  border: 1px solid rgba(138, 85, 54, 0.5);
  border-radius: 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(148, 95, 65, 0.15);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-learn-more:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #c99267 0%, #b07950 100%);
  box-shadow: 0 10px 22px rgba(148, 95, 65, 0.18);
}

/* ---------- Meet Your Therapist ---------- */

.therapist {
  position: relative;
  background: linear-gradient(180deg, var(--page-wash) 0%, var(--page-clay-deep) 100%);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}

.therapist-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.therapist-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(90, 56, 38, 0.18);
}

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

.therapist-text {
  padding-top: 8px;
}

.therapist-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.1vw, 2.9rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: #432a20;
  margin: 0 0 6px;
}

.therapist-credentials {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-style: italic;
  color: #a37a55;
  margin: 0 0 22px;
}

.therapist-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 28px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(253, 243, 231, 0.7);
  border: 1px solid rgba(150, 110, 75, 0.28);
  border-radius: 999px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.98rem;
  color: #6a4a3d;
  letter-spacing: 0.01em;
}

.therapist-bio p {
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
  line-height: 1.7;
  color: #6a4a3d;
  margin: 0 0 22px;
}

.therapist-philosophy {
  margin: 0 0 28px;
  padding: 22px 26px;
  background: rgba(252, 242, 234, 0.6);
  border-left: 2px solid #b78659;
  border-radius: 2px;
}

.therapist-philosophy p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
  font-style: italic;
  line-height: 1.65;
  color: #59382d;
  margin: 0;
}

.therapist-pt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.06rem;
  color: #a37a55;
  border-bottom: 1px solid rgba(163, 122, 85, 0.4);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.therapist-pt-link:hover {
  color: #7a5537;
  border-bottom-color: #7a5537;
}

/* ---------- What You Can Expect ---------- */

.expect {
  position: relative;
  background: linear-gradient(180deg, var(--page-clay-deep) 0%, var(--page-clay-strong) 100%);
  padding: clamp(72px, 9vw, 132px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}

.tree-shadow {
  position: absolute;
  top: 0;
  left: -40px;
  width: clamp(220px, 26vw, 380px);
  height: auto;
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, rgba(0, 0, 0, 0.6) 18%, #000 40%);
  mask-image: linear-gradient(100deg, transparent 0%, rgba(0, 0, 0, 0.6) 18%, #000 40%);
}

.expect-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.expect-header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 92px);
}

.expect-header .eyebrow {
  margin-bottom: 14px;
}

.expect-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.003em;
  color: #432a20;
  margin: 0;
  text-wrap: balance;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.expect-item {
  padding: 0 clamp(18px, 2.2vw, 32px);
  border-left: 1px solid rgba(150, 110, 75, 0.22);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expect-item:first-child {
  border-left: none;
}

.expect-icon {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 28px;
}

.expect-item-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.12rem, 1.18vw, 1.28rem);
  font-weight: 700;
  line-height: 1.25;
  color: #432a20;
  margin: 0 0 16px;
}

.expect-item-text {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.55;
  color: #6a4a3d;
  margin: 0;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-text {
    max-width: none;
    justify-self: stretch;
    padding: clamp(48px, 9vw, 88px) clamp(28px, 6vw, 56px);
  }

  .about-image {
    min-height: clamp(320px, 60vw, 520px);
  }

  .about-image::before {
    display: none;
  }

  .about-image {
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%
    );
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .therapist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
  }

  .therapist-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .expect-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(40px, 6vw, 56px);
  }

  .expect-item {
    padding: 0 clamp(18px, 3vw, 28px);
  }

  .expect-item:nth-child(odd) {
    border-left: none;
  }
}

@media (max-width: 560px) {
  .about-text {
    padding: 56px 24px;
  }

  .therapist {
    padding: 72px 24px;
  }

  .expect {
    padding: 72px 24px;
  }

  .expect-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .expect-item,
  .expect-item:nth-child(odd),
  .expect-item:nth-child(even) {
    border-left: none;
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
  }

  .tree-shadow {
    width: 200px;
  }
}

/* =====================================================
   SHARED PAGE HEADER (services, book, privacy)
   ===================================================== */

.page-header {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 5vw, 72px) clamp(48px, 6vw, 80px);
  text-align: center;
  background: linear-gradient(180deg, var(--page-ivory) 0%, var(--page-wash) 100%);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.9rem);
  font-weight: 500;
  line-height: 1.05;
  color: #432a20;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1.12rem, 1.25vw, 1.3rem);
  line-height: 1.5;
  color: #6a4a3d;
  font-style: italic;
}

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

.services-jump {
  background: linear-gradient(180deg, var(--page-wash) 0%, var(--page-clay) 100%);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(150, 110, 75, 0.14);
  border-bottom: 1px solid rgba(150, 110, 75, 0.14);
}

.services-jump-nav {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
}

.services-jump-nav a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.02rem, 1.1vw, 1.16rem);
  color: #6a4a3d;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
  letter-spacing: 0.01em;
}

.services-jump-nav a:hover {
  color: #432a20;
  border-bottom-color: #b78659;
}

.services-detail-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--page-clay) 0%, #f1dfde 50%, var(--page-blush) 100%);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}

.services-detail-wrap::before,
.services-detail-wrap::after {
  content: "";
  position: absolute;
  top: clamp(72px, 9vw, 120px);
  bottom: clamp(72px, 9vw, 120px);
  width: clamp(340px, 40vw, 640px);
  background-repeat: no-repeat;
  background-size: auto 100%;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.services-detail-wrap::before {
  left: -2%;
  background-image: url('Assets/services/behindCardsLeft.png');
  background-position: left center;
}

.services-detail-wrap::after {
  right: -2%;
  background-image: url('Assets/services/behindCardsRight.png');
  background-position: right center;
}

.service-detail {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  background:
    linear-gradient(rgba(249, 243, 238, 0.34), rgba(249, 243, 238, 0.34)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(90, 56, 38, 0.08);
  overflow: hidden;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail-inner {
  padding: clamp(36px, 4.5vw, 56px) clamp(32px, 4.5vw, 56px);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0 0 14px;
  color: #a37a55;
  background: rgba(253, 243, 231, 0.7);
  border: 1px solid rgba(163, 122, 85, 0.32);
}

.service-detail-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.003em;
  color: #432a20;
  margin: 0 0 18px;
}

.service-detail-content > p {
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
  line-height: 1.7;
  color: #6a4a3d;
  margin: 0 0 20px;
}

.parent-note {
  margin: 18px 0 22px;
  padding: 18px 22px;
  background: rgba(252, 242, 234, 0.7);
  border-left: 2px solid #b78659;
  border-radius: 2px;
}

.parent-note strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a37a55;
  margin: 0 0 8px;
}

.parent-note p {
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-style: italic;
  line-height: 1.65;
  color: #59382d;
  margin: 0;
}

.edu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.06rem;
  color: #a37a55;
  border-bottom: 1px solid rgba(163, 122, 85, 0.4);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.edu-link:hover {
  color: #7a5537;
  border-bottom-color: #7a5537;
}

/* ---------- Our Space Carousel ---------- */

.our-space {
  background:
    linear-gradient(180deg, var(--page-blush) 0%, rgba(245, 235, 231, 0.55) 16%, rgba(243, 228, 226, 0.32) 40%, rgba(241, 225, 224, 0.32) 60%, rgba(239, 221, 222, 0.52) 84%, #efdfdd 100%),
    url('Assets/services/behindGallery.png') center/cover no-repeat;
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
}

.our-space-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.our-space-header {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.our-space-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: #432a20;
  margin: 0;
}

.our-space-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(90, 56, 38, 0.18);
  background: #eedddd;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #432a20;
  background: rgba(253, 245, 240, 0.86);
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(150, 110, 75, 0.4);
  border-radius: 999px;
  background: rgba(253, 245, 240, 0.4);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-dot.active {
  background: #b78659;
  border-color: #b78659;
  transform: scale(1.12);
}

.gallery-dot:hover {
  background: rgba(183, 134, 89, 0.7);
}

/* ---------- Rates Section ---------- */

.rates {
  background: linear-gradient(180deg, #efdfdd 0%, var(--page-rose) 100%);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
}

.rates-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.rates h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: #432a20;
  margin: 0 0 clamp(40px, 5vw, 60px);
  text-align: center;
}

.rates-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  text-align: center;
}

.rate-item {
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 2.8vw, 36px);
  background:
    linear-gradient(rgba(249, 243, 238, 0.42), rgba(249, 243, 238, 0.42)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(90, 56, 38, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rate-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(183, 134, 89, 0.14);
  border: 1px solid rgba(183, 134, 89, 0.34);
  color: #a37a55;
}

.rate-icon svg {
  width: 26px;
  height: 26px;
}

.rate-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.24rem, 1.35vw, 1.4rem);
  font-weight: 600;
  color: #432a20;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.rate-highlight {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.1rem);
  font-weight: 500;
  color: #b78659;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

.rate-highlight--compact {
  font-size: clamp(1.1rem, 1.25vw, 1.28rem);
  font-style: italic;
  color: #a37a55;
}

.rate-item p {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.6;
  color: #6a4a3d;
  margin: 0;
}

.rate-item p a {
  color: #a37a55;
  border-bottom: 1px solid rgba(163, 122, 85, 0.4);
  transition: color 180ms ease, border-color 180ms ease;
}

.rate-item p a:hover {
  color: #7a5537;
  border-bottom-color: #7a5537;
}

.rates-disclaimer {
  max-width: 720px;
  margin: clamp(32px, 3.5vw, 44px) auto 0;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #8a6852;
}

/* =====================================================
   BOOK PAGE
   ===================================================== */

.page-book .page-header {
  position: relative;
  padding: clamp(88px, 10vw, 144px) clamp(24px, 5vw, 72px) clamp(80px, 9.5vw, 128px);
  background:
    linear-gradient(180deg,
      var(--page-ivory) 0%,
      rgba(247, 239, 237, 0.82) 10%,
      rgba(245, 235, 231, 0.42) 30%,
      rgba(243, 228, 226, 0.34) 52%,
      rgba(241, 225, 224, 0.48) 72%,
      rgba(239, 224, 223, 0.82) 90%,
      var(--page-wash) 100%),
    url('Assets/background.png') center/cover no-repeat;
}

.page-book .page-header h1,
.page-book .page-header p {
  position: relative;
  z-index: 1;
}

.faq-section {
  position: relative;
  background: linear-gradient(180deg, var(--page-wash) 0%, var(--page-clay-deep) 100%);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}

.faq-section h2 {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  color: #432a20;
  text-align: center;
  margin: 0 0 clamp(40px, 5vw, 60px);
}

.faq-list {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background:
    linear-gradient(rgba(249, 243, 238, 0.42), rgba(249, 243, 238, 0.42)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(90, 56, 38, 0.08);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover {
  border-color: rgba(183, 134, 89, 0.42);
}

.faq-item details[open] {
  box-shadow: inset 0 0 0 1px rgba(183, 134, 89, 0.32);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.12rem, 1.25vw, 1.3rem);
  font-weight: 500;
  color: #432a20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 180ms ease;
}

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

.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  color: #a37a55;
  transition: transform 220ms ease, color 180ms ease;
  flex-shrink: 0;
}

.faq-item details[open] summary::after {
  content: '\2013';
}

.faq-item summary:hover {
  color: #7a5537;
}

.faq-answer {
  padding: 0 26px 22px;
  animation: faqOpen 260ms ease;
}

.faq-answer p {
  font-size: clamp(1rem, 1.08vw, 1.1rem);
  line-height: 1.7;
  color: #6a4a3d;
  margin: 0;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact Cards ---------- */

.contact-alt {
  background: linear-gradient(180deg, var(--page-rose) 0%, #efdfdd 100%);
  padding: clamp(72px, 9vw, 110px) clamp(24px, 5vw, 72px);
}

.contact-alt-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.contact-alt h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  color: #432a20;
  margin: 0 0 14px;
}

.contact-alt-label {
  font-size: clamp(1.1rem, 1.2vw, 1.22rem);
  font-style: italic;
  color: #6a4a3d;
  margin: 0 0 clamp(40px, 5vw, 56px);
}

.contact-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(28px, 3.2vw, 40px) clamp(20px, 2.4vw, 28px);
  background:
    linear-gradient(rgba(249, 243, 238, 0.42), rgba(249, 243, 238, 0.42)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(90, 56, 38, 0.08);
  text-align: center;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 134, 89, 0.5);
  box-shadow: 0 16px 36px rgba(90, 56, 38, 0.12);
}

.contact-card-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a37a55;
  margin: 0 0 4px;
}

.contact-card-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 1.35vw, 1.42rem);
  font-weight: 500;
  color: #432a20;
}

/* ---------- Office Hours ---------- */

.hours-section {
  background: linear-gradient(180deg, #efdfdd 0%, var(--page-blush) 100%);
  padding: clamp(72px, 9vw, 110px) clamp(24px, 5vw, 72px);
}

.hours-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hours-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  color: #432a20;
  margin: 0 0 clamp(36px, 4.5vw, 52px);
}

.hours-display {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
  background:
    linear-gradient(rgba(249, 243, 238, 0.42), rgba(249, 243, 238, 0.42)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(90, 56, 38, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(150, 110, 75, 0.18);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
  font-weight: 500;
  color: #432a20;
}

.hours-time {
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
  color: #6a4a3d;
  font-style: italic;
}

.hours-note {
  margin-top: 22px;
  font-size: 1rem;
  font-style: italic;
  color: #8a6852;
}

/* ---------- Map ---------- */

.map-section {
  background: var(--page-blush);
  padding: 0 clamp(24px, 5vw, 72px) clamp(72px, 9vw, 110px);
}

.map-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 40vw, 440px);
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(90, 56, 38, 0.1);
  filter: saturate(0.9) sepia(0.06);
}

.map-fallback {
  margin-top: 16px;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
}

.map-fallback a {
  color: #a37a55;
  border-bottom: 1px solid rgba(163, 122, 85, 0.4);
  padding-bottom: 2px;
}

.map-fallback a:hover {
  color: #7a5537;
  border-bottom-color: #7a5537;
}

/* ---------- Page Header: Free Consult Aside ---------- */

.page-header-aside {
  display: inline-block;
  margin: 20px auto 0;
  padding: 8px 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  font-style: italic;
  letter-spacing: 0.02em;
  color: #a37a55;
  background: rgba(253, 243, 231, 0.7);
  border: 1px solid rgba(163, 122, 85, 0.32);
  border-radius: 999px;
}

/* ---------- What to Expect (Session) ---------- */

.session-expect {
  background: linear-gradient(180deg, var(--page-wash) 0%, var(--page-clay) 100%);
  padding: clamp(72px, 9vw, 110px) clamp(24px, 5vw, 72px);
}

.session-expect-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.session-expect-inner .eyebrow {
  margin-bottom: 14px;
}

.session-expect-inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  color: #432a20;
  margin: 0 0 clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.003em;
}

.session-expect-card {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 48px);
  background:
    linear-gradient(rgba(249, 243, 238, 0.42), rgba(249, 243, 238, 0.42)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(90, 56, 38, 0.08);
  text-align: left;
}

.session-expect-card p {
  font-size: clamp(1.04rem, 1.12vw, 1.18rem);
  line-height: 1.75;
  color: #6a4a3d;
  margin: 0 0 16px;
}

.session-expect-card p:last-child {
  margin-bottom: 0;
}

/* ---------- Booking Process (How It Works + SP Embed) ---------- */

.booking-process {
  position: relative;
  background: linear-gradient(180deg, var(--page-clay) 0%, var(--page-clay-deep) 100%);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}

.booking-process::before,
.booking-process::after {
  content: "";
  position: absolute;
  top: clamp(72px, 9vw, 120px);
  bottom: clamp(72px, 9vw, 120px);
  width: clamp(340px, 40vw, 640px);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.booking-process::before {
  left: -2%;
  background-image: url('Assets/services/behindCardsLeft.png');
  background-position: left center;
}

.booking-process::after {
  right: -2%;
  background-image: url('Assets/services/behindCardsRight.png');
  background-position: right center;
}

.booking-process-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.booking-process-inner .eyebrow {
  margin-bottom: 14px;
}

.booking-process-inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 500;
  color: #432a20;
  margin: 0 0 12px;
  letter-spacing: -0.003em;
}

.booking-process-intro {
  max-width: 620px;
  margin: 0 auto clamp(44px, 5vw, 60px);
  font-size: clamp(1.1rem, 1.2vw, 1.22rem);
  font-style: italic;
  color: #6a4a3d;
  line-height: 1.55;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin: 0 0 clamp(40px, 5vw, 56px);
}

.booking-step {
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 2.8vw, 32px) clamp(28px, 3vw, 36px);
  background:
    linear-gradient(rgba(249, 243, 238, 0.42), rgba(249, 243, 238, 0.42)),
    url('Assets/services/paper.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 110, 75, 0.22);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(90, 56, 38, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid rgba(183, 134, 89, 0.4);
  border-radius: 999px;
  background: rgba(253, 243, 231, 0.7);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: #a37a55;
  letter-spacing: 0.01em;
}

.booking-step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.18rem, 1.28vw, 1.36rem);
  font-weight: 600;
  color: #432a20;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
}

.booking-step p {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.6;
  color: #6a4a3d;
  margin: 0;
}

/* ---------- Free 15-Minute Consultation Callout ---------- */

.free-consult-callout {
  max-width: 620px;
  margin: 0 auto clamp(32px, 3.5vw, 40px);
  padding: 22px 28px;
  background: rgba(252, 242, 234, 0.7);
  border-left: 2px solid #b78659;
  border-radius: 2px;
  text-align: left;
}

.free-consult-label {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a37a55;
}

.free-consult-callout p:not(.free-consult-label) {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
  font-style: italic;
  line-height: 1.65;
  color: #59382d;
}

.free-consult-callout strong {
  font-style: normal;
  font-weight: 600;
  color: #432a20;
}

/* ---------- SimplePractice Widget Button Override (scoped) ---------- */

.booking-process .spwidget-button-wrapper {
  margin: 0 auto clamp(18px, 2.2vw, 24px);
}

.booking-process .spwidget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 236px;
  padding: 0 22px;
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: rgba(102, 69, 56, 0.96);
  background: rgba(251, 240, 236, 0.11);
  border: 1.5px solid rgba(148, 102, 82, 0.46);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 24px rgba(123, 84, 68, 0.06);
  backdrop-filter: blur(7px);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.booking-process .spwidget-button:hover {
  transform: translateY(-1px);
  background: rgba(251, 240, 236, 0.18);
  border-color: rgba(139, 95, 76, 0.58);
  color: rgba(102, 69, 56, 0.96);
}

.booking-process .spwidget-button:active {
  transform: translateY(0);
  color: rgba(102, 69, 56, 0.82) !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

.booking-note {
  margin-top: clamp(14px, 1.6vw, 20px);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #8a6852;
  text-align: center;
}

/* ---------- Booking page: mobile breakpoints ---------- */

@media (max-width: 980px) {
  .booking-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .session-expect,
  .booking-process {
    padding: 64px 20px;
  }

  .session-expect-card {
    padding: 28px 22px;
  }

  .booking-step {
    padding: 28px 22px 24px;
  }

  .free-consult-callout {
    padding: 20px 22px;
  }

  .booking-process .spwidget-button {
    width: min(100%, 340px);
    padding: 0 22px;
  }
}

/* =====================================================
   PRIVACY PAGE
   ===================================================== */

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 5vw, 56px);
}

.policy-section {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.policy-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 2vw, 1.95rem);
  font-weight: 500;
  color: #432a20;
  margin: 0 0 14px;
  letter-spacing: -0.003em;
}

.policy-section p {
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
  line-height: 1.7;
  color: #6a4a3d;
  margin: 0 0 12px;
}

.policy-section .contact-detail {
  display: block;
  font-size: 1.04rem;
  line-height: 1.8;
  color: #6a4a3d;
}

.policy-section .contact-detail a {
  color: #a37a55;
  border-bottom: 1px solid rgba(163, 122, 85, 0.4);
}

.policy-section .contact-detail a:hover {
  color: #7a5537;
}

.policy-effective {
  font-size: 0.98rem;
  font-style: italic;
  color: #8a6852;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(150, 110, 75, 0.22);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: linear-gradient(180deg, var(--page-rose) 0%, var(--page-clay-strong) 100%);
  color: #59382d;
  padding: clamp(56px, 7vw, 88px) clamp(24px, 5vw, 72px) clamp(28px, 3vw, 36px);
  border-top: 1px solid rgba(150, 110, 75, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 1.8vw, 1.85rem);
  font-weight: 500;
  color: #432a20;
  margin: 0 0 12px;
  line-height: 1.15;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6a4a3d;
  margin: 0 0 16px;
  max-width: 380px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(253, 243, 231, 0.7);
  border: 1px solid rgba(150, 110, 75, 0.28);
  border-radius: 999px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.92rem;
  color: #6a4a3d;
  letter-spacing: 0.04em;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a37a55;
  margin: 0 0 18px;
}

.footer-col a {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.04rem;
  color: #6a4a3d;
  line-height: 1.9;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: #432a20;
}

.footer-col p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #6a4a3d;
  margin-top: 10px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 4px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: #6a4a3d;
}

.footer-hours-row span:last-child {
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 14px;
}

.footer-crisis {
  max-width: 1200px;
  margin: clamp(40px, 5vw, 60px) auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(150, 110, 75, 0.28);
  border-radius: 6px;
  background: rgba(253, 245, 240, 0.44);
  text-align: center;
}

.footer-crisis p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #59382d;
  margin: 0;
}

.footer-crisis strong {
  color: #432a20;
}

.footer-crisis a {
  color: #a37a55;
  border-bottom: 1px solid rgba(163, 122, 85, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: clamp(28px, 3.5vw, 40px) auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(150, 110, 75, 0.22);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.94rem;
  color: #8a6852;
  text-align: center;
  letter-spacing: 0.02em;
}

/* =====================================================
   MOBILE BREAKPOINTS: new sections
   ===================================================== */

@media (max-width: 980px) {
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .contact-alt-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .services-jump-nav {
    gap: 10px 18px;
  }

  .service-detail-inner {
    padding: 36px 24px;
  }

  .our-space {
    padding: 56px 20px;
  }

  .our-space-gallery {
    aspect-ratio: 4 / 3;
  }

  .gallery-caption {
    left: 14px;
    bottom: 14px;
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .rates,
  .faq-section,
  .contact-alt,
  .hours-section {
    padding: 64px 20px;
  }

  .map-section {
    padding: 0 20px 64px;
  }

  .faq-item summary {
    padding: 16px 20px;
    font-size: 1.08rem;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }

  .footer {
    padding: 56px 20px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .policy-content {
    padding: 56px 20px;
  }
}
