:root {
  --paper: #f7f3ec;
  --paper-soft: #fffdf8;
  --ink: #29302d;
  --muted: #68726b;
  --sage: #687b66;
  --sage-dark: #465847;
  --clay: #a96750;
  --bluegrey: #617780;
  --line: rgba(41, 48, 45, 0.16);
  --shadow: 0 24px 80px rgba(41, 48, 45, 0.16);
  --max: 1180px;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans-tr: var(--font-sans);
  --font-display-tr: var(--font-display);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

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

.site-main {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: #101412;
  background: rgba(255, 255, 255, 0.93);
  transition: background 180ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  text-decoration: none;
  min-width: 72px;
  color: #292624;
}

.brand-mark {
  display: block;
  width: 72px;
  height: 72px;
  color: currentColor;
  overflow: visible;
}

.brand-mark-ring,
.brand-mark-hairline,
.brand-mark-line,
.brand-mark-accent {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark-ring {
  opacity: 0.48;
  stroke-width: 1.35;
}

.brand-mark-hairline {
  opacity: 0.2;
  stroke-width: 0.55;
}

.brand-mark-line {
  stroke-width: 3.25;
}

.brand-mark-accent {
  color: var(--clay);
  opacity: 0.7;
  stroke-width: 0.95;
}

.eyebrow,
.role,
.footer-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 1080px;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 154px clamp(20px, 6vw, 88px) 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.hero-media {
  position: absolute;
  inset: 0 auto 340px 0;
  width: 65.5%;
  background-position: center;
  background-size: cover;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  margin-top: 0;
  text-align: center;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.section-copy h2,
.image-band-card h2,
.split-cta h2,
.contact-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  margin: 14px auto 18px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  text-transform: uppercase;
}

.script-word,
.script-note {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  line-height: 0.95;
}

.script-word {
  color: rgba(41, 48, 45, 0.72);
  font-size: clamp(66px, 8.6vw, 112px);
  white-space: nowrap;
}

.location {
  margin-top: 6px;
}

.hero-collage {
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -2px;
  display: block;
  z-index: 2;
}

.hero-collage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
}

.quote-band {
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 28px 22px;
  background: var(--paper);
  text-align: center;
}

.quote-band p {
  width: min(850px, 100%);
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.button,
.button-light,
.button-ghost {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--clay);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.section-grid,
.services-preview,
.team-preview,
.services-list,
.detail-panel,
.pricing-grid,
.resource-grid,
.info-columns,
.contact-layout,
.post-list,
.blog-single {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.section-copy h2,
.section-heading h2,
.image-band-card h2,
.split-cta h2,
.contact-strip h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.section-body p:first-child {
  margin-top: 0;
}

.image-band {
  min-height: 620px;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 78px clamp(20px, 6vw, 90px);
}

.image-band-card {
  width: min(600px, 100%);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(251, 248, 241, 0.92);
  box-shadow: var(--shadow);
}

.services-preview,
.team-preview {
  padding: 96px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

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

.service-card,
.clinician-card,
.resource-card,
.price-card,
.info-columns article,
.post-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.clinician-card,
.resource-card,
.price-card,
.info-columns article,
.post-card {
  padding: 26px;
}

.service-card h3,
.clinician-card h3,
.clinician-card h2,
.resource-card h2,
.price-card h2,
.info-columns h2,
.post-card h2,
.blog-single h1,
.contact-details h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.14;
}

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

.clinician-grid.full {
  padding: 86px 0;
}

.clinician-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 22px;
}

.about-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 132px 0 112px;
}

.about-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-detail-copy {
  padding-top: 18px;
}

.about-detail-copy h2 {
  margin: 0 0 34px;
  font-family: var(--font-display-tr);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.98;
}

.about-detail-copy p:not(.role) {
  margin: 0 0 24px;
  font-family: var(--font-sans-tr);
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 300;
  line-height: 1.85;
}

.role {
  color: var(--bluegrey);
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  min-height: 560px;
  background: var(--sage-dark);
  color: #fff;
}

.split-cta-image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.split-cta-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 76px);
}

.split-cta .button-ghost {
  border-color: #fff;
  color: #fff;
}

.contact-strip {
  width: min(var(--max), calc(100% - 40px));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: 96px auto;
  padding: clamp(30px, 5vw, 62px);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 39, 36, 0.58);
}

.contact-strip > * {
  position: relative;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 88px) 70px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 32, 30, 0.72), rgba(26, 32, 30, 0.18));
}

.page-hero > div {
  position: relative;
  width: min(860px, 100%);
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 82px);
}

.squarespace-service-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 36px;
  min-height: 720px;
  padding: 142px max(7vw, 40px) 0;
  background: var(--paper);
}

.service-intro-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
}

.service-intro-copy h1 {
  display: inline-block;
  margin: 0 0 26px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
}

.service-intro-copy p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.9;
}

.squarespace-service-intro img {
  width: 100%;
  align-self: end;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: center;
}

.blog-hero {
  background: var(--sage-dark);
}

.blog-index {
  min-height: 720px;
  padding: 176px max(6vw, 28px) 118px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(247, 243, 236, 0.96)),
    var(--paper);
}

.blog-index-heading {
  width: min(980px, 100%);
  margin: 0 auto 78px;
}

.blog-index-heading h1 {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin: 0 0 42px;
  color: #292624;
  font-family: var(--font-display-tr);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 300;
  line-height: 0.98;
}

.blog-index-heading h1 span {
  flex: 1 1 180px;
  height: 1px;
  min-width: 90px;
  background: rgba(41, 38, 36, 0.58);
}

.blog-index-heading p {
  width: min(620px, 100%);
  margin: 0;
  color: #514c48;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.85;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 6vw, 88px);
  row-gap: clamp(54px, 7vw, 86px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.blog-index-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 0 42px;
}

.blog-index-media {
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
  background: #eee7dc;
  text-decoration: none;
}

.blog-index-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 420ms ease;
}

