
:root {
  --frosted: #b7c7c9;
  --frosted-deep: #91a7aa;
  --frosted-light: #eef4f4;
  --blue-haze: #dbe6e7;
  --blue-grey: #73888a;
  --deep-blue-grey: #52696b;
  --mountain: #878679;
  --coffee: #402615;
  --berkeley: #7d5e3c;
  --mojave: #bea683;
  --almond: #d6c8b1;
  --paper: #f8faf9;
  --white: #ffffff;
  --ink: #344446;
  --muted: #657577;
  --line: rgba(82, 105, 107, .18);
  --soft-line: rgba(183, 199, 201, .55);
  --shadow: 0 20px 55px rgba(52, 68, 70, .12);
  --shadow-small: 0 10px 30px rgba(52, 68, 70, .09);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--frosted);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--deep-blue-grey);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.topline {
  min-height: 35px;
  display: flex;
  align-items: center;
  background: var(--frosted);
  color: var(--deep-blue-grey);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .055em;
}

.topline__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.topline a {
  font-weight: 750;
  text-decoration: none;
}

.topline__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topline__instagram,
.footer-social-link,
.contact-instagram-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}

.instagram-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.topline__instagram:hover,
.topline__instagram:focus-visible {
  color: var(--coffee);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 249, .94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(52, 68, 70, .08);
}

.header__inner {
  min-height: 98px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.header-brand {
  width: 126px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue-grey);
  text-decoration: none;
}

.header-brand img {
  width: 118px;
  height: 84px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--deep-blue-grey);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--frosted-deep);
  transition: right .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after,
.site-nav > a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--deep-blue-grey);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid var(--coffee);
  border-radius: 999px;
  background: var(--coffee);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--berkeley);
  background: var(--berkeley);
  box-shadow: 0 12px 28px rgba(82, 105, 107, .18);
}

.button--nav {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 12px;
}

.button--outline {
  border-color: var(--frosted-deep);
  background: transparent;
  color: var(--deep-blue-grey);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--frosted);
  color: var(--deep-blue-grey);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep-blue-grey);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--frosted-light);
  background: var(--frosted-light);
}

.text-link {
  color: var(--deep-blue-grey);
  font-weight: 750;
  text-underline-offset: 5px;
  text-decoration-color: var(--frosted-deep);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-grey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--deep-blue-grey);
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(42px, 5.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

h3 {
  font-size: 26px;
  line-height: 1.16;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 100px;
  background:
    radial-gradient(circle at 92% 18%, rgba(183,199,201,.65), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(214,200,177,.50), transparent 31%),
    linear-gradient(115deg, var(--white), #f5f3ee);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}

.hero__content h1 {
  max-width: 700px;
  margin-bottom: 24px;
}

.hero__lead {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 33px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.hero__trust span,
.personality-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(145,167,170,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--deep-blue-grey);
  font-size: 11px;
  font-weight: 700;
}

.hero__frame {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 55px 46px 34px;
  border: 1px solid rgba(125,94,60,.38);
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
    var(--almond);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(183,199,201,.7);
  pointer-events: none;
}

.hero__frame::after {
  inset: 26px;
  border-color: rgba(125,94,60,.34);
}

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-color: var(--berkeley);
  border-style: solid;
  opacity: .55;
}

.frame-corner--tl {
  top: 6px;
  left: 6px;
  border-width: 2px 0 0 2px;
}

.frame-corner--tr {
  top: 6px;
  right: 6px;
  border-width: 2px 2px 0 0;
}

.frame-corner--bl {
  bottom: 6px;
  left: 6px;
  border-width: 0 0 2px 2px;
}

.frame-corner--br {
  right: 6px;
  bottom: 6px;
  border-width: 0 2px 2px 0;
}

.hero__logo-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 365px);
  align-self: center;
  justify-self: center;
  text-align: center;
}

.hero__logo-panel img {
  width: 100%;
  max-height: 325px;
  object-fit: contain;
}

.hero__logo-panel p {
  margin: 8px 0 0;
  color: var(--blue-grey);
  font-family: var(--serif);
  font-size: 17px;
}

.hero__note-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.hero__note-card {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(125,94,60,.30);
  border-radius: 12px;
  background: rgba(248,250,249,.96);
  box-shadow: 0 10px 28px rgba(64,38,21,.08);
}

