:root {
  --green: #12372f;
  --green-deep: #0a2520;
  --green-soft: #31574e;
  --paper: #f4efe6;
  --paper-deep: #e8e0d4;
  --cream: #fffaf2;
  --clay: #c46f53;
  --clay-deep: #a9563f;
  --ink: #152b27;
  --muted: #65716d;
  --line: rgba(21, 43, 39, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(10, 37, 32, 0.14);
  --radius: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--cream);
  background: var(--clay-deep);
}

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

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h2 em {
  color: var(--clay-deep);
  font-weight: 400;
}

.page-width {
  width: min(100% - 3rem, 87rem);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(4.5rem, 7vw, 7.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  color: var(--clay-deep);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #dcc0b3;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 999px;
  color: var(--cream);
  background: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
  color: var(--cream);
  transition: min-height 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  min-height: 4.6rem;
  color: var(--green-deep);
  background: rgba(244, 239, 230, 0.95);
  box-shadow: 0 1px 0 rgba(18, 55, 47, 0.11);
  backdrop-filter: blur(15px);
}

.brand {
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3.1rem;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.28rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.4vw, 2.4rem);
}

.main-nav > a {
  position: relative;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav > a:not(.nav-book)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.main-nav > a:not(.nav-book):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 250, 242, 0.65);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-book:hover {
  color: var(--green-deep);
  border-color: var(--cream);
  background: var(--cream);
}

.site-header.is-scrolled .nav-book {
  color: var(--cream);
  border-color: var(--green-deep);
  background: var(--green-deep);
}

.site-header.is-scrolled .nav-book:hover {
  border-color: var(--clay-deep);
  background: var(--clay-deep);
}

.menu-toggle {
  z-index: 102;
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: 700 0.7rem/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-lines {
  display: grid;
  width: 1.65rem;
  gap: 0.35rem;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 680px;
  height: 100svh;
  max-height: 900px;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--green-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-enter 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 25, 21, 0.95) 0%, rgba(7, 29, 25, 0.8) 34%, rgba(7, 29, 25, 0.2) 72%, rgba(7, 29, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 24, 21, 0.76) 0%, transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}

.hero h1 {
  max-width: 54rem;
  margin-bottom: 1.6rem;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: #e1a58f;
  font-weight: 400;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span,
.text-link span,
.card-link span {
  transition: transform 180ms ease;
}

.button:hover span,
.text-link:hover span,
.card-link:hover span {
  transform: translate(0.18rem, -0.18rem);
}

.button-clay {
  color: var(--cream);
  background: var(--clay-deep);
}

.button-clay:hover {
  background: var(--clay);
}

.button-outline-light {
  color: var(--cream);
  border-color: rgba(255, 250, 242, 0.44);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--green-deep);
  border-color: var(--cream);
  background: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.light-link {
  color: var(--cream);
}

.hero-trust {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 2.2rem;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: end;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 242, 0.3);
}

.hero-trust p {
  display: grid;
  margin-bottom: 0;
}

.hero-trust p:not(:first-child) {
  padding-left: clamp(1rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 250, 242, 0.25);
}