.blog-index-card:hover .blog-index-media img {
  transform: scale(1.025);
}

.blog-index-number {
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.blog-index-card h2 {
  margin: 0 0 22px;
  font-family: var(--font-display-tr);
  font-size: clamp(32px, 2.6vw, 44px);
  font-weight: 300;
  line-height: 1.08;
}

.blog-index-card h2 a {
  text-decoration: none;
}

.blog-index-card p:not(.blog-index-number) {
  margin: 0;
  color: #514c48;
  font-size: 18px;
  line-height: 1.8;
}

.blog-index-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.blog-pagination {
  width: min(980px, 100%);
  margin: 42px auto 0;
  color: #514c48;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.blog-pagination a,
.blog-pagination span {
  text-decoration: none;
}

.blog-empty {
  width: min(980px, 100%);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .blog-index {
    padding-right: 24px;
    padding-left: 24px;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .blog-index-heading,
  .blog-pagination,
  .blog-empty {
    width: min(680px, 100%);
  }
}

@media (max-width: 640px) {
  .blog-index {
    padding: 122px 18px 82px;
  }

  .blog-index-heading {
    margin-bottom: 48px;
  }

  .blog-index-heading h1 {
    gap: 16px;
    margin-bottom: 28px;
    font-size: 50px;
  }

  .blog-index-heading h1 span {
    flex-basis: 64px;
    min-width: 0;
  }

  .blog-index-heading p {
    font-size: 17px;
    line-height: 1.75;
  }

  .blog-index-card {
    padding: 28px 0 34px;
  }

  .blog-index-card h2 {
    font-size: 34px;
  }
}

.services-list {
  padding: 86px 0;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.squarespace-services {
  padding-top: 0;
}

.squarespace-services .service-row:first-child {
  padding-top: 72px;
}

.service-row img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.detail-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 86px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--sage);
  color: #fff;
}

.pricing-grid,
.resource-grid,
.info-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 86px 0;
}

.price-card.featured {
  background: var(--ink);
  color: #fff;
}

.price {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 38px;
}

.resource-card ul {
  margin: 0;
  padding-left: 18px;
}

.resource-card li + li {
  margin-top: 10px;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  width: min(1040px, calc(100% - 40px));
  padding: 86px 0;
}

.contact-layout::before {
  content: "";
  position: absolute;
  top: 44px;
  right: -36px;
  bottom: 44px;
  z-index: 0;
  width: min(580px, 54%);
  background:
    radial-gradient(circle at 78% 18%, rgba(104, 123, 102, 0.14), rgba(104, 123, 102, 0) 34%),
    linear-gradient(135deg, rgba(169, 103, 80, 0.09), rgba(169, 103, 80, 0) 42%),
    repeating-linear-gradient(0deg, rgba(41, 38, 36, 0.035) 0 1px, transparent 1px 76px),
    #f7f3ec;
  border: 1px solid rgba(41, 38, 36, 0.08);
  box-shadow: 0 28px 90px rgba(41, 38, 36, 0.08);
  pointer-events: none;
}

.contact-details,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  justify-self: end;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 236, 0.9)),
    var(--paper-soft);
  border: 1px solid rgba(41, 38, 36, 0.14);
  box-shadow: 0 22px 70px rgba(41, 38, 36, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px 13px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 118px;
}

.form-notice {
  margin: 0;
  padding: 12px 14px;
}

.form-notice.success {
  background: rgba(104, 123, 102, 0.16);
}

.form-notice.error {
  background: rgba(169, 103, 80, 0.16);
}

.post-list {
  display: grid;
  gap: 18px;
  padding: 86px 0;
}

.post-card h2 a {
  text-decoration: none;
}

.blog-single {
  max-width: 960px;
  padding: 150px 0 86px;
}

.blog-single header {
  max-width: 820px;
  margin-bottom: 46px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(41, 38, 36, 0.14);
}

.blog-single h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.blog-single-media {
  width: min(820px, 100%);
  margin: 0 auto 52px;
}

.blog-single-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.entry-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.88;
}

.entry-content p {
  margin: 0 0 24px;
}

.entry-content h2 {
  margin: 54px 0 18px;
  font-family: var(--font-display-tr);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.08;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 54px clamp(20px, 5vw, 70px) 26px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 30px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-contact,
.footer-social {
  display: grid;
  gap: 8px;
}

.footer-inner a {
  text-decoration: none;
}

.copyright {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

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

  .primary-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    background: var(--paper-soft);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    display: grid;
    gap: 10px;
  }

  .intro-section,
  .service-cards,
  .clinician-grid,
  .about-detail,
  .split-cta,
  .pricing-grid,
  .resource-grid,
  .info-columns,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .wc-media-gallery {
    padding: 92px 24px 98px;
  }

  .wc-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

  .about-detail {
    width: min(720px, calc(100% - 40px));
    padding: 72px 0 86px;
  }

  .squarespace-service-intro {
    grid-template-columns: 1fr;
    padding: 120px 20px 0;
  }

  .service-intro-copy {
    margin: 0 auto;
  }

  .hero {
    min-height: 940px;
  }

  .hero-media {
    width: 100%;
    right: 0;
    bottom: 260px;
  }

  .hero-collage {
    left: 20px;
    right: 20px;
  }
}

.services-index .service-row {
  position: relative;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(58px, 7vw, 104px) 0;
}

.services-index .service-row-media {
  position: relative;
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.services-index .service-row-media::before {
  content: "";
  position: absolute;
  left: -7%;
  bottom: -6%;
  z-index: 0;
  width: 74%;
  height: 76%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.58), rgba(255, 253, 248, 0)),
    #ece5da;
}

.services-index .service-row-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 80px rgba(41, 38, 36, 0.08);
}

.services-index .service-row:nth-child(even) .service-row-media {
  order: 2;
}

.services-index .service-row:nth-child(even) > div {
  order: 1;
}

