@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
}
:root {
  --paper: #f6f4ed;
  --white: #fffefa;
  --ink: #243d34;
  --green: #203e35;
  --green-light: #dae2c5;
  --plum: #51415c;
  --lilac: #e9e1e9;
  --navy: #102d4b;
  --blue: #e5edf1;
  --line: rgba(36, 61, 52, 0.2);
  --muted: #617069;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.25, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: #d3ddb4;
  color: var(--green);
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(4rem, 6.8vw, 7.1rem);
}
h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.75rem);
}
h3 {
  font-size: 2rem;
}
em {
  font-weight: 400;
}
p + p {
  margin-top: 1.2rem;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #ba8b38;
  outline-offset: 5px;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 110px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 25px;
}
.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 560px;
}
.large-copy {
  font-size: 2rem;
  font-family: var(--serif);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.small-note {
  font-size: 0.875rem;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  background: var(--green);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 237, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-container {
  width: min(1440px, calc(100% - 80px));
  min-height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wordmark {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 2.3rem;
  letter-spacing: -0.065em;
  line-height: 0.95;
  display: inline-block;
  flex-shrink: 0;
}
.wordmark i {
  font-size: 0.73em;
  font-weight: 400;
  margin-inline: 2px;
}
.wordmark > span {
  display: block;
  font-family: var(--sans);
  font-size: 0.59rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  margin-top: 12px;
  margin-left: 3px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-header nav > a:not(.button) {
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding: 12px 0;
}
.site-header nav > a:not(.button):after {
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.site-header nav > a:hover:after,
.site-header nav > a[aria-current]:after {
  transform: scaleX(1);
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  line-height: 1.4;
  transition:
    transform 0.35s var(--ease),
    background 0.35s,
    box-shadow 0.35s;
}
.button span {
  font-size: 1.15rem;
}
.button-primary {
  background: var(--green);
  color: var(--white);
}
.button-primary:hover {
  background: #315547;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-navy {
  background: var(--navy);
  color: white;
}
.button-outline {
  background: transparent;
  border-color: var(--line);
}
.button-small {
  min-height: 46px;
  font-size: 0.84rem;
  padding: 12px 18px;
  gap: 16px;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px #172d3410;
}
.button:disabled {
  transform: none;
  box-shadow: none;
  opacity: 0.55;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 48px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  border-bottom: 1px solid currentColor;
  width: fit-content;
  padding-block: 9px;
  transition: gap 0.3s;
}
.text-link:hover {
  gap: 42px;
}
.text-button {
  border: none;
  background: none;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding: 12px 0;
  min-height: 44px;
  font-size: 0.9rem;
}
.menu-toggle {
  display: none;
}
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(790px, calc(100svh - 100px));
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: 80px 40px 38px max(56px, calc((100vw - 1280px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-copy .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  margin-bottom: 38px;
}
.hero-copy h1 {
  font-size: clamp(4.4rem, 7.7vw, 8.3rem);
  line-height: 0.98;
  letter-spacing: -0.047em;
}
.hero-copy h1 em {
  color: #69795c;
}
.hero-intro {
  font-size: 1.03rem;
  line-height: 1.75;
  margin-top: 32px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-footnote {
  font-size: 0.75rem;
  margin-top: 80px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.hero-landscape {
  position: relative;
  overflow: hidden;
  background: #b4c4bf;
}
.hero-landscape > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: landscape-enter 1.8s var(--ease) both;
}
.hero-landscape:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(12, 33, 28, 0.6));
  pointer-events: none;
}
.landscape-caption {
  position: absolute;
  z-index: 1;
  bottom: 36px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fffdf6;
}
.landscape-caption > span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
}
.landscape-caption > a {
  border: 1px solid #ffffff70;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.intro-line {
  padding-block: 85px;
  display: flex;
  align-items: center;
  gap: 45px;
}
.intro-line > p {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-family: var(--serif);
  line-height: 1.4;
}
.intro-line .fine-rule {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.intro-line .eyebrow {
  margin: 0;
  font-size: 0.66rem;
  max-width: 140px;
}
.pathways {
  padding-top: 25px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 400px;
  font-size: 1rem;
  color: var(--muted);
}
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pathway {
  padding: 36px 44px;
  text-decoration: none;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  transition:
    transform 0.5s var(--ease),
    filter 0.5s;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.pathway-green {
  background: var(--green);
  color: var(--paper);
}
.pathway-plum {
  background: var(--lilac);
  color: var(--plum);
}
.pathway-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pathway-top .eyebrow {
  margin: 0;
  font-size: 0.68rem;
}
.round-arrow {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  display: grid;
  place-items: center;
  transition: transform 0.4s;
}
.pathway h3 {
  font-size: clamp(3.1rem, 4.6vw, 5rem);
  margin-bottom: 25px;
}
.pathway-kicker {
  font-size: 0.84rem;
  margin-bottom: 14px;
  opacity: 0.8;
}
.pathway h3 + p {
  font-size: 0.94rem;
  opacity: 0.9;
}
.pathway-link {
  border-top: 1px solid #ffffff42;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 500;
}
.pathway-plum .pathway-link {
  border-color: #51415c42;
}
.pathway:hover {
  transform: translateY(-7px);
  filter: brightness(1.055);
}
.pathway:hover .round-arrow {
  transform: rotate(45deg);
}
.home-about {
  background: #eceee4;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}
.portrait-window {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ddd9d7;
  width: 100%;
  max-width: 530px;
  isolation: isolate;
}
.portrait-window > img {
  position: absolute;
  width: 200%;
  max-width: none;
  height: auto;
  left: -100%;
  top: -38%;
  mix-blend-mode: multiply;
}
.portrait-window:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 70px #4f534911;
  pointer-events: none;
}
.editorial-copy > h2 {
  margin-bottom: 30px;
}
.editorial-copy > p:not(.eyebrow) {
  color: #526157;
  font-size: 1.02rem;
}
.editorial-copy > .text-link {
  margin-top: 24px;
  margin-right: 25px;
}
.signature {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: #69795c;
  margin-top: 28px;
  transform: rotate(-5deg);
  width: fit-content;
}
.book-feature {
  background: var(--blue);
  padding-block: 85px;
  color: var(--navy);
  overflow: hidden;
}
.book-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.book-feature-copy h2 {
  font-size: clamp(4rem, 6vw, 6.7rem);
  margin-bottom: 27px;
}
.book-feature-copy > p:not(.eyebrow, .large-copy, .release-label) {
  max-width: 430px;
  color: #506577;
}
.book-feature-copy .large-copy {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
.release-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 30px 25px;
}
.release-label:before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
}
.book-feature-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 40px;
  perspective: 1200px;
}
.book-object {
  width: min(310px, 80%);
  position: relative;
  transform: rotate(-6deg) rotateY(-12deg);
  transform-style: preserve-3d;
  box-shadow:
    16px 22px 30px #102d4b28,
    3px 4px 3px #102d4b20;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.book-object:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 4px 0 3px #ffffff55,
    inset 10px 0 9px #071e3930;
  pointer-events: none;
}
.book-object > img {
  width: 100%;
  border-radius: 1px 3px 3px 1px;
}
.stage-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 42px;
  text-align: center;
}
.quote-section {
  text-align: center;
  max-width: 960px;
}
.quote-section blockquote {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.quote-attribution {
  font-size: 0.77rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-top: 30px;
}
.contact-section {
  background: var(--green);
  color: var(--paper);
  padding-block: 95px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  align-items: center;
  gap: 70px;
}
.contact-layout h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}
.contact-layout .eyebrow {
  color: #cad2b9;
}
.contact-copy p {
  max-width: 355px;
  color: #d3dace;
}
.contact-copy .button {
  margin-top: 26px;
}
.contact-phone {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  width: fit-content;
}
.site-footer {
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 55px;
  align-items: start;
}
.footer-top > p {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.4;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 0.9rem;
}
.footer-social a {
  text-decoration: none;
  padding: 4px 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
.footer-bottom a {
  text-decoration: none;
}
.page-hero {
  padding-block: 82px 92px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 80px;
}
.page-hero .lead {
  margin-top: 28px;
}
.treatment-hero {
  background: #e8ebde;
}
.treatment-pause {
  border-left: 1px solid #6f806250;
  padding: 42px 0 42px 64px;
}
.treatment-pause > p {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  color: #738166;
  margin-bottom: 32px;
}
.treatment-pause > span:last-child {
  font-size: 0.83rem;
  color: var(--muted);
  display: block;
}
.treatment-pause .eyebrow {
  font-size: 0.7rem;
  display: block;
}
.three-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 55px;
}
.three-notes > article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.three-notes > article > span {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 24px;
}
.three-notes h3 {
  font-size: 1.85rem;
  margin-bottom: 18px;
}
.three-notes p {
  color: var(--muted);
  font-size: 0.97rem;
}
.treatment-list-section {
  background: var(--white);
}
.treatment-item {
  border-top: 1px solid var(--line);
}
.treatment-item:last-child {
  border-bottom: 1px solid var(--line);
}
.treatment-item summary {
  display: grid;
  grid-template-columns: 45px 1fr auto 40px;
  gap: 20px;
  align-items: center;
  padding: 26px 10px 26px 0;
  cursor: pointer;
  list-style: none;
}
.treatment-item summary::-webkit-details-marker {
  display: none;
}
.treatment-number {
  font-size: 0.75rem;
  color: var(--muted);
}
.treatment-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.treatment-meta {
  text-align: right;
  min-width: 100px;
}
.treatment-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  display: block;
  line-height: 1.1;
}
.treatment-duration {
  font-size: 0.76rem;
  color: var(--muted);
}
.expand-symbol {
  font-size: 1.6rem;
  text-align: center;
  transition: transform 0.3s;
}
.treatment-item[open] .expand-symbol {
  transform: rotate(45deg);
}
.treatment-detail {
  padding: 0 60px 30px 65px;
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
}
.treatment-detail > p {
  max-width: 650px;
  color: var(--muted);
}
.treatment-detail .button {
  flex-shrink: 0;
}
.treatment-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--muted);
}
.narrow-heading {
  margin-bottom: 40px;
}
.faq-list {
  max-width: 950px;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  font-size: 1.03rem;
  cursor: pointer;
  padding-right: 18px;
}
.faq-item p {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
}
.care-note {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 760px;
  margin-top: 35px;
}
.coaching-hero {
  background: var(--plum);
  color: #f5edf1;
  padding-block: 75px 55px;
  position: relative;
  overflow: hidden;
}
.coaching-hero > .container {
  position: relative;
}
.coaching-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.coaching-brand {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: 18px;
  border-radius: 50%;
  background: var(--white);
}
.coaching-brand img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.coaching-hero h1 {
  font-size: clamp(4rem, 7.8vw, 8.2rem);
  line-height: 0.98;
  max-width: 1050px;
}
.coaching-hero h1 em {
  color: #d7c8cf;
}
.coaching-hero .eyebrow {
  color: #d7c8cf;
}
.coaching-hero-bottom {
  margin-top: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.coaching-hero-bottom p {
  font-size: 1rem;
  color: #e0d7df;
  line-height: 1.7;
}
.coaching-side-note {
  position: absolute;
  right: 0;
  top: 140px;
  writing-mode: vertical-rl;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  color: #cbbaca;
}
.coaching-intro h2,
.book-editorial h2 {
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  max-width: 1100px;
}
.offset-copy {
  margin-left: 50%;
  padding-left: 40px;
  margin-top: 45px;
  max-width: 640px;
}
.offset-copy > p {
  font-size: 1.05rem;
  color: #526157;
}
.offset-copy > .large-copy {
  font-size: 2rem;
  color: var(--navy);
}
.coaching-reflections {
  background: var(--lilac);
  color: var(--plum);
}
.reflection-rows > div {
  border-top: 1px solid #51415c30;
  padding-block: 34px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
}
.reflection-rows > div > span {
  font-size: 0.8rem;
}
.reflection-rows h3 {
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 1.2;
}
.reflection-note {
  border-top: 1px solid #51415c30;
  padding-top: 30px;
  font-size: 0.9rem;
  max-width: 740px;
}
.coaching-contact {
  background: #e8ebde;
}
.narrow-center {
  text-align: center;
  max-width: 770px;
}
.narrow-center > p:not(.eyebrow) {
  margin-top: 25px;
  margin-inline: auto;
  max-width: 550px;
}
.center-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.book-hero {
  background: var(--blue);
  color: var(--navy);
  padding-block: 72px 80px;
  overflow: hidden;
}
.book-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.product-stage {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(ellipse at center, #ffffff88, transparent 70%);
  perspective: 1300px;
}
.product-stage .book-object {
  width: min(350px, 76%);
}
.product-stage-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 55px;
}
.product-copy h1 {
  font-size: clamp(4rem, 5.5vw, 6.4rem);
  white-space: nowrap;
  margin-bottom: 22px;
}
.book-subtitle {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 24px;
}
.product-description {
  font-size: 1rem;
  max-width: 460px;
  color: #506577;
}
.format-selector {
  border: 0;
  padding: 0;
  margin: 25px 0 0;
}
.format-selector legend {
  font-size: 0.82rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.format-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.format-options label {
  position: relative;
  cursor: pointer;
}
.format-options input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.format-options label span {
  display: block;
  border: 1px solid #102d4b40;
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 0.86rem;
  transition: all 0.2s;
}
.format-options input:checked + span {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.format-options input:focus-visible + span {
  outline: 3px solid #b88834;
  outline-offset: 4px;
}
.format-detail {
  font-size: 0.78rem;
  min-height: 26px;
  margin-block: 15px 16px !important;
  color: #526879;
}
.book-availability {
  font-size: 0.77rem;
  line-height: 1.7;
  max-width: 390px;
  margin-top: 15px !important;
  color: #526879;
}
.book-highlights {
  padding-block: 70px;
  background: #e7eced;
  color: var(--navy);
}
.book-highlights .three-notes {
  margin-top: 0;
}
.book-highlights .three-notes > article > span {
  font-size: 2.4rem;
  font-family: var(--serif);
}
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero .lead {
  font-size: 1.05rem;
  margin-top: 35px;
}
.about-hero .portrait-window {
  max-width: 500px;
}
.story-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}
.story-section aside {
  position: sticky;
  top: 145px;
  align-self: start;
  font-size: 0.86rem;
}
.story-section aside .eyebrow {
  font-size: 0.68rem;
  max-width: 180px;
}
.story-copy {
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 720px;
}
.story-copy > p + p {
  margin-top: 26px;
}
.story-copy > p:first-child {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.landscape-interlude {
  position: relative;
  height: 560px;
  background: var(--green);
  overflow: hidden;
  color: white;
}
.landscape-interlude > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: brightness(0.65);
}
.landscape-interlude > .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.landscape-interlude p {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.13;
}
.simple-links > a {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  border-top: 1px solid var(--line);
  padding-block: 30px;
  align-items: center;
  text-decoration: none;
  gap: 22px;
}
.simple-links > a:last-child {
  border-bottom: 1px solid var(--line);
}
.simple-links > a > span {
  font-size: 0.9rem;
}
.simple-links > a > span:last-child {
  font-size: 1.8rem;
}
.simple-links h3 {
  font-size: 2.6rem;
  transition: transform 0.3s;
}
.simple-links > a:hover h3 {
  transform: translateX(10px);
}
.privacy-page h1 {
  margin-bottom: 60px;
}
.privacy-page .story-copy > p:first-child {
  font-family: var(--sans);
  font-size: 1rem;
}
.privacy-page h2 {
  font-size: 2rem;
  margin-block: 35px 20px;
}
.privacy-page .story-copy {
  font-size: 1rem;
}
.ideas-heading {
  padding-block: 70px 50px;
}
.ideas-heading h1 {
  margin-bottom: 30px;
}
.ideas-heading .lead {
  max-width: 720px;
}
.review-note {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 15px;
  background: #e6e9dc;
  font-size: 0.85rem;
}
.idea-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  gap: 8px;
}
.idea-tabs button {
  min-height: 60px;
  border: 0;
  background: none;
  text-align: left;
  padding: 12px 10px;
  border-bottom: 3px solid transparent;
  font-size: 0.87rem;
}
.idea-tabs button[aria-selected="true"] {
  border-color: var(--green);
  font-weight: 650;
}
.idea-panel {
  padding: 62px;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
  align-items: center;
  transition:
    background 0.45s,
    color 0.45s;
}
.idea-panel[data-theme="carer"] {
  background: #28473a;
  color: #f3f3e8;
}
.idea-panel[data-theme="clarity"] {
  background: #e6dfeb;
  color: #51425e;
}
.idea-panel[data-theme="chapter"] {
  background: #e4d5bf;
  color: #564431;
}
.idea-panel[data-theme="book"] {
  background: #dfebf2;
  color: #15324f;
}
.idea-panel h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  line-height: 1.1;
}
.idea-panel .idea-description {
  font-size: 1rem;
  max-width: 460px;
  margin-top: 25px;
}
.idea-panel aside {
  border-left: 1px solid currentColor;
  padding-left: 35px;
  opacity: 0.85;
}
.idea-panel aside h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.idea-panel aside p {
  font-size: 0.9rem;
}
.idea-panel .idea-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ideas-notes {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.ideas-notes h2 {
  margin-bottom: 25px;
}
.ideas-notes > div > p {
  max-width: 400px;
}
.ideas-notes fieldset {
  padding: 0;
  border: 0;
  margin: 0 0 28px;
}
.ideas-notes legend {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.ideas-notes fieldset label {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  cursor: pointer;
}
.ideas-notes input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--green);
}
.ideas-notes textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px;
  background: var(--white);
  border-radius: 3px;
  resize: vertical;
  margin-top: 10px;
}
.notes-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.status-message {
  font-size: 0.9rem;
  line-height: 1.6;
  min-height: 26px;
  margin-top: 14px;
}
.status-message:empty {
  display: none;
}
.booking-heading {
  padding-block: 65px 40px;
}
.booking-heading h1 {
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  margin-bottom: 24px;
}
.booking-heading > p:last-child {
  color: var(--muted);
}
.booking-section {
  padding-bottom: 70px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.planner-panel,
.slots-panel,
.booking-details {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 5px;
}
.booking-layout h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.booking-layout h3 {
  font-size: 1.5rem;
}
.booking-details {
  grid-column: 1/-1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}
.field input,
.field select,
.field textarea,
.planner-panel select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #88998b;
  background: #fff;
  border-radius: 3px;
  font-size: 1rem;
}
.field textarea {
  resize: vertical;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
  margin-top: 20px;
}
.day-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 9px 0;
}
.calendar-day {
  height: 52px;
  border: 1px solid transparent;
  background: #edf0e6;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s;
}
.calendar-day:hover:not(:disabled) {
  background: #dae3c6;
}
.calendar-day:disabled {
  opacity: 0.44;
  background: transparent;
}
.calendar-day.is-selected,
.slot-button.is-selected {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.calendar-day[aria-pressed="true"] {
  background: var(--green);
  color: white;
}
.month-controls,
.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 25px;
}
.month-controls button,
.calendar-controls button {
  min-height: 44px;
  padding: 8px 14px;
}
.month-controls h3,
.calendar-controls h3 {
  font-size: 1.2rem;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
  max-height: 350px;
  overflow: auto;
  padding: 4px;
}
.slot-button {
  min-height: 47px;
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  font-size: 0.87rem;
}
.slot-button:hover:not(:disabled) {
  background: #dce5d2;
  color: var(--green);
}
.slot-button:disabled {
  opacity: 0.5;
}
.booking-summary {
  padding: 22px;
  background: #e9eddf;
  margin-bottom: 28px;
  border-left: 3px solid #728669;
  font-size: 0.94rem;
}
.booking-summary dl {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
}
.booking-summary dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.booking-summary dd {
  margin: 5px 0 0;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-block: 20px;
}
.form-consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  accent-color: var(--green);
}
.field-error {
  font-size: 0.8rem;
  color: #992f37;
}
.field-error:empty {
  display: none;
}
.empty-state {
  padding: 30px 0;
  color: var(--muted);
}
.booking-policies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  padding-block: 35px 75px;
  border-top: 1px solid var(--line);
}
.booking-policies h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.booking-policies p {
  font-size: 0.88rem;
  color: var(--muted);
}
.booking-layout .button {
  gap: 10px;
}
.booking-layout .status-message[data-kind="error"] {
  color: #992f37;
}
.booking-layout [hidden] {
  display: none !important;
}
.booking-layout .success-panel {
  padding: 30px;
  background: #e5edda;
}
.booking-layout .success-panel h2 {
  margin-bottom: 20px;
}
.booking-layout label {
  font-weight: 500;
}
.booking-layout form > p {
  font-size: 0.9rem;
}
.booking-layout .booking-form {
  max-width: 900px;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes landscape-enter {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero-landscape:hover > img {
    filter: brightness(1.04);
    transition: filter 1s;
  }
  .portrait-window > img {
    transition: filter 0.5s;
  }
  .portrait-window:hover > img {
    filter: brightness(1.035);
  }
}
@media (min-width: 1600px) {
  .home-hero {
    min-height: 830px;
  }
  .hero-copy {
    padding-left: max(80px, calc((100vw - 1280px) / 2));
  }
  .hero-footnote {
    margin-top: 90px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }
  .nav-container {
    width: calc(100% - 56px);
  }
  .site-header nav {
    gap: 20px;
  }
  .wordmark {
    font-size: 2rem;
  }
  .hero-copy {
    padding-left: 36px;
    padding-right: 25px;
  }
  .hero-copy .eyebrow {
    max-width: 260px;
  }
  .hero-copy h1 {
    font-size: 7.6vw;
  }
  .hero-footnote {
    margin-top: 55px;
  }
  .home-hero {
    min-height: 680px;
  }
  .hero-intro br {
    display: none;
  }
  .section-space {
    padding-block: 85px;
  }
  .intro-line {
    padding-block: 65px;
    gap: 25px;
  }
  .pathways {
    padding-top: 20px;
  }
  .pathway {
    padding: 30px;
    min-height: 490px;
  }
  .split-layout {
    gap: 55px;
  }
  .book-feature-grid,
  .book-product-grid {
    gap: 40px;
  }
  .contact-layout {
    gap: 45px;
  }
  .page-hero-grid {
    gap: 40px;
  }
  .treatment-pause {
    padding-left: 40px;
  }
  .about-hero {
    gap: 50px;
  }
  .story-section {
    gap: 50px;
  }
  .idea-panel {
    padding: 45px;
    gap: 40px;
  }
  .ideas-notes {
    gap: 50px;
  }
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-copy h1 {
    font-size: 5.6vw;
  }
  .product-stage {
    min-height: 510px;
  }
  .book-subtitle {
    font-size: 1.65rem;
  }
  .product-copy .eyebrow {
    margin-bottom: 15px;
  }
  .format-options {
    gap: 6px;
  }
  .format-options label span {
    padding: 11px 15px;
  }
}
@media (max-width: 860px) {
  html {
    scroll-padding-top: 90px;
  }
  .nav-container {
    min-height: 82px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: 0;
    padding: 10px 0 10px 16px;
    min-height: 44px;
    font-size: 0.85rem;
    z-index: 55;
  }
  .menu-lines {
    width: 24px;
    height: 14px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transition: transform 0.3s;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    transform: rotate(-45deg);
    height: 1px;
    border-bottom: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 1px;
    background: currentColor;
    transform: rotate(90deg);
    left: 0;
    top: -1px;
  }
  .site-header nav {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 82px);
    background: var(--paper);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 22px;
    overflow: auto;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav > a:not(.button) {
    font-family: var(--serif);
    font-size: 2.6rem;
    padding: 4px 0;
  }
  .site-header nav > .button {
    margin-top: 20px;
  }
  .home-hero {
    min-height: 630px;
  }
  .hero-copy {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .hero-copy h1 {
    font-size: 8vw;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    padding-inline: 18px;
  }
  .hero-footnote {
    margin-top: 38px;
    max-width: 220px;
  }
  .hero-intro {
    font-size: 0.94rem;
  }
  .hero-copy .eyebrow {
    font-size: 0.64rem;
  }
  .landscape-caption {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }
  .landscape-caption > span {
    font-size: 1.3rem;
  }
  .intro-line .eyebrow {
    display: none;
  }
  .pathway {
    min-height: 470px;
    padding: 25px;
  }
  .pathway h3 {
    font-size: 3.5rem;
  }
  .pathway-top .eyebrow {
    font-size: 0.62rem;
  }
  .round-arrow {
    width: 36px;
    height: 36px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 300px;
  }
  .editorial-copy h2 {
    font-size: 2.8rem;
  }
  .editorial-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }
  .split-layout {
    gap: 35px;
  }
  .book-feature {
    padding-block: 65px;
  }
  .book-feature-copy h2 {
    font-size: 4rem;
  }
  .book-feature-stage {
    padding: 20px;
  }
  .book-object {
    width: 85%;
  }
  .contact-layout {
    grid-template-columns: 1.3fr 1fr;
    gap: 35px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > p {
    display: none;
  }
  .footer-bottom {
    font-size: 0.7rem;
  }
  .three-notes {
    gap: 25px;
  }
  .page-hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 25px;
  }
  .page-hero h1 {
    font-size: 4rem;
  }
  .page-hero .lead {
    font-size: 1rem;
  }
  .treatment-pause {
    padding-left: 25px;
  }
  .treatment-detail {
    padding-left: 0;
    gap: 25px;
  }
  .treatment-detail > p {
    font-size: 0.95rem;
  }
  .treatment-name {
    font-size: 1.85rem;
  }
  .offset-copy {
    margin-left: 35%;
    padding-left: 30px;
  }
  .product-stage {
    min-height: 460px;
  }
  .product-copy h1 {
    font-size: 4rem;
  }
  .book-product-grid {
    gap: 25px;
  }
  .book-subtitle {
    font-size: 1.4rem;
  }
  .product-description {
    font-size: 0.93rem;
  }
  .format-options label span {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
  .about-hero {
    gap: 35px;
  }
  .about-hero h1 {
    font-size: 4.5rem;
  }
  .story-section {
    gap: 40px;
    grid-template-columns: 1fr 2fr;
  }
  .story-copy {
    font-size: 1.02rem;
  }
  .story-copy > p:first-child {
    font-size: 1.6rem;
  }
  .ideas-notes {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ideas-notes > div > p {
    max-width: 650px;
  }
  .idea-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .idea-panel aside {
    border-left: 0;
    border-top: 1px solid currentColor;
    padding-left: 0;
    padding-top: 25px;
    max-width: 550px;
  }
  .idea-tabs button {
    font-size: 0.78rem;
  }
  .planner-panel,
  .slots-panel,
  .booking-details {
    padding: 24px;
  }
  .calendar-grid {
    gap: 3px;
  }
  .calendar-day {
    height: 44px;
  }
  .booking-policies {
    gap: 25px;
  }
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 80px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .nav-container {
    width: calc(100% - 40px);
    min-height: 76px;
  }
  .wordmark {
    font-size: 1.9rem;
  }
  .wordmark > span {
    font-size: 0.52rem;
    letter-spacing: 0.21em;
    margin-top: 9px;
  }
  .site-header nav {
    top: 76px;
    height: calc(100dvh - 76px);
    padding: 30px 25px;
  }
  .eyebrow {
    font-size: 0.67rem;
    margin-bottom: 20px;
  }
  .section-space {
    padding-block: 65px;
  }
  h1 {
    font-size: 3.65rem;
  }
  h2 {
    font-size: 2.75rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  .home-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 42px 24px 35px;
    min-height: 435px;
  }
  .hero-copy .eyebrow {
    max-width: 100%;
    font-size: 0.59rem;
    letter-spacing: 0.105em;
    margin-bottom: 25px;
  }
  .hero-copy h1 {
    font-size: clamp(3.9rem, 14.5vw, 5.6rem);
    line-height: 1;
  }
  .hero-intro {
    font-size: 0.99rem;
    margin-top: 24px;
    max-width: 360px;
  }
  .hero-intro br {
    display: none;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 23px;
  }
  .hero-actions .button {
    font-size: 0.84rem;
    min-height: 51px;
    padding: 13px 18px;
  }
  .text-link {
    font-size: 0.86rem;
    gap: 18px;
  }
  .hero-footnote {
    margin-top: 30px;
    max-width: none;
    font-size: 0.64rem;
  }
  .hero-landscape {
    height: 350px;
  }
  .hero-landscape > img {
    object-position: center 55%;
  }
  .landscape-caption {
    bottom: 23px;
    left: 25px;
    right: 25px;
  }
  .landscape-caption > span {
    font-size: 1.5rem;
  }
  .intro-line {
    padding-block: 45px;
    gap: 0;
  }
  .intro-line > p {
    font-size: 1.65rem;
  }
  .intro-line .fine-rule {
    display: none;
  }
  .pathways {
    padding-top: 15px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 25px;
    max-width: 100%;
    font-size: 0.95rem;
  }
  .section-heading > p br {
    display: none;
  }
  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pathway {
    padding: 28px;
    min-height: 440px;
    gap: 32px;
  }
  .pathway h3 {
    font-size: 3.8rem;
  }
  .pathway-top .eyebrow {
    font-size: 0.64rem;
  }
  .pathway-kicker {
    font-size: 0.78rem;
  }
  .pathway h3 + p {
    font-size: 0.93rem;
  }
  .pathway-link {
    padding-top: 20px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portrait-window {
    max-width: 420px;
    aspect-ratio: 1/1.05;
  }
  .portrait-window > img {
    top: -45%;
    left: -100%;
    width: 200%;
  }
  .home-about .portrait-window {
    width: 100%;
    max-width: none;
  }
  .editorial-copy h2 {
    font-size: 3rem;
    margin-bottom: 26px;
  }
  .editorial-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .signature {
    font-size: 2.7rem;
    margin-top: 25px;
  }
  .book-feature {
    padding-block: 60px;
  }
  .book-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book-feature-copy h2 {
    font-size: 4.5rem;
  }
  .book-feature-copy .large-copy {
    font-size: 2rem;
  }
  .book-feature-copy > p:not(.eyebrow, .large-copy, .release-label) {
    font-size: 0.99rem;
  }
  .book-feature-stage {
    padding: 25px 25px 0;
    order: -1;
  }
  .book-feature-stage .book-object {
    width: 215px;
  }
  .stage-caption {
    font-size: 0.94rem;
    margin-top: 35px;
  }
  .book-feature-copy {
    margin-top: 10px;
  }
  .release-label {
    font-size: 0.75rem;
    margin-block: 25px;
  }
  .quote-section {
    padding-block: 70px;
  }
  .quote-section blockquote {
    font-size: 2.15rem;
    line-height: 1.25;
  }
  .quote-attribution {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
  .contact-section {
    padding-block: 60px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-layout h2 {
    font-size: 2.8rem;
  }
  .contact-copy p {
    max-width: 100%;
    font-size: 0.95rem;
  }
  .contact-phone {
    display: inline-block;
    margin-left: 20px;
    font-size: 0.82rem;
  }
  .contact-copy .button {
    margin-top: 23px;
    gap: 18px;
  }
  .footer-top {
    padding-bottom: 35px;
    gap: 25px;
  }
  .footer-social {
    font-size: 0.82rem;
    gap: 7px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-bottom {
    padding-block: 22px 30px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 0.66rem;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 18px;
  }
  .page-hero {
    padding-block: 50px;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .page-hero h1 {
    font-size: 3.7rem;
  }
  .page-hero .lead {
    font-size: 1.05rem;
  }
  .treatment-pause {
    border-left: 0;
    border-top: 1px solid #6f806250;
    padding: 30px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
  }
  .treatment-pause .eyebrow {
    grid-column: 1/-1;
    margin: 0;
  }
  .treatment-pause > p {
    font-size: 3.4rem;
    margin: 0;
  }
  .treatment-pause > span:last-child {
    font-size: 0.78rem;
  }
  .three-notes {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .three-notes > article {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0 15px;
  }
  .three-notes > article > span {
    grid-row: 1/3;
    margin: 0;
    padding-top: 4px;
  }
  .three-notes h3 {
    font-size: 1.7rem;
    margin-bottom: 13px;
  }
  .three-notes p {
    grid-column: 2;
    font-size: 0.96rem;
  }
  .treatment-item summary {
    grid-template-columns: 1fr auto 23px;
    gap: 12px;
    padding-block: 24px;
  }
  .treatment-number {
    display: none;
  }
  .treatment-name {
    font-size: 1.5rem;
  }
  .treatment-meta {
    min-width: 65px;
  }
  .treatment-price {
    font-size: 1.55rem;
  }
  .treatment-duration {
    font-size: 0.64rem;
  }
  .expand-symbol {
    font-size: 1.4rem;
  }
  .treatment-detail {
    padding: 0 0 25px;
    display: block;
  }
  .treatment-detail .button {
    margin-top: 20px;
  }
  .treatment-note {
    font-size: 0.86rem;
  }
  .care-note {
    font-size: 0.83rem;
  }
  .faq-item summary {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.94rem;
  }
  .coaching-hero {
    padding-block: 50px 40px;
  }
  .coaching-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coaching-brand {
    width: min(78%, 290px);
    justify-self: center;
    padding: 12px;
  }
  .coaching-hero h1 {
    font-size: clamp(4rem, 14.7vw, 5.7rem);
  }
  .coaching-side-note {
    display: none;
  }
  .coaching-hero-bottom {
    margin-top: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .coaching-hero-bottom p {
    font-size: 0.97rem;
  }
  .coaching-intro h2,
  .book-editorial h2 {
    font-size: 2.7rem;
  }
  .coaching-intro h2 br,
  .book-editorial h2 br {
    display: none;
  }
  .offset-copy {
    margin-left: 0;
    padding-left: 0;
    margin-top: 30px;
  }
  .offset-copy > p {
    font-size: 1.02rem;
  }
  .reflection-rows > div {
    grid-template-columns: 32px 1fr;
    padding-block: 28px;
    gap: 12px;
  }
  .reflection-rows h3 {
    font-size: 2rem;
  }
  .reflection-rows h3 br {
    display: none;
  }
  .reflection-note {
    font-size: 0.86rem;
  }
  .center-actions {
    flex-direction: column;
    gap: 15px;
  }
  .narrow-center > p:not(.eyebrow) {
    font-size: 0.97rem;
  }
  .book-hero {
    padding-block: 40px 55px;
  }
  .book-product-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-stage {
    min-height: 390px;
    padding-top: 12px;
  }
  .product-stage .book-object {
    width: 230px;
  }
  .product-stage-label {
    font-size: 0.65rem;
    margin-top: 38px;
  }
  .product-copy h1 {
    font-size: 4.7rem;
    white-space: normal;
  }
  .book-subtitle {
    font-size: 1.9rem;
  }
  .product-description {
    font-size: 1rem;
  }
  .format-options label {
    flex: 1;
  }
  .format-options label span {
    padding: 12px 14px;
    font-size: 0.86rem;
    text-align: center;
  }
  .product-copy .button {
    width: 100%;
  }
  .book-availability {
    font-size: 0.79rem;
    max-width: 100%;
  }
  .book-highlights {
    padding-block: 50px;
  }
  .book-highlights .three-notes > article > span {
    font-size: 1.7rem;
  }
  .about-hero {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
  }
  .about-hero h1 {
    font-size: 4rem;
  }
  .about-hero .lead {
    font-size: 1rem;
    margin-top: 25px;
  }
  .about-hero .portrait-window {
    max-width: none;
  }
  .story-section {
    display: block;
  }
  .story-section aside {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .story-section aside .eyebrow {
    max-width: none;
  }
  .story-copy {
    font-size: 1.05rem;
  }
  .story-copy > p:first-child {
    font-size: 1.75rem;
  }
  .landscape-interlude {
    height: 400px;
  }
  .landscape-interlude p {
    font-size: 2.5rem;
  }
  .simple-links > a {
    grid-template-columns: 28px 1fr 24px;
    padding-block: 24px;
    gap: 10px;
  }
  .simple-links h3 {
    font-size: 1.75rem;
  }
  .simple-links > a > span {
    font-size: 0.7rem;
  }
  .simple-links > a > span:last-child {
    font-size: 1.4rem;
  }
  .ideas-heading {
    padding-block: 45px 35px;
  }
  .ideas-heading h1 {
    font-size: 3.1rem;
  }
  .ideas-heading .lead {
    font-size: 1.05rem;
  }
  .review-note {
    font-size: 0.8rem;
  }
  .idea-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .idea-tabs button {
    font-size: 0.8rem;
    padding: 13px 5px;
    min-height: 54px;
  }
  .idea-panel {
    padding: 32px 25px;
    min-height: 560px;
    gap: 30px;
  }
  .idea-panel h2 {
    font-size: 2.65rem;
  }
  .idea-panel .idea-description {
    font-size: 0.98rem;
  }
  .idea-panel aside p {
    font-size: 0.84rem;
  }
  .idea-panel .idea-label {
    font-size: 0.63rem;
  }
  .ideas-notes {
    padding-top: 50px;
  }
  .ideas-notes h2 {
    font-size: 2.8rem;
  }
  .notes-actions {
    gap: 10px;
  }
  .notes-actions > .button {
    font-size: 0.8rem;
    padding: 12px 16px;
  }
  .booking-heading {
    padding-block: 45px 30px;
  }
  .booking-heading h1 {
    font-size: 3.65rem;
  }
  .booking-heading > p:last-child {
    font-size: 0.95rem;
  }
  .booking-heading > p:last-child br {
    display: none;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .planner-panel,
  .slots-panel,
  .booking-details {
    padding: 22px 18px;
  }
  .booking-layout h2 {
    font-size: 1.8rem;
  }
  .booking-layout h3 {
    font-size: 1.3rem;
  }
  .calendar-day {
    height: 44px;
  }
  .calendar-grid {
    gap: 5px;
  }
  .day-label {
    font-size: 0.7rem;
  }
  .slot-grid {
    grid-template-columns: repeat(4, 1fr);
    max-height: 300px;
  }
  .booking-details {
    grid-column: auto;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .booking-summary {
    padding: 18px;
    font-size: 0.9rem;
  }
  .booking-summary dl {
    gap: 15px;
  }
  .booking-policies {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 30px 55px;
  }
  .booking-section {
    padding-bottom: 45px;
  }
  .booking-policies h3 {
    font-size: 1.5rem;
  }
  .booking-policies p {
    font-size: 0.9rem;
  }
  .privacy-page h1 {
    font-size: 3.6rem;
  }
  .privacy-page h2 {
    font-size: 1.8rem;
  }
  .booking-layout .button {
    font-size: 0.87rem;
    min-height: 46px;
    padding: 12px 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
  .book-object {
    will-change: auto;
  }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .contact-section {
    display: none;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .container {
    width: 100%;
  }
  .section-space {
    padding-block: 25px;
  }
  .idea-panel {
    break-inside: avoid;
  }
}
.booking-month-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}
.booking-month-controls h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}
.booking-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.booking-summary-list {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px !important;
}
.booking-summary-row {
  min-width: 0;
}
.booking-date-hint,
#bookingTimezone,
#bookingServiceDescription,
#bookingPolicy {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
.booking-date-hint {
  margin-top: 18px;
}
#bookingTimezone {
  margin-top: 12px;
}
#bookingPolicy {
  margin-block: 0 22px;
}
.status-message[data-status="error"] {
  color: #992f37;
}
.status-message[data-status="success"] {
  color: #315c36;
}
.status-message .button {
  margin-top: 12px;
}
#bookingFormStatus {
  padding-top: 10px;
}
.booking-layout .slots-panel {
  min-height: 300px;
}
.booking-layout .calendar-grid[aria-busy="true"] {
  opacity: 0.6;
}
@media (max-width: 860px) {
  .booking-summary-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .booking-summary-list {
    grid-template-columns: 1fr 1fr;
  }
  .booking-summary-row:first-child {
    grid-column: 1/-1;
  }
  .booking-month-controls .button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
  }
  .booking-month-controls h3 {
    font-size: 0.96rem;
  }
  .booking-layout .slots-panel {
    min-height: 190px;
  }
}
.treatment-pause > span:last-child {
  color: #586760;
}
:root {
  --muted: #586760;
}
.portrait-window > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 26%;
  mix-blend-mode: normal;
}
.booking-summary dt {
  color: var(--muted);
}
@media (max-width: 620px) {
  .portrait-window > img {
    object-position: center 19%;
  }
}
.portrait-window > img {
  object-position: center 10%;
}
@media (max-width: 620px) {
  .portrait-window > img {
    object-position: center 5%;
  }
}
.diary-loading {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.diary-loading p:last-child {
  font-size: 0.9rem;
  color: var(--muted);
}

/* A quiet, email-only place to start a conversation. */
.clarity-film-section {
  background: #eee9e0;
}
.clarity-film-layout {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  max-width: 1100px;
}
.clarity-film {
  margin: 0;
}
.clarity-film video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 848;
  border-radius: 6px;
  background: #725132;
  box-shadow: 0 15px 40px #322a241a;
}
.clarity-film figcaption {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 16px;
}
.clarity-film-copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  margin-bottom: 30px;
}
.clarity-film-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 20px;
  color: var(--muted);
}
.coaching-intro .credential-note {
  font-size: 0.85rem;
  color: var(--green);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.reflection-theme p {
  max-width: 580px;
  margin-top: 20px;
  color: #51415c;
}
.coaching-testimonials h2 {
  margin-bottom: 45px;
}
.coaching-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(35px, 6vw, 90px);
}
.coaching-quote-grid figure {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.coaching-quote-grid blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.3;
}
.coaching-quote-grid figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 24px;
}
@media (min-width: 621px) {
  .booking-policies {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .clarity-film-layout,
  .coaching-quote-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .clarity-film {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .clarity-film-copy {
    order: -1;
  }
  .clarity-film-copy h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
  .reflection-theme p {
    margin-top: 14px;
    font-size: 0.96rem;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.enquiry-page {
  background: linear-gradient(120deg, #edeade 0%, var(--paper) 52%);
}
.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
  padding-block: 90px 110px;
}
.enquiry-intro {
  padding-top: 20px;
}
.enquiry-intro h1 {
  font-size: clamp(3.7rem, 5.5vw, 5.5rem);
  margin-bottom: 30px;
}
.enquiry-intro h1 em {
  color: #697854;
}
.enquiry-intro .lead {
  max-width: 450px;
  font-size: 1.12rem;
}
.enquiry-how {
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 430px;
}
.enquiry-how .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.enquiry-how p,
.enquiry-direct {
  font-size: 0.96rem;
  color: var(--muted);
}
.enquiry-direct {
  margin-top: 34px;
  overflow-wrap: anywhere;
}
.enquiry-direct a {
  color: var(--green);
}
.enquiry-card {
  background: var(--white);
  padding: clamp(26px, 3.4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.enquiry-card h2 {
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  max-width: 400px;
}
.enquiry-required {
  font-size: 0.8rem;
  color: var(--muted);
  margin-block: 18px 28px;
}
#enquiryFields {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.enquiry-card .field {
  margin-bottom: 20px;
}
.enquiry-card .field input,
.enquiry-card .field select,
.enquiry-card .field textarea {
  background: #fcfbf7;
  border-color: #9eaaa1;
  width: 100%;
  min-width: 0;
  border-radius: 3px;
}
.enquiry-card .field textarea {
  min-height: 150px;
  resize: vertical;
}
.field-hint,
.enquiry-small-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.enquiry-small-note {
  margin-top: 16px;
}
.enquiry-card .form-consent {
  font-size: 0.82rem;
  line-height: 1.6;
}
#enquirySubmit {
  width: 100%;
}
#enquiryStatus {
  overflow-wrap: anywhere;
}
#enquiryStatus[data-status="success"] {
  padding-top: 30px;
}
#enquiryStatus h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
#enquiryStatus .text-link {
  display: inline-block;
  margin-top: 24px;
}
.enquiry-retry {
  border: 0;
  padding: 0;
  background: transparent;
}
.booking-email-note {
  font-size: 0.9rem;
  padding-top: 28px;
}
@media (max-width: 860px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 50px 70px;
  }
  .enquiry-intro {
    padding-top: 0;
  }
  .enquiry-intro h1 {
    font-size: clamp(3.2rem, 8vw, 4.5rem);
  }
  .enquiry-how {
    margin-top: 25px;
    padding-top: 22px;
    max-width: none;
  }
  .enquiry-direct {
    margin-top: 20px;
  }
}
@media (max-width: 620px) {
  .enquiry-layout {
    padding-block: 36px 55px;
    gap: 32px;
  }
  .enquiry-intro h1 {
    font-size: clamp(2.75rem, 12vw, 3.75rem);
    margin-bottom: 24px;
  }
  .enquiry-card {
    padding: 25px 20px;
  }
  .enquiry-card h2 {
    font-size: 2rem;
  }
  .enquiry-card .eyebrow {
    letter-spacing: 0.1em;
  }
}