.hero-trust strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.hero-trust span {
  margin-top: 0.15rem;
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.receipt-strip {
  color: var(--cream);
  background: var(--clay-deep);
}

.receipt-strip-inner {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.receipt-strip-icon {
  display: grid;
  width: 1.75rem;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 250, 242, 0.55);
  border-radius: 50%;
  font-size: 0.8rem;
}

.receipt-strip p {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.intro-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(3.5rem, 9vw, 9rem);
}

.portrait-wrap {
  position: relative;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12rem 12rem var(--radius) var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  content: "";
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(1) contrast(0.94);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.portrait-frame:hover img {
  transform: scale(1.025);
  filter: grayscale(0.7) contrast(0.96);
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
}

.portrait-caption span {
  color: var(--clay-deep);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
}

.about-copy {
  padding-top: clamp(0rem, 4vw, 4rem);
}

.lead-copy {
  max-width: 48rem;
  margin-bottom: 2.2rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  line-height: 1.45;
}

.about-details summary {
  display: none;
}

.about-details-content {
  display: block;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  color: var(--muted);
}

.copy-columns p {
  margin-bottom: 0;
}

.about-copy blockquote {
  margin: 2.5rem 0 0;
  padding: 0 0 0 2rem;
  border-left: 2px solid var(--clay-deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-style: italic;
  line-height: 1.35;
}

.signature {
  margin: 1rem 0 0 2rem;
  color: var(--clay-deep);
  font-family: var(--serif);
  font-style: italic;
}

.benefits {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  color: var(--cream);
  background: var(--green-deep);
}

.benefits-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.benefits-heading h2 {
  max-width: 37rem;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: grid;
  min-height: 5.5rem;
  align-content: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 250, 242, 0.17);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.benefits-list li:nth-child(odd) {
  border-right: 1px solid rgba(255, 250, 242, 0.17);
}

.benefits-list span {
  margin-bottom: 0.4rem;
  color: #d99b84;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
}

.section-heading h2 {
  max-width: 48rem;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.swipe-hint {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: flex;
  min-height: 35.5rem;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.55);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.service-card:hover {
  transform: translateY(-0.45rem);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--cream);
  border-color: var(--green);
  background: var(--green);
}

.service-card.featured:hover {
  background: var(--green-soft);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.service-number {
  color: var(--clay-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.featured .service-number {
  color: #e2a28c;
}

.service-tag {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured .service-tag {
  color: rgba(255, 250, 242, 0.72);
  border-color: rgba(255, 250, 242, 0.25);
}

.service-card h3 {
  min-height: 4.75rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.85rem, 2.4vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-image {
  overflow: hidden;
  height: 200px;
  margin-bottom: 1.35rem;
  border-radius: 1rem;
  background: var(--paper-deep);
}

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

.service-image-detente img {
  object-position: center 56%;
}

.service-image-therapeutique img {
  object-position: center 50%;
}

.service-image-reiki img {
  object-position: center 46%;
}

.service-card > p {
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.featured > p {
  color: rgba(255, 250, 242, 0.72);
}

.pricing {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.featured .pricing {
  border-color: rgba(255, 250, 242, 0.2);
}

.pricing p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.pricing span {
  color: var(--muted);
  font-size: 0.82rem;
}

.featured .pricing span {
  color: rgba(255, 250, 242, 0.66);
}

.pricing strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.pricing .price-note {
  display: block;
  min-height: 2.8rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.featured .card-link {
  border-color: rgba(255, 250, 242, 0.2);
}

.wellness-collage {
  overflow: hidden;
  padding-block: clamp(4rem, 6vw, 5.5rem);
  background: var(--paper-deep);
}

.wellness-stage {
  position: relative;
  display: grid;
  min-height: 36rem;
  place-items: center;
}

.wellness-photo {
  overflow: hidden;
  width: min(52vw, 40rem);
  height: 36rem;
  margin: 0;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.wellness-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.wellness-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(10, 37, 32, 0.12);
  text-align: center;
}

.wellness-card p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.wellness-quote {
  top: 2rem;
  left: 0;
  width: min(35rem, 43%);
}

.wellness-quote p {
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  line-height: 1.35;
}

.wellness-quote cite {
  display: block;
  margin-top: 1.6rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: normal;
}

.wellness-invitation {
  right: 0;
  bottom: 2rem;
  width: min(31rem, 38%);
}

.wellness-invitation p {
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.34;
}

.schedule-section {
  background: var(--cream);
}

.schedule-list {
  border-top: 1px solid var(--line);
}

.schedule-row {
  display: grid;
  grid-template-columns: 3rem minmax(13rem, 0.95fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 2rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, color 220ms ease;
}

.schedule-row:hover {
  padding-inline: 1rem;
  color: var(--clay-deep);
}

.day-index {
  margin-bottom: 0;
  color: var(--clay-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.schedule-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.booking-section {
  color: var(--cream);
  background: var(--green);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(26rem, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.booking-intro {
  position: sticky;
  top: 8rem;
}

.booking-intro h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
}

.booking-intro > p:not(.eyebrow) {
  max-width: 32rem;
  color: rgba(255, 250, 242, 0.74);
  font-size: 1.06rem;
}

.booking-note {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.9rem;
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-block: 1px solid rgba(255, 250, 242, 0.19);
}

.booking-note > span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.4);
  border-radius: 50%;
  color: #e1a58f;
  font-size: 0.72rem;
}

.booking-note p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.82rem;
}

.booking-widget {
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  box-shadow: 0 28px 80px rgba(4, 20, 17, 0.34);
}

.widget-bar {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(21, 43, 39, 0.12);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.secure-label {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: var(--green);
  background: #e8f0ec;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-widget iframe {
  display: block;
  width: 100%;
  height: 44rem;
  border: 0;
  background: white;
}

.widget-fallback {
  margin: 0;
  padding: 0.9rem 1.4rem 1.1rem;
  border-top: 1px solid rgba(21, 43, 39, 0.1);
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.widget-fallback a {
  color: var(--green);
  font-weight: 700;
}

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

.location-section {
  background: var(--paper-deep);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1fr) minmax(18rem, 0.82fr);
  gap: 1.25rem;
}

.location-heading {
  padding-right: 2rem;
}

.location-heading h2 {
  max-width: 22rem;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
}

.location-card,
.credential-card {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius);
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--cream);
  background: var(--clay-deep);
}

.location-kicker {
  margin: 1.4rem 0 0.45rem;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-card address {
  margin-bottom: 1.4rem;
  color: rgba(255, 250, 242, 0.77);
  font-style: normal;
}

.location-card .text-link {
  margin-top: auto;
}

.credential-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(18, 55, 47, 0.15);
  background: rgba(255, 250, 242, 0.58);
}

.partner-logo {
  display: grid;
  width: 100%;
  min-height: 6.5rem;
  place-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background: white;
}

.partner-logo img {
  width: 100%;
  max-height: 5.2rem;
  object-fit: contain;
}

.happy-logo img {
  max-height: 4.8rem;
}

.network-logo {
  margin-bottom: auto;
}

.credential-card p {
  margin: 1.35rem 0 0.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-card small {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--clay-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  color: var(--cream);
  background: #081b18;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 4.5rem;
}

.footer-name {
  margin-bottom: 0.1rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer-top div > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.54);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

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

.mobile-book {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-enter {
  from { transform: scale(1.045); opacity: 0.72; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 34rem;
  }

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

  .location-heading {
    grid-column: 1 / -1;
  }

  .location-heading h2 {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 5rem;
    padding: 0.8rem 1.25rem;
  }

  .site-header.is-scrolled {
    min-height: 4.7rem;
  }

  .brand-mark {
    width: 2.75rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open {
    color: var(--cream);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.05rem;
    padding: calc(6rem + env(safe-area-inset-top)) 2rem calc(5rem + env(safe-area-inset-bottom));
    transform: translateY(-1.5rem);
    opacity: 0;
    color: var(--cream);
    background: var(--green-deep);
    transition: visibility 280ms, opacity 280ms ease, transform 280ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav > a {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 3.7rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .main-nav .nav-book {
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    border-color: rgba(255, 250, 242, 0.45);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  .site-header.is-scrolled .main-nav .nav-book {
    color: var(--cream);
    border-color: rgba(255, 250, 242, 0.45);
    background: transparent;
  }

  .site-header.menu-open .menu-lines i:first-child {
    transform: translateY(0.18rem) rotate(45deg);
  }

  .site-header.menu-open .menu-lines i:last-child {
    transform: translateY(-0.18rem) rotate(-45deg);
  }

  html:not(.js) .main-nav {
    position: static;
    visibility: visible;
    flex-direction: row;
    padding: 0;
    transform: none;
    opacity: 1;
    background: transparent;
  }

  html:not(.js) .main-nav a:not(.nav-book) {
    display: none;
  }

  .about-grid {
    grid-template-columns: minmax(15rem, 0.76fr) minmax(0, 1.24fr);
    gap: 3rem;
  }

  .copy-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefits-inner,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-heading > p {
    max-width: 34rem;
  }

  .wellness-photo {
    width: min(57vw, 36rem);
  }

  .wellness-quote {
    width: 45%;
  }

  .wellness-invitation {
    width: 40%;
  }

  .schedule-row {
    grid-template-columns: 2.5rem minmax(10rem, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
  }

  .hours {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 720px) {
  h2 {
    font-size: clamp(2.25rem, 10vw, 2.85rem);
    line-height: 1.04;
  }

  .page-width {
    width: min(100% - 1.5rem, 87rem);
  }

  .section-pad {
    padding-block: 3.75rem;
  }

  .receipt-strip-inner {
    min-height: 3.75rem;
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .receipt-strip p {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .site-header {
    min-height: calc(4.65rem + env(safe-area-inset-top));
    padding: calc(0.65rem + env(safe-area-inset-top)) 1rem 0.65rem;
  }

  .site-header.is-scrolled {
    min-height: calc(4.45rem + env(safe-area-inset-top));
  }

  .brand-mark {
    width: 2.65rem;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 42rem;
    height: min(100svh, 46rem);
    max-height: 46rem;
    align-items: center;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 25, 21, 0.95) 0%, rgba(7, 29, 25, 0.72) 65%, rgba(7, 29, 25, 0.36) 100%),
      linear-gradient(0deg, rgba(6, 24, 21, 0.86) 0%, transparent 45%);
  }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 5.5rem;
  }

  .hero h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(3.25rem, 14vw, 4.2rem);
    line-height: 0.92;
  }

  .hero-lead {
    max-width: 29rem;
    margin-bottom: 1.45rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: center;
    flex-flow: row wrap;
    gap: 0.9rem 1.2rem;
  }

  .button {
    min-height: 3.15rem;
    padding: 0.75rem 1.1rem;
  }

  .hero-trust {
    bottom: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .hero-trust p:not(:first-child) {
    padding-left: 0.8rem;
  }

  .hero-trust strong {
    font-size: 1.05rem;
  }

  .hero-trust span {
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portrait-wrap {
    width: min(100%, 30rem);
  }

  .portrait-frame {
    border-radius: 8rem 8rem 1rem 1rem;
  }

  .portrait-frame img {
    height: 16.5rem;
    aspect-ratio: auto;
    object-position: center 27%;
  }

  .about-copy {
    padding-top: 0;
  }

  .lead-copy {
    margin-bottom: 1.4rem;
    font-size: 1.2rem;
  }

  .about-details summary {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.7rem;
    border-block: 1px solid var(--line);
    color: var(--clay-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    list-style: none;
    text-transform: uppercase;
    cursor: pointer;
  }

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

  .about-details summary > span:last-child {
    font-size: 1.1rem;
    transition: transform 180ms ease;
  }

  .about-details .summary-close {
    display: none;
  }

  .about-details[open] .summary-open {
    display: none;
  }

  .about-details[open] .summary-close {
    display: inline;
  }

  .about-details[open] summary > span:last-child {
    transform: rotate(45deg);
  }

  .about-details-content {
    padding-top: 1.25rem;
  }

  .copy-columns {
    gap: 0.7rem;
  }

  .about-copy blockquote {
    margin-top: 1.8rem;
    padding-top: 0;
    font-size: 1.35rem;
  }

  .about-copy blockquote {
    padding-left: 1.25rem;
  }

  .signature {
    margin-left: 1.25rem;
  }

  .benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-list li {
    min-height: 4.7rem;
    padding: 0.7rem 0.8rem;
    font-size: 1rem;
    line-height: 1.25;
  }

  .benefits-list li:nth-child(odd) {
    border-right: 1px solid rgba(255, 250, 242, 0.17);
  }

  .benefits-list span {
    margin-bottom: 0.25rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0.7rem;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
  }

  .services-grid {
    display: flex;
    gap: 0.8rem;
    margin-inline: -0.75rem;
    padding: 0 0.75rem 0.85rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .service-card:last-child {
    width: calc(100vw - 2.25rem);
    min-width: calc(100vw - 2.25rem);
    max-width: 31rem;
    grid-column: auto;
    min-height: 32rem;
    padding: 1.45rem;
    scroll-snap-align: start;
  }

  .service-top {
    margin-bottom: 1.15rem;
  }

  .service-card h3 {
    min-height: 0;
    margin-bottom: 1rem;
    font-size: 1.9rem;
  }

  .service-image {
    margin-bottom: 1.1rem;
    border-radius: 0.85rem;
  }

  .service-card > p {
    margin-bottom: 1.25rem;
    line-height: 1.52;
  }

  .wellness-collage {
    padding-block: 3rem;
  }

  .wellness-stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .wellness-photo {
    order: 2;
    width: calc(100% - 1.5rem);
    height: 15rem;
    margin: -1.15rem 0 0 auto;
    border-radius: 0.25rem;
  }

  .wellness-card {
    position: relative;
    padding: 1.25rem;
  }

  .wellness-quote {
    top: auto;
    left: auto;
    order: 1;
    width: calc(100% - 1.5rem);
    margin-right: auto;
  }

  .wellness-quote p {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .wellness-quote cite {
    margin-top: 0.75rem;
    font-size: 0.85rem;
  }

  .wellness-invitation {
    right: auto;
    bottom: auto;
    order: 3;
    width: calc(100% - 1.5rem);
    margin: -1.5rem 0 0 auto;
  }

  .wellness-invitation p {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .schedule-row {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
    padding-block: 1.2rem;
  }

  .schedule-row h3 {
    font-size: 2rem;
  }

  .hours {
    grid-column: 2;
  }

  .booking-layout {
    gap: 1.7rem;
  }

  .booking-intro h2 {
    font-size: 2.65rem;
  }

  .booking-note {
    margin: 1.3rem 0 0;
    padding: 1rem 0;
  }

  .booking-intro > .button {
    display: none;
  }

  .booking-widget {
    display: none;
  }

  .mobile-booking-card {
    display: block;
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--ink);
    background: var(--cream);
    box-shadow: 0 20px 55px rgba(4, 20, 17, 0.24);
  }

  .mobile-booking-label {
    display: inline-flex;
    margin-bottom: 1.5rem;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    color: var(--green);
    background: #e4eee9;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-booking-card h3 {
    margin-bottom: 0.8rem;
    font-size: 2rem;
    line-height: 1.05;
  }

  .mobile-booking-card p {
    margin-bottom: 1.25rem;
    color: var(--muted);
    line-height: 1.5;
  }

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

  .location-heading {
    grid-column: auto;
  }

  .location-card,
  .credential-card {
    min-height: 16rem;
    padding: 1.35rem;
  }

  .partner-logo {
    min-height: 5.5rem;
    padding: 0.8rem;
  }

  .partner-logo img,
  .happy-logo img {
    max-height: 4.1rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-name {
    font-size: 2.4rem;
  }

  .footer-bottom {
    padding-bottom: 6.3rem;
  }

  .mobile-book {
    position: fixed;
    z-index: 90;
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 999px;
    color: var(--cream);
    background: var(--clay-deep);
    box-shadow: 0 12px 35px rgba(8, 27, 24, 0.3);
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .menu-label {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 3.7rem);
  }

  .hero-trust p:nth-child(2) {
    display: none;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card h3 {
    min-height: 0;
  }

  .benefits-list li {
    font-size: 0.92rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 350px) {
  .brand {
    gap: 0.4rem;
  }

  .brand-mark {
    width: 2.4rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-actions .button {
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) and (max-height: 600px) {
  .hero {
    min-height: 36rem;
    height: auto;
    max-height: none;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media (hover: none) {
  .button:hover,
  .service-card:hover,
  .schedule-row:hover {
    transform: none;
  }

  .service-card:hover {
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