.services-index .service-row h2 {
  margin-bottom: 22px;
  font-family: var(--font-display-tr);
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 300;
  line-height: 0.98;
}

.services-index .service-row h2 a {
  color: inherit;
  text-decoration: none;
}

.services-index .service-row h2 a:hover,
.service-related-card:hover strong {
  color: var(--clay);
}

.service-detail {
  overflow: hidden;
  background: var(--paper);
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(380px, 0.92fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(142px, 12vw, 190px) 0 clamp(78px, 8vw, 118px);
}

.service-detail-copy {
  max-width: 660px;
}

.service-detail-copy h1 {
  margin: 0 0 34px;
  font-family: var(--font-display-tr);
  font-size: clamp(54px, 6vw, 104px);
  font-weight: 300;
  line-height: 0.94;
}

.service-detail-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.12vw, 21px);
  line-height: 1.82;
}

.service-detail-media {
  position: relative;
  margin: 0;
}

.service-detail-media::before {
  content: "";
  position: absolute;
  left: -11%;
  bottom: -9%;
  width: 72%;
  height: 76%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.62), rgba(255, 253, 248, 0)),
    #e9dfd4;
}

.service-detail-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(41, 38, 36, 0.1);
}

.service-detail-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(380px, 1fr);
  gap: clamp(36px, 7vw, 120px);
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 clamp(86px, 9vw, 132px);
}

.service-detail-focus,
.service-detail-process {
  border-top: 1px solid rgba(41, 38, 36, 0.2);
  padding-top: 34px;
}

.service-detail-focus h2,
.service-detail-process h2,
.service-detail-cta h2,
.service-related h2 {
  margin: 18px 0 28px;
  font-family: var(--font-display-tr);
  font-size: clamp(36px, 3.1vw, 58px);
  font-weight: 300;
  line-height: 1.02;
}

.service-detail-focus ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-focus li {
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
}

.service-detail-focus li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--clay);
}

.service-detail-process p:not(.section-number):not(.eyebrow),
.service-detail-cta p:not(.eyebrow) {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.82;
}

.service-detail-note {
  margin-top: 42px;
  padding: 24px 26px;
  border-left: 2px solid var(--clay);
  background: rgba(255, 253, 248, 0.72);
}

.service-detail-note p {
  margin: 0;
}

.service-detail-cta {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto clamp(84px, 8vw, 124px);
  padding: clamp(30px, 4vw, 56px);
  background: var(--sage-dark);
  color: #fff;
}

.service-related {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 clamp(92px, 10vw, 150px);
}

.service-related-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

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

.service-related-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  color: inherit;
  text-decoration: none;
}

.service-related-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-related-card span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-related-card strong {
  font-family: var(--font-display-tr);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 300;
  line-height: 1.02;
  transition: color 180ms ease;
}

@media (max-width: 900px) {
  .services-index .service-row,
  .service-detail-hero,
  .service-detail-body,
  .service-detail-cta,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .services-index .service-row:nth-child(even) .service-row-media,
  .services-index .service-row:nth-child(even) > div {
    order: initial;
  }

  .service-detail-hero,
  .service-detail-body,
  .service-detail-cta,
  .service-related {
    width: min(720px, calc(100% - 40px));
  }

  .service-detail-cta {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .services-index .service-row {
    padding: 54px 0;
  }

  .services-index .service-row h2,
  .service-detail-copy h1 {
    font-size: 42px;
  }

  .service-detail-hero {
    padding-top: 116px;
  }

  .service-detail-body,
  .service-related {
    width: calc(100% - 36px);
  }

  .service-detail-cta {
    width: calc(100% - 36px);
    padding: 26px 22px;
  }

  .service-related-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .hero {
    min-height: 820px;
    padding: 104px 20px 0;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .script-word {
    font-size: clamp(54px, 18vw, 92px);
  }

  .quote-band p {
    font-size: 14px;
  }

  .wc-media-gallery {
    padding: 74px 18px 82px;
  }

  .wc-media-heading {
    margin-bottom: 38px;
  }

  .wc-media-heading h2 {
    gap: 18px;
    font-size: 38px;
  }

  .wc-media-heading h2 span {
    flex-basis: 64px;
    min-width: 0;
  }

  .wc-media-heading p {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .wc-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wc-media-title {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 10px;
  }

  .wc-media-follow {
    margin-top: 38px;
  }

  .section-heading,
  .detail-panel,
  .contact-strip {
    display: grid;
  }

  .image-band {
    min-height: 520px;
    padding: 40px 20px;
  }

  .clinician-card,
  .service-card div,
  .resource-card,
  .price-card,
  .info-columns article,
  .post-card {
    padding: 22px;
  }
}

/* Squarespace-faithful desktop layout */
body {
  background: #fff;
  color: #292624;
  font-family: var(--font-sans);
  font-weight: 300;
}

.site-header {
  height: 92px;
  padding: 0 4vw;
  background: transparent;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
}

.brand {
  width: 72px;
  height: 72px;
  min-width: 72px;
}

.primary-nav .menu {
  gap: clamp(18px, 1.8vw, 34px);
}

.primary-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2.2;
}

.wc-kicker,
.wc-number,
.wc-footer-address {
  font-family: var(--font-sans-tr);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.wc-hero {
  position: relative;
  min-height: calc(715px + 40.2vw);
  overflow: hidden;
  background: #fff;
}

.wc-hero-bg {
  --hero-bg-zoom: 0px;
  --hero-bg-y: 0px;
  --hero-bg-brightness: 1;
  --hero-bg-contrast: 1;
  --hero-bg-saturate: 1;
  --hero-bg-shade: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 62%;
  height: 100%;
  background-position: center calc(0px + var(--hero-bg-y));
  background-repeat: no-repeat;
  background-size: auto calc(100% + var(--hero-bg-zoom));
  filter: brightness(var(--hero-bg-brightness)) contrast(var(--hero-bg-contrast)) saturate(var(--hero-bg-saturate));
  opacity: 1;
}

.wc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 38, 36, var(--hero-bg-shade));
  pointer-events: none;
}

.wc-hero-title {
  position: relative;
  z-index: 2;
  width: min(930px, 44.7vw);
  margin: 0 auto;
  padding-top: 246px;
  text-align: center;
}

.wc-welcome {
  width: 100%;
  margin: 0 auto 40px;
}

.wc-title-image {
  width: 100%;
  margin: 34px auto 30px;
}

.wc-title-text {
  margin: 10px auto 30px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.1vw, 112px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.wc-kicker {
  margin: 0;
}

.wc-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
}

.wc-instagram-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.wc-instagram-link:hover {
  opacity: 0.72;
}

.wc-instagram-icon {
  width: 21px;
  height: 21px;
}

.wc-instagram-icon rect,
.wc-instagram-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.wc-instagram-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

.wc-location-divider {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: currentColor;
}

@media (min-width: 1440px) {
  .wc-hero-title {
    width: min(744px, 35.8vw);
    padding-top: 220px;
  }

  .wc-welcome {
    margin-bottom: 32px;
  }

  .wc-title-text {
    margin: 8px auto 24px;
    font-size: clamp(44px, 4.1vw, 90px);
  }

  .wc-location {
    gap: 14px;
    font-size: 12px;
  }

  .wc-instagram-icon {
    width: 18px;
    height: 18px;
  }
}

.wc-reels {
  position: relative;
  z-index: 6;
  width: 100%;
  margin-top: 72px;
  padding: 14px 4vw 12px;
  position: absolute;
  border: 0;
  background: transparent;
}

.wc-reels-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  overflow: hidden;
}