.hero__note-card strong,
.hero__note-card span {
  display: block;
}

.hero__note-card strong {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.hero__note-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--one {
  top: 8%;
  right: -110px;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(82,105,107,.15);
}

.hero__orb--two {
  bottom: -130px;
  left: 40%;
  width: 280px;
  aspect-ratio: 1;
  background: rgba(183,199,201,.32);
}

.feature-ribbon {
  background: var(--coffee);
  color: var(--white);
}

.feature-ribbon__grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-ribbon__grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.feature-ribbon__grid > div:last-child {
  border-right: 0;
}

.feature-ribbon strong {
  color: var(--almond);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.feature-ribbon span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.section {
  padding: 105px 0;
}

.section--pale {
  background:
    radial-gradient(circle at 92% 8%, rgba(183,199,201,.24), transparent 24%),
    linear-gradient(135deg, var(--paper), rgba(214,200,177,.32));
}

.section--mist,
.profile-section--mist {
  background:
    linear-gradient(120deg, rgba(183,199,201,.38), rgba(214,200,177,.30)),
    var(--frosted-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.section-heading--centred {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.glow-card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--soft-line);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-small);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.glow-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(183,199,201,.55), transparent 70%);
  opacity: 0;
  transition: opacity .28s ease;
}

.glow-card:hover,
.glow-card:focus-within,
a.glow-card:focus-visible {
  transform: translateY(-6px) scale(1.012);
  border-color: var(--frosted-deep);
  background: rgba(247,251,251,.96);
  box-shadow:
    0 22px 50px rgba(82,105,107,.17),
    0 0 28px rgba(183,199,201,.45);
  animation: soft-pulse 1.9s ease-in-out infinite;
}

.glow-card:hover::before,
.glow-card:focus-within::before,
a.glow-card:focus-visible::before {
  opacity: .9;
}

@keyframes soft-pulse {
  0%, 100% {
    box-shadow:
      0 22px 50px rgba(82,105,107,.15),
      0 0 20px rgba(183,199,201,.34);
  }
  50% {
    box-shadow:
      0 24px 54px rgba(82,105,107,.2),
      0 0 36px rgba(183,199,201,.58);
  }
}

.treatment-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
}

.treatment-card--frosted {
  background: var(--blue-haze);
}

.treatment-card--mountain {
  background: rgba(135,134,121,.18);
}

.treatment-card--warm {
  background: rgba(190,166,131,.44);
}

.card-index {
  margin-bottom: 42px;
  color: var(--blue-grey);
  font-family: var(--serif);
  font-size: 17px;
}

.treatment-card h3 {
  margin-bottom: 14px;
}

.treatment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-arrow {
  margin-top: auto;
  padding-top: 25px;
  color: var(--deep-blue-grey);
  font-size: 13px;
  font-weight: 800;
}

.card-arrow i {
  display: inline-block;
  margin-left: 7px;
  font-style: normal;
  transition: transform .22s ease;
}

.glow-card:hover .card-arrow i {
  transform: translateX(5px);
}

.home-values {
  background:
    radial-gradient(circle at 8% 88%, rgba(190,166,131,.28), transparent 24%),
    var(--white);
}

.value-card--almond {
  background: rgba(214,200,177,.48);
}

.value-card--mojave {
  background: rgba(190,166,131,.50);
}

.home-values__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

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

.step-card {
  position: relative;
  padding: 30px 24px;
  border-top: 1px solid var(--frosted-deep);
}

.step-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--frosted);
  color: var(--deep-blue-grey);
  font-family: var(--serif);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-panel {
  padding: 65px 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(183,199,201,.18), transparent 22%),
    var(--berkeley);
  color: var(--white);
}

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

.cta-panel img {
  width: 78px;
  filter: brightness(1.15);
}

.cta-panel h2 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(31px, 4vw, 42px);
}

.cta-panel .eyebrow {
  color: var(--frosted);
}