.wc-reels-track {
  display: flex;
  flex: 0 1 auto;
  gap: 20px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.wc-reels-track::-webkit-scrollbar {
  display: none;
}

.wc-reel {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 90px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #292624;
  cursor: pointer;
  font: inherit;
}

.wc-reel-ring {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 140deg, #f7f3ec, #b88167, #687b66, #d8cfc2, #f7f3ec);
  box-shadow: 0 12px 28px rgba(41, 38, 36, 0.14);
}

.wc-reel-ring img {
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.wc-reel-play {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 19px;
  height: 19px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #292624;
}

.wc-reel-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  transform: translate(-40%, -50%);
}

.wc-reel-label {
  max-width: 100%;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-reel-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 86px 20px 32px;
  background: rgba(41, 38, 36, 0.78);
  backdrop-filter: blur(14px);
}

.wc-reel-modal[aria-hidden="true"] {
  display: none;
}

.wc-reel-modal-frame {
  width: min(420px, 92vw);
  max-height: calc(100vh - 128px);
  aspect-ratio: 9 / 16;
  overflow-y: auto;
  border: 1px solid rgba(247, 243, 236, 0.32);
  background: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.wc-reel-modal-frame::-webkit-scrollbar {
  display: none;
}

.wc-reel-modal-frame:active {
  cursor: grabbing;
}

.wc-reel-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #111;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.wc-reel-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wc-reel-modal-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.wc-reel-modal-close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(247, 243, 236, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

body.reel-modal-open {
  overflow: hidden;
}

.wc-media-gallery {
  padding: 118px clamp(24px, 7vw, 112px) 124px;
  overflow: hidden;
  background: #fff;
  color: #292624;
}

.wc-media-heading {
  width: min(1640px, 100%);
  margin: 0 auto 66px;
  text-align: left;
}

.wc-media-heading p {
  margin: 0 0 44px;
  font-family: var(--font-sans-tr);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wc-media-heading h2 {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 72px);
  margin: 0;
  font-family: var(--font-display-tr);
  font-size: clamp(42px, 3.1vw, 62px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.wc-media-heading h2 span {
  flex: 0 1 min(520px, 40vw);
  height: 1px;
  background: rgba(41, 38, 36, 0.72);
}

.wc-media-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 20px);
  width: min(1640px, 100%);
  margin: 0 auto;
}

.wc-media-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f4eee4;
  color: #fff;
  cursor: pointer;
  font: inherit;
  aspect-ratio: 9 / 16;
}

.wc-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.wc-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 253, 248, 0.28), rgba(255, 253, 248, 0) 34%),
    linear-gradient(180deg, rgba(247, 243, 236, 0.3) 0%, rgba(236, 229, 215, 0.42) 50%, rgba(41, 38, 36, 0.28) 100%);
  backdrop-filter: blur(0.25px) saturate(0.9);
  pointer-events: none;
}

.wc-media-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, rgba(41, 38, 36, 0), rgba(41, 38, 36, 0.72));
  pointer-events: none;
}

.wc-media-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.wc-media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(54px, 4.4vw, 84px);
  height: clamp(54px, 4.4vw, 84px);
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  transform: translate(-50%, -50%);
}

.wc-media-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 7%;
  border-top: clamp(12px, 1vw, 17px) solid transparent;
  border-bottom: clamp(12px, 1vw, 17px) solid transparent;
  border-left: clamp(18px, 1.5vw, 26px) solid #111;
}

.wc-media-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  overflow: hidden;
  font-family: var(--font-sans-tr);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-media-follow {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin: 54px auto 0;
  font-family: var(--font-sans-tr);
  text-align: center;
}

.wc-media-follow p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 300;
  line-height: 1.6;
}

.wc-media-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-sans-tr);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: none;
}

.wc-specialties {
  position: relative;
  overflow: hidden;
  padding: 124px clamp(24px, 7vw, 112px) 132px;
  background:
    linear-gradient(135deg, rgba(169, 103, 80, 0.18), rgba(169, 103, 80, 0) 34%),
    linear-gradient(90deg, #292624 0%, #34423b 100%);
  color: #fffdf8;
}

.wc-specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 253, 248, 0.065) 1px, transparent 1px);
  background-size: 100% 84px;
  pointer-events: none;
}

.wc-specialties-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(42px, 6vw, 100px);
  width: min(1640px, 100%);
  margin: 0 auto;
}

.wc-specialties-copy h2 {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  margin: 78px 0 48px;
  font-family: var(--font-display-tr);
  font-size: clamp(44px, 4.3vw, 86px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.wc-specialties-copy h2 span {
  flex: 1 1 120px;
  height: 1px;
  background: rgba(255, 253, 248, 0.72);
}

.wc-specialties-copy p:not(.wc-number) {
  max-width: 560px;
  margin: 0 0 34px;
  font-family: var(--font-sans-tr);
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 300;
  line-height: 1.78;
}

.wc-specialties-link {
  display: inline-flex;
  margin-top: 6px;
  border-bottom: 2px solid currentColor;
  color: #fffdf8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.wc-specialty-card {
  position: relative;
  display: grid;
  min-height: 178px;
  align-content: space-between;
  gap: 26px;
  overflow: hidden;
  padding: clamp(22px, 2.2vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.065);
  color: inherit;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.wc-specialty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), rgba(255, 253, 248, 0.62));
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.wc-specialty-card:hover {
  border-color: rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.12);
  transform: translateY(-4px);
}

.wc-specialty-card:hover::before {
  transform: scaleX(1);
}

.wc-specialty-index,
.wc-specialty-tag {
  font-family: var(--font-sans-tr);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wc-specialty-index {
  color: #d4a28e;
}

.wc-specialty-tag {
  color: rgba(255, 253, 248, 0.64);
}

.wc-specialty-card strong {
  display: block;
  max-width: 420px;
  font-family: var(--font-display-tr);
  font-size: clamp(28px, 2.2vw, 44px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
}

.wc-blog-block {
  padding: 116px clamp(24px, 7vw, 112px) 124px;
  background: #fff6f1;
  color: #292624;
}

.wc-blog-heading {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 58px);
  align-items: end;
  width: min(1640px, 100%);
  margin: 0 auto 58px;
}

.wc-blog-kicker {
  margin: 0 0 26px;
  font-family: var(--font-sans-tr);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wc-blog-heading h2 {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  margin: 0;
  font-family: var(--font-display-tr);
  font-size: clamp(42px, 3.1vw, 62px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.wc-blog-heading h2 span {
  flex: 1 1 min(360px, 30vw);
  height: 1px;
  background: rgba(41, 38, 36, 0.72);
}

.wc-blog-heading .wc-link {
  margin: 0 0 6px;
  white-space: nowrap;
}

.wc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1640px, 100%);
  margin: 0 auto;
}

.wc-blog-card {
  display: grid;
  min-height: 332px;
  align-content: start;
  gap: 22px;
  padding: clamp(26px, 2.4vw, 38px);
  border: 1px solid rgba(41, 38, 36, 0.12);
  background: rgba(255, 253, 248, 0.84);
}

.wc-blog-card h3 {
  margin: 0;
  font-family: var(--font-display-tr);
  font-size: clamp(30px, 2.25vw, 46px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.05;
}

.wc-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.wc-blog-card p {
  margin: 0;
  font-family: var(--font-sans-tr);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.72;
}

.wc-blog-read {
  align-self: end;
  width: max-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: #292624;
  font-family: var(--font-sans-tr);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.wc-hero-card {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-tilt-z: 0deg;
  --hero-move-x: 0px;
  --hero-move-y: 0px;
  position: absolute;
  z-index: 3;
  left: 19.8%;
  right: 19.8%;
  top: 600px;
  bottom: auto;
  aspect-ratio: 1537 / 1023;
  overflow: hidden;
  transform-origin: center;
  transform: perspective(1000px) translate3d(var(--hero-move-x), var(--hero-move-y), 0) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)) rotateZ(var(--hero-tilt-z));
  transition: transform 260ms ease;
  will-change: transform;
}

.wc-hero-card.is-pointer-active {
  transition: transform 70ms linear;
}

.wc-hero-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transition: filter 240ms ease;
}

.wc-hero-card.is-pointer-active img {
  filter: saturate(1.04) contrast(1.02);
  transition: filter 240ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .wc-hero-card,
  .wc-hero-card img {
    transition: none;
  }
}

.wc-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 1090px;
  overflow: hidden;
  background: #fff;
}

.wc-section-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 80%);
}

.wc-section-copy p {
  margin: 0 0 42px;
  font-family: var(--font-sans-tr);
  font-size: clamp(18px, 1vw, 21px);
  line-height: 1.72;
}

.wc-section-copy h2 {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 80px 0 72px;
  font-family: var(--font-display-tr);
  font-size: clamp(34px, 2vw, 42px);
  font-weight: 300;
  line-height: 1;
}

.wc-section-copy h2 span {
  flex: 0 0 min(305px, 55%);
  height: 1px;
  background: currentColor;
}

.wc-number {
  margin: 0;
}

.wc-section-media {
  position: relative;
  min-height: inherit;
}

.wc-bg-image,
.wc-main-image {
  position: absolute;
  display: block;
  object-fit: cover;
}

.wc-about {
  padding-top: 132px;
}

.wc-about .wc-section-copy {
  width: min(560px, 36vw);
  margin: 250px 0 0 11.5vw;
}

.wc-about-media .wc-bg-image {
  right: 0;
  top: 0;
  width: 68%;
  height: 84%;
}

.wc-about-media .wc-main-image {
  left: 3%;
  top: 18%;
  width: 61%;
  height: 69%;
}

.wc-couples {
  grid-template-columns: 1.02fr 1fr;
  background: #fff6f1;
}

.wc-couples-media .wc-bg-image {
  left: -7%;
  top: 0;
  width: 72%;
  height: 100%;
  object-position: left top;
  opacity: 0.74;
  z-index: 0;
}

.wc-couples-media .wc-main-image {
  right: 5%;
  top: 17%;
  width: 76%;
  height: 62%;
  object-position: center center;
  z-index: 1;
}