.page-hero {
  padding: 74px 0 78px;
  border-bottom: 1px solid var(--soft-line);
  background:
    radial-gradient(circle at 88% 20%, rgba(183,199,201,.58), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(214,200,177,.34), transparent 25%),
    linear-gradient(115deg, var(--white), #f5f3ee);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 60px;
}

.page-hero__inner > div {
  max-width: 790px;
}

.page-hero h1 {
  margin-bottom: 19px;
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.page-hero img {
  width: 120px;
  max-height: 180px;
  justify-self: end;
  object-fit: contain;
  opacity: .72;
}

.page-hero--sisters {
  background:
    radial-gradient(circle at 92% 25%, rgba(190,166,131,.25), transparent 24%),
    linear-gradient(115deg, var(--white), var(--frosted-light));
}

.anchor-nav {
  position: sticky;
  z-index: 50;
  top: 82px;
  border-bottom: 1px solid var(--line);
  background: rgba(248,250,249,.94);
  backdrop-filter: blur(14px);
}

.anchor-nav .container {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-block: 16px;
  scrollbar-width: none;
}

.anchor-nav .container::-webkit-scrollbar {
  display: none;
}

.anchor-nav a {
  flex: 0 0 auto;
  color: var(--deep-blue-grey);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.treatment-section {
  scroll-margin-top: 145px;
  background: var(--white);
}

.treatment-section--frosted {
  background: var(--frosted-light);
}

.treatment-section--grey {
  background: rgba(135,134,121,.1);
}

.treatment-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 75px;
}

.treatment-layout--reverse .treatment-layout__intro {
  order: 2;
}

.treatment-layout__intro {
  position: sticky;
  top: 155px;
}

.treatment-layout__intro > p:not(.eyebrow) {
  color: var(--muted);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.compact-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 18px;
}

.compact-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.compact-card--wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.clinical-note {
  padding: 33px 0;
  background: var(--deep-blue-grey);
  color: var(--white);
}

.clinical-note__inner {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.clinical-note strong {
  color: var(--frosted);
}

.clinical-note p {
  margin: 0;
  font-size: 13px;
}

.profile-feature {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 78px;
}

.profile-feature--reverse .profile-feature__image {
  order: 2;
}

.profile-feature__image {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
}

.profile-feature__title {
  padding: 28px 30px 19px;
  text-align: center;
}

.profile-feature__title h2 {
  margin: 5px 0 0;
  font-size: 40px;
}

.profile-feature__image img {
  width: 100%;
  max-height: 790px;
  object-fit: cover;
  object-position: top center;
}

.profile-feature__copy .lead {
  color: var(--deep-blue-grey);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}

.profile-feature__copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.personality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.sister-dynamic {
  background: var(--white);
}

.value-card {
  min-height: 245px;
  padding: 29px;
  border-radius: var(--radius-md);
}

.value-card--frosted {
  background: var(--blue-haze);
}

.value-card > span {
  color: var(--blue-grey);
  font-family: var(--serif);
  font-size: 18px;
}

.value-card h3 {
  margin: 34px 0 10px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.advice-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 80px;
}

.advice-sidebar {
  position: sticky;
  top: 125px;
  align-self: start;
  padding: 23px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  background: var(--white);
}

.advice-sidebar a,
.legal-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep-blue-grey);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.advice-sidebar a:last-child,
.legal-nav a:last-child {
  border-bottom: 0;
}

.advice-content section {
  padding: 0 0 75px;
  scroll-margin-top: 130px;
}

.advice-content section + section {
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.advice-content > section > p:not(.eyebrow) {
  color: var(--muted);
}

.advice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin-top: 28px;
}

.advice-card {
  padding: 25px;
  border-radius: 17px;
}

.advice-card h3 {
  margin-bottom: 9px;
  font-size: 23px;
}

.advice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--deep-blue-grey);
  font-family: var(--serif);
  font-size: 21px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  color: var(--blue-grey);
  font-family: var(--sans);
  font-size: 25px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -4px 0 23px;
  color: var(--muted);
}

.advice-callout,
.draft-notice {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--frosted-deep);
  background: var(--blue-haze);
}

.advice-callout p,
.draft-notice p {
  margin: 5px 0 0;
  color: var(--muted);
}

.booking-page {
  background:
    radial-gradient(circle at 4% 92%, rgba(183,199,201,.4), transparent 25%),
    var(--paper);
}

.booking-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 75px;
}

.booking-aside {
  position: sticky;
  top: 125px;
}

.booking-aside > p:not(.eyebrow) {
  color: var(--muted);
}