.wc-couples .wc-section-copy {
  margin: 230px auto 0;
}

.wc-credential-note {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 2px solid var(--clay);
  background: rgba(255, 255, 255, 0.56);
}

.wc-credential-note p {
  margin: 0;
  font-family: var(--font-sans-tr);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.wc-credential-note .wc-credential-kicker {
  margin-bottom: 8px;
  color: var(--clay);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.wc-emdr {
  grid-template-columns: 1.02fr 1fr;
  background: #fff6f1;
}

.wc-emdr-media .wc-bg-image {
  left: 0;
  top: 0;
  width: 63%;
  height: 100%;
}

.wc-emdr-media .wc-main-image {
  right: 6%;
  top: 13%;
  width: 59%;
  height: 70%;
}

.wc-emdr .wc-section-copy {
  margin: 260px auto 0;
}

.wc-link {
  display: inline-flex;
  margin-top: 14px;
  border-bottom: 2px solid currentColor;
  color: #292624;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.wc-clinicians {
  background: #fff;
}

.wc-clinician-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  width: min(1760px, calc(100% - 150px));
  min-height: 1020px;
  margin: 0 auto;
}

.wc-clinician-intro h2 {
  margin: 0 0 62px;
  font-family: var(--font-display-tr);
  font-size: clamp(66px, 5.8vw, 118px);
  font-weight: 300;
  line-height: 0.95;
}

.wc-clinician-intro p {
  max-width: 780px;
  margin: 0 0 48px;
  font-family: var(--font-sans-tr);
  font-weight: 300;
  font-size: clamp(19px, 1.15vw, 24px);
  line-height: 1.9;
}

.wc-clinician-intro img {
  width: 100%;
}

.wc-button {
  display: inline-flex;
  min-width: 240px;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #f7f3ec;
  color: #292624;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.wc-button-slim {
  min-width: 242px;
  min-height: 58px;
  margin-top: 6px;
  border: 1px solid rgba(41, 38, 36, 0.06);
  background: #f4eee4;
  font-size: 14px;
}

.wc-resources {
  min-height: 990px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.wc-resources .wc-section-copy {
  width: min(600px, 80vw);
  padding-top: 180px;
  margin-left: 11.5vw;
}

.wc-resources .wc-section-copy h2 {
  margin-top: 80px;
  margin-bottom: 72px;
}

.wc-resources .wc-section-copy p {
  font-family: var(--font-sans-tr);
  font-size: clamp(18px, 1vw, 21px);
  line-height: 1.72;
}

.wc-resources .wc-button {
  margin-top: 26px;
  background: #fff;
}

.wc-cost {
  min-height: 900px;
  background: #fff;
}

.wc-cost .wc-section-media .wc-main-image {
  left: 23.5%;
  right: auto;
  top: 70px;
  width: min(760px, 74%);
  height: 695px;
}

.wc-cost .wc-section-copy {
  margin: 172px auto 0;
}

.wc-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 0.76fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  min-height: auto;
  padding: clamp(92px, 9vw, 150px) clamp(24px, 8vw, 136px);
  background: linear-gradient(90deg, #fff7f3 0 47%, #f8f4ed 47% 100%);
}

.wc-contact::before {
  content: "";
  position: absolute;
  top: 9%;
  right: clamp(22px, 7vw, 118px);
  bottom: 9%;
  z-index: 0;
  width: min(680px, 45vw);
  background:
    radial-gradient(circle at 78% 16%, rgba(104, 123, 102, 0.15), rgba(104, 123, 102, 0) 34%),
    linear-gradient(135deg, rgba(169, 103, 80, 0.09), rgba(169, 103, 80, 0) 42%),
    repeating-linear-gradient(0deg, rgba(41, 38, 36, 0.035) 0 1px, transparent 1px 82px),
    rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(41, 38, 36, 0.08);
  box-shadow: 0 34px 110px rgba(41, 38, 36, 0.08);
  pointer-events: none;
}

.wc-contact-info {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding: 0;
  background: transparent;
}

.wc-contact-info .wc-number {
  font-size: 14px;
  line-height: 1.2;
}

.wc-contact-info h2 {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(590px, 100%);
  margin: 66px 0 48px;
  font-family: var(--font-display-tr);
  font-size: clamp(34px, 2vw, 42px);
  font-weight: 300;
  line-height: 1;
}

.wc-contact-info h2 span {
  flex: 0 0 min(305px, 55%);
  height: 1px;
  background: currentColor;
}

.wc-contact-info p {
  margin: 0 0 18px;
  font-family: var(--font-sans-tr);
  font-size: clamp(18px, 1vw, 21px);
  line-height: 1.72;
}

.wc-contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  width: min(520px, 100%);
  margin: 28px 0 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(41, 38, 36, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 236, 0.9)),
    rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 80px rgba(41, 38, 36, 0.1);
}

.wc-contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  color: #5d5651;
  font-size: 14px;
  line-height: 1.35;
}

.wc-contact-form label span {
  color: #9a918c;
}

.wc-form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wc-contact-form .form-notice,
.wc-contact-form .wc-form-split,
.wc-contact-form > label:nth-of-type(3) {
  grid-column: 1 / -1;
}

.wc-contact-form .wc-form-split label {
  margin-bottom: 0;
}

.wc-contact-form input,
.wc-contact-form textarea {
  width: 100%;
  border: 1px solid #999;
  background: #fff;
  padding: 11px 13px;
  color: #292624;
  font: inherit;
}

.wc-contact-form input {
  height: 48px;
}

.wc-contact-form textarea {
  min-height: 96px;
}

.wc-contact-form .wc-button {
  min-width: 166px;
  min-height: 52px;
  justify-self: start;
  align-self: end;
}

.wc-footer {
  padding: 96px 5vw 76px;
  background: #fff;
  text-align: center;
}

.wc-follow-script {
  margin: 0 auto 48px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 88px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.wc-follow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 42px);
  align-items: center;
  width: min(1760px, 100%);
  margin: 0 auto 54px;
}

.wc-follow-quote {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0 0 0 clamp(14px, 1.4vw, 24px);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(41, 38, 36, 0.08);
  box-shadow: none;
  color: #292624;
  font-size: clamp(16px, 1.08vw, 22px);
  font-weight: 300;
  line-height: 1.28;
  text-align: left;
}

.wc-follow-quote:nth-child(3) {
  font-size: clamp(17px, 1.14vw, 23px);
}

.wc-follow-quote-soft {
  color: rgba(41, 38, 36, 0.72);
}

.wc-follow-quote p {
  margin: 0;
}

.wc-follow-quote cite {
  display: block;
  margin-top: 26px;
  color: #777;
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
  text-align: center;
}

.wc-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 34px;
}

.wc-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #292624;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.wc-social a:hover,
.wc-social a:focus-visible {
  color: var(--clay);
  border-color: rgba(169, 103, 80, 0.42);
  box-shadow: 0 22px 54px rgba(41, 48, 45, 0.14);
  transform: translateY(-2px);
}

.wc-social a:focus-visible {
  outline: 2px solid rgba(169, 103, 80, 0.68);
  outline-offset: 4px;
}

.wc-social svg {
  width: 27px;
  height: 27px;
}

.wc-social rect,
.wc-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wc-footer-address {
  margin: 0 0 56px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wc-copyright {
  margin: 0;
  color: #777;
  font-size: 16px;
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fffdf8;
  background: linear-gradient(145deg, var(--sage), var(--sage-dark));
  border: 1px solid rgba(255, 253, 248, 0.54);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(41, 48, 45, 0.22);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fffdf8;
  background: linear-gradient(145deg, #6f846d, #405343);
  box-shadow: 0 22px 54px rgba(41, 48, 45, 0.28);
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(169, 103, 80, 0.76);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .wc-section,
  .wc-clinician-intro,
  .wc-contact {
    grid-template-columns: 1fr;
  }

  .wc-section-copy,
  .wc-about .wc-section-copy,
  .wc-couples .wc-section-copy,
  .wc-emdr .wc-section-copy,
  .wc-cost .wc-section-copy {
    width: min(720px, calc(100% - 40px));
    margin: 80px auto;
  }

  .wc-section-media {
    min-height: 620px;
  }

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

  .wc-media-gallery {
    padding: 92px 24px 98px;
  }

  .wc-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

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

  .wc-specialties-copy {
    width: min(760px, 100%);
  }

  .wc-blog-heading {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .wc-blog-heading .wc-link {
    grid-column: 2;
    justify-self: start;
  }

  .wc-blog-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .wc-blog-card {
    min-height: auto;
  }

  .contact-form {
    justify-self: stretch;
  }

  .contact-layout::before {
    inset: auto -18px 42px -18px;
    width: auto;
    height: 58%;
  }

  .wc-contact {
    padding: 86px 24px 94px;
    background:
      linear-gradient(180deg, #fff7f3 0%, #fff7f3 46%, #f8f4ed 46%, #f8f4ed 100%);
  }

  .wc-contact::before {
    top: auto;
    right: 12px;
    bottom: 54px;
    left: 12px;
    width: auto;
    height: 48%;
  }

  .wc-contact-info,
  .wc-contact-form {
    width: min(640px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  body.home .site-main {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  body.home .site-main > * {
    order: 4;
  }

  body.home .site-main > .wc-hero {
    order: 1;
  }

  body.home .site-main > .wc-reels {
    order: 3;
  }

  .wc-footer {
    padding: 84px 18px 72px;
  }

  .wc-follow-script {
    margin-bottom: 28px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .wc-follow-grid {
    display: grid;
    grid-auto-columns: minmax(260px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 18px;
    width: calc(100% + 36px);
    margin: 0 -18px 32px;
    padding: 0 18px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .wc-follow-grid::-webkit-scrollbar {
    display: none;
  }

  .wc-follow-quote {
    min-height: auto;
    min-width: 0;
    padding: 20px 0 20px 18px;
    font-size: 19px;
    scroll-snap-align: start;
    text-align: left;
  }

  .wc-follow-quote cite {
    margin-top: 18px;
    font-size: 13px;
    text-align: left;
  }

  .wc-social a {
    width: 44px;
    height: 44px;
  }

  .site-header {
    height: 72px;
    padding: 0 26px 0 34px;
    background: transparent;
  }

  body.home .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.86);
  }

  .brand {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    border: 0;
    border-radius: 0;
  }

  .brand,
  .nav-toggle {
    position: relative;
    z-index: 54;
  }

  .nav-toggle span {
    width: 34px;
    height: 2px;
    margin: 0;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span:nth-child(2) {
    display: none;
  }

  .nav-toggle span + span {
    margin-top: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 52;
    display: none;
    padding: 150px 38px 44px 52px;
    overflow-y: auto;
    background: #f7f3ec;
    box-shadow: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    display: grid;
    gap: clamp(22px, 4.2vh, 32px);
  }

  .primary-nav a {
    display: block;
    font-size: clamp(28px, 8.4vw, 38px);
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.18;
    white-space: nowrap;
  }

  .wc-reels {
    position: absolute;
    display: block;
    top: 72px;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 12px 12px 10px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .wc-reels-inner {
    gap: 12px;
  }

  .wc-reel {
    width: 76px;
  }

  .wc-reel-ring {
    width: 58px;
    height: 58px;
  }

  .wc-reel-ring img {
    width: 50px;
    height: 50px;
  }

  .wc-reel-label {
    font-size: 9px;
  }

  .wc-media-gallery {
    padding: 74px 18px 82px;
  }

  .wc-media-heading {
    margin-bottom: 38px;
  }

  .wc-media-heading span {
    width: 156px;
    margin: 20px 0 26px;
  }

  .wc-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wc-media-title {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 10px;
  }

  .wc-media-follow {
    margin-top: 38px;
  }

  .wc-specialties {
    padding: 74px 18px 82px;
  }

  .wc-specialties-inner {
    gap: 38px;
  }

  .wc-specialties-copy {
    width: calc(100% - 28px);
    margin: 0 auto;
  }

  .wc-specialties-copy h2 {
    gap: 16px;
    margin: 42px 0 32px;
    font-size: 40px;
  }

  .wc-specialties-copy h2 span {
    min-width: 0;
  }

  .wc-specialties-copy p:not(.wc-number) {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.72;
  }

  .wc-specialties-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wc-specialty-card {
    min-height: 142px;
    gap: 20px;
    padding: 22px;
  }

  .wc-specialty-card strong {
    font-size: 30px;
  }

  .wc-blog-block {
    padding: 74px 18px 82px;
  }

  .wc-blog-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .wc-blog-kicker {
    margin-bottom: 24px;
  }

  .wc-blog-heading h2 {
    gap: 18px;
    font-size: 38px;
  }

  .wc-blog-heading h2 span {
    flex-basis: 64px;
    min-width: 0;
  }

  .wc-blog-heading .wc-link {
    grid-column: auto;
    margin: 0;
  }

  .wc-blog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wc-blog-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-layout {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .contact-layout::before {
    right: -10px;
    bottom: 34px;
    left: -10px;
    height: 52%;
  }

  .contact-form {
    padding: 22px;
  }

  .wc-contact {
    padding: 70px 18px 82px;
  }

  .wc-contact::before {
    right: 8px;
    bottom: 40px;
    left: 8px;
    height: 50%;
  }

  .wc-contact-info h2 {
    gap: 14px;
    margin: 42px 0 34px;
    font-size: 38px;
  }

  .wc-contact-info h2 span {
    flex: 1 1 70px;
    min-width: 0;
  }

  .wc-contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .wc-contact-form .form-notice,
  .wc-contact-form .wc-form-split,
  .wc-contact-form > label:nth-of-type(3) {
    grid-column: auto;
  }

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }

  .wc-form-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wc-hero {
    min-height: calc(526px + 62.6vw);
  }

  .wc-hero-bg {
    right: 0;
    width: 100%;
    background-position: center top;
  }

  .wc-hero-title {
    width: min(650px, 92vw);
    padding-top: 200px;
  }

  .wc-welcome {
    margin-bottom: 34px;
  }

  .wc-title-image,
  .wc-title-text {
    margin: 12px auto 28px;
  }

  .wc-title-text {
    font-size: clamp(34px, 10vw, 52px);
  }

  .wc-location {
    font-size: 12px;
    gap: 12px;
  }

  .wc-instagram-icon {
    width: 18px;
    height: 18px;
  }

  .wc-hero-card {
    left: 6%;
    right: 0;
    top: 466px;
  }

  .wc-about {
    display: block;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .wc-about .wc-section-copy {
    width: calc(100% - 64px);
    margin: 60px auto 92px;
  }

  .wc-about .wc-number {
    margin: 0 0 42px;
    font-size: 14px;
    line-height: 1.2;
  }

  .wc-about .wc-section-copy h2 {
    gap: 14px;
    margin: 0 0 48px;
    font-size: 42px;
    line-height: 1.06;
  }

  .wc-about .wc-section-copy h2 span {
    flex: 1 1 54px;
    min-width: 0;
  }

  .wc-about .wc-section-copy p:not(.wc-number) {
    margin: 0 0 28px;
    font-family: var(--font-sans-tr);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
  }

  .wc-about .wc-section-media {
    display: none;
  }

  .wc-couples {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background: #fff6f1;
  }

  .wc-couples .wc-section-media {
    min-height: 360px;
    order: 1;
  }

  .wc-couples .wc-section-copy {
    order: 2;
    width: calc(100% - 64px);
    margin: 52px auto 76px;
  }

  .wc-couples-media .wc-bg-image {
    left: -20%;
    top: 0;
    width: 96%;
    height: 100%;
    object-position: left top;
  }

  .wc-couples-media .wc-main-image {
    left: 8%;
    right: auto;
    top: 46px;
    width: 84%;
    height: 260px;
  }

  .wc-couples .wc-section-copy h2 {
    gap: 14px;
    margin: 0 0 38px;
    font-size: 42px;
    line-height: 1.06;
  }

  .wc-couples .wc-section-copy h2 span {
    flex: 1 1 54px;
    min-width: 0;
  }

  .wc-couples .wc-section-copy p:not(.wc-number) {
    margin: 0 0 24px;
    font-family: var(--font-sans-tr);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
  }

  .wc-credential-note {
    margin-top: 30px;
    padding: 18px 20px;
  }

  .wc-couples .wc-section-copy .wc-credential-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .wc-couples .wc-section-copy .wc-credential-note .wc-credential-kicker {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.3;
  }
}


/* MERVE PEKER CONTACT MAIL LINKS */
.contact-email a,
.wc-contact-email a,
.wc-footer-address a {
  color: inherit;
  text-decoration: none;
}

.contact-email a:hover,
.wc-contact-email a:hover,
.wc-footer-address a:hover {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}


/* MERVE PEKER THANKS PAGE */
.thanks-page {
  display: grid;
  min-height: 720px;
  place-items: center;
  padding: 160px 20px 100px;
  background:
    radial-gradient(circle at 20% 18%, rgba(104, 123, 102, 0.14), rgba(104, 123, 102, 0) 34%),
    linear-gradient(135deg, rgba(169, 103, 80, 0.09), rgba(169, 103, 80, 0) 42%),
    var(--paper);
}

.thanks-card {
  width: min(820px, 100%);
  padding: clamp(42px, 6vw, 78px);
  text-align: center;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(41, 38, 36, 0.12);
  box-shadow: 0 28px 90px rgba(41, 38, 36, 0.08);
}

.thanks-card h1 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 74px);
}

.thanks-card p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  line-height: 1.9;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