.booking-aside__item {
  margin-top: 26px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.booking-aside__item strong,
.booking-aside__item span,
.booking-aside__item a {
  display: block;
}

.booking-aside__item strong {
  color: var(--blue-grey);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.booking-aside__item a {
  margin-top: 6px;
  color: var(--deep-blue-grey);
  font-family: var(--serif);
  font-size: 22px;
}

.booking-aside__item span {
  margin-top: 6px;
  color: var(--muted);
}

.booking-aside__note {
  margin-top: 31px;
  padding: 18px;
  border-left: 3px solid var(--berkeley);
  background: rgba(214,200,177,.28);
  color: var(--deep-blue-grey);
  font-size: 12px;
}

.booking-form-card,
.contact-form-card {
  padding: 37px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.form-progress span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.form-progress i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--frosted);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: normal;
}

.form-progress span.is-current {
  color: var(--deep-blue-grey);
}

.form-progress span.is-current i {
  border-color: var(--deep-blue-grey);
  background: var(--deep-blue-grey);
  color: var(--white);
}

.form-step {
  display: none;
  padding-top: 29px;
}

.form-step.is-current {
  display: block;
  animation: enter-step .28s ease;
}

@keyframes enter-step {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step__label {
  margin: 0;
  color: var(--blue-grey);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-step h2,
.contact-form-card h2 {
  margin: 4px 0 27px;
  font-size: 34px;
}

.field {
  margin-bottom: 19px;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--deep-blue-grey);
  font-size: 13px;
  font-weight: 750;
}

.field label span {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(82,105,107,.23);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
  min-height: 51px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 120px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--frosted-deep);
  box-shadow: 0 0 0 4px rgba(183,199,201,.25);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #8f423a;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: #8f423a;
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--deep-blue-grey);
}

.consent a {
  color: var(--deep-blue-grey);
  font-weight: 700;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.form-actions--end {
  justify-content: flex-end;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 70px;
}

.contact-details > h2 {
  margin-bottom: 28px;
}

.contact-detail-card {
  margin-top: 15px;
  padding: 23px;
  border-radius: 16px;
}

.contact-detail-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-grey);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-detail-card a {
  color: var(--deep-blue-grey);
  font-family: var(--serif);
  font-size: 20px;
}

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

.contact-form .button {
  margin-top: 25px;
}

.legal-page {
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 80px;
}

.legal-nav {
  position: sticky;
  top: 125px;
  align-self: start;
  padding: 21px;
  border: 1px solid var(--soft-line);
  border-radius: 15px;
  background: var(--white);
}

.legal-copy {
  max-width: 800px;
}

.legal-copy section {
  padding: 30px 0 55px;
  scroll-margin-top: 120px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section h2 {
  font-size: 32px;
}

.legal-copy section p:not(.eyebrow) {
  color: var(--muted);
}

.legal-copy a {
  color: var(--deep-blue-grey);
  font-weight: 700;
}

.status-page .topline,
.status-page .site-header,
.status-page .site-footer,
.status-page .mobile-booking-bar {
  display: none;
}

.status-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 10% 15%, rgba(183,199,201,.72), transparent 27%),
    var(--frosted-light);
}

.status-card {
  width: min(100%, 650px);
  padding: 55px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card img {
  width: 95px;
  max-height: 135px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.status-card h1 {
  font-size: 44px;
}

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

.status-card .button {
  margin-top: 17px;
}

.site-footer {
  padding: 72px 0 21px;
  background: #21150f;
  color: rgba(255,255,255,.68);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .65fr .9fr .65fr;
  gap: 50px;
  padding-bottom: 48px;
}

.footer__logo-frame {
  width: 235px;
  overflow: hidden;
  border-radius: 13px;
  background: #000;
}

.footer__logo-frame img {
  width: 100%;
}

.footer__brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.62);
  font-family: var(--serif);
  font-size: 18px;
}

.footer__links h2 {
  margin: 0 0 16px;
  color: var(--frosted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: 10px;
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 17px;
  }

  .hero__grid {
    gap: 42px;
  }



  .profile-feature,
  .treatment-layout {
    gap: 50px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  .topline {
    display: none;
  }

  .header__inner {
    min-height: 75px;
  }

  .menu-toggle {
    z-index: 105;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0 9px 14px;
    cursor: pointer;
  }

  .menu-toggle span {
    font-size: 12px;
    font-weight: 800;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    width: 24px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .22s ease;
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before {
    content: "";
    position: absolute;
    top: -7px;
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    width: min(88vw, 420px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 88px 34px 45px;
    background: var(--frosted-light);
    box-shadow: -18px 0 45px rgba(52,68,70,.15);
    transform: translateX(105%);
    transition: transform .28s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--soft-line);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 25px;
  }

  .hero {
    padding: 65px 0 80px;
  }

  .hero__grid,
  .page-hero__inner,
  .profile-feature,
  .treatment-layout,
  .booking-layout,
  .contact-layout,
  .advice-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .hero__frame {
    width: min(100%, 620px);
    min-height: 485px;
    margin-inline: auto;
  }

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

  .feature-ribbon__grid > div:nth-child(2) {
    border-right: 0;
  }

  .feature-ribbon__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .section {
    padding: 85px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }

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

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

  .cta-panel__inner {
    grid-template-columns: 70px 1fr;
  }

  .cta-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .page-hero__inner {
    gap: 30px;
  }

  .page-hero img {
    display: none;
  }

  .anchor-nav {
    top: 75px;
  }

  .treatment-layout__intro,
  .booking-aside,
  .advice-sidebar,
  .legal-nav {
    position: static;
  }

  .treatment-layout--reverse .treatment-layout__intro,
  .profile-feature--reverse .profile-feature__image {
    order: initial;
  }

  .profile-feature__image {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .advice-sidebar,
  .legal-nav {
    display: flex;
    gap: 18px;
    overflow-x: auto;
  }

  .advice-sidebar .eyebrow {
    display: none;
  }

  .advice-sidebar a,
  .legal-nav a {
    flex: 0 0 auto;
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }


  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 48px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 39px);
  }

  .hero__lead,
  .page-hero p:last-child {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 15px;
  }

  .hero__frame {
    min-height: 385px;
    padding: 32px 24px;
  }

  .hero__logo-panel {
    width: 270px;
  }

  .hero__note-grid {
    grid-template-columns: 1fr;
  }

  .hero__note-card {
    text-align: left;
  }

  .hero__floating-card {
    min-width: 150px;
    padding: 11px 13px;
  }


  .feature-ribbon__grid {
    grid-template-columns: 1fr;
  }

  .feature-ribbon__grid > div {
    min-height: 60px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .feature-ribbon__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .card-grid--three,
  .steps-grid,
  .treatment-list,
  .advice-cards,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: 295px;
  }

  .profile-peek img {
    height: auto;
  }

  .cta-panel__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-panel img {
    margin-inline: auto;
  }

  .cta-panel .button {
    grid-column: auto;
    justify-self: center;
  }

  .page-hero {
    padding: 58px 0 60px;
  }

  .compact-card--wide {
    grid-column: auto;
  }

  .profile-feature__title {
    padding-inline: 20px;
  }

  .profile-feature__title h2 {
    font-size: 35px;
  }

  .booking-form-card,
  .contact-form-card {
    padding: 25px 18px;
  }

  .form-progress {
    gap: 4px;
  }

  .form-progress span {
    gap: 4px;
    font-size: 9px;
  }

  .form-progress i {
    width: 23px;
    height: 23px;
  }

  .form-actions .button {
    padding-inline: 17px;
  }

  .status-card {
    padding: 42px 23px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    padding-bottom: 59px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 51px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--deep-blue-grey);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(52,68,70,.28);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .glow-card:hover,
  .glow-card:focus-within,
  a.glow-card:focus-visible {
    transform: none;
    animation: none;
  }
}




/* Revision 5: exact stacked header logo and visible Instagram links */
.footer-social-link {
  width: fit-content;
}

.footer-social-link .instagram-icon {
  width: 16px;
  height: 16px;
}

.contact-instagram-link {
  color: var(--deep-blue-grey);
  font-family: var(--serif);
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-instagram-link .instagram-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 860px) {
  .header-brand {
    width: 108px;
    height: 76px;
  }

  .header-brand img {
    width: 101px;
    height: 72px;
  }
}

@media (max-width: 620px) {
  .header-brand {
    width: 92px;
    height: 68px;
  }

  .header-brand img {
    width: 86px;
    height: 64px;
  }
}


/* ================================================================
   REVISION 6 — darker blue-grey interface, warm supporting accents
   ================================================================ */

:root {
  --primary-dark: #52696B;
  --primary-deep: #43585B;
}

/* Coffee Grounds remains a small decorative frame accent only. */
.button,
.button--nav {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}

.button:hover,
.button:focus-visible,
.button--nav:hover,
.button--nav:focus-visible {
  border-color: var(--primary-deep);
  background: var(--primary-deep);
}

.feature-ribbon {
  background: var(--primary-deep);
}

.feature-ribbon strong {
  color: var(--frosted);
}

.cta-panel {
  background:
    radial-gradient(circle at 20% 40%, rgba(183,199,201,.20), transparent 22%),
    var(--primary-dark);
}

.site-footer {
  background: #26383A;
}

.footer__logo-frame {
  background: var(--white);
  border: 1px solid rgba(183,199,201,.25);
}

.booking-aside__note {
  border-left-color: var(--frosted-deep);
  background: rgba(183,199,201,.20);
}

.hero__frame {
  border-color: rgba(125,94,60,.30);
}

.frame-corner {
  border-color: var(--coffee);
  opacity: .42;
}

.hero__frame::after {
  border-color: rgba(125,94,60,.26);
}

.hero__note-card {
  border-color: rgba(125,94,60,.22);
}

.hero__note-card strong {
  color: var(--primary-dark);
}

/* Retracting header */
.site-header {
  transition:
    transform .32s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-revealed {
  transform: translateY(0);
}

/* Keep anchor navigation tidy as header retracts */
body.header-retracted .anchor-nav {
  top: 0;
}

/* CTA no longer needs a duplicate logo column */
.cta-panel__inner--no-logo,
.cta-panel__inner:not(:has(> img)) {
  grid-template-columns: 1fr auto;
}

.cta-panel__inner:not(:has(> img)) .button {
  grid-column: auto;
}

/* More detailed treatment pages */
.treatment-hub__grid .treatment-card {
  min-height: 330px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.detail-sidebar {
  position: sticky;
  top: 122px;
  padding: 22px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
}

.detail-sidebar a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.detail-sidebar a:last-child {
  border-bottom: 0;
}

.detail-copy {
  max-width: 800px;
}

.detail-copy section {
  padding: 0 0 52px;
  scroll-margin-top: 125px;
}

.detail-copy section + section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.detail-copy section p:not(.eyebrow),
.narrow-copy p {
  color: var(--muted);
}

.narrow-copy {
  max-width: 820px;
  margin-inline: auto;
}

.treatment-list--detail {
  max-width: 980px;
  margin-inline: auto;
}

.treatment-list--detail .compact-card {
  min-height: 245px;
}

.treatment-list--detail h2 {
  margin-bottom: 14px;
  font-size: 29px;
}

.centre-cta {
  margin-top: 34px;
  text-align: center;
}

/* Enhanced practitioner profiles */
.profile-feature__copy--enhanced {
  max-width: 650px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 22px;
}

.credential-grid > div {
  padding: 17px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}

.credential-grid strong,
.credential-grid span {
  display: block;
}

.credential-grid strong {
  color: var(--primary-dark);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.credential-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

/* Slightly warmer but restrained cards */
.value-card--almond {
  background: rgba(214,200,177,.42);
}

.value-card--mojave,
.treatment-card--warm {
  background: rgba(190,166,131,.36);
}

.glow-card:hover,
.glow-card:focus-within,
a.glow-card:focus-visible {
  border-color: var(--frosted-deep);
  box-shadow:
    0 22px 50px rgba(82,105,107,.17),
    0 0 30px rgba(183,199,201,.48);
}

/* Responsive */
@media (max-width: 860px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .detail-sidebar {
    position: static;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 16px 18px;
  }

  .detail-sidebar .eyebrow {
    display: none;
  }

  .detail-sidebar a {
    flex: 0 0 auto;
    border-bottom: 0;
  }

  .cta-panel__inner--no-logo,
  .cta-panel__inner:not(:has(> img)) {
    grid-template-columns: 1fr auto;
  }
}

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

  .cta-panel__inner--no-logo,
  .cta-panel__inner:not(:has(> img)) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-panel__inner:not(:has(> img)) .button {
    justify-self: center;
  }
}
