/* ====== motion.css mechanics ====== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
[data-parallax] { will-change: transform; }
[data-reveal]   { will-change: transform, opacity; }
[data-cursor] { position: fixed; top: 0; left: 0; pointer-events: none; transform: translate(-50%, -50%); z-index: 9999; }
@media (hover: none) { [data-cursor] { display: none !important; } }
[data-preloader] { position: fixed; inset: 0; z-index: 9998; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ====== Design System ====== */
:root {
  --indigo:    #1C2B3A;
  --indigo-dk: #111C27;
  --rust:      #A0613B;
  --rust-dk:   #8B4F2C;
  --brown:     #4A3728;
  --tan:       #D4C5B9;
  --sage:      #8B9B7F;
  --bone:      #F2EDE6;
  --bone-dim:  #C8C0B5;

  --ff-head:  'Fraunces', Georgia, serif;
  --ff-body:  'Barlow', system-ui, sans-serif;

  --step--1:  clamp(0.8rem,   0.75rem + 0.25vw, 0.9rem);
  --step-0:   clamp(1rem,     0.95rem + 0.3vw,  1.1rem);
  --step-1:   clamp(1.15rem,  1rem + 0.7vw,     1.4rem);
  --step-2:   clamp(1.4rem,   1.1rem + 1.3vw,   2.1rem);
  --step-3:   clamp(2rem,     1.4rem + 3vw,     4rem);
  --step-4:   clamp(3rem,     1.8rem + 5.5vw,   7rem);
  --step-5:   clamp(4rem,     2rem + 8vw,       10rem);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--indigo);
  color: var(--bone);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ====== Custom Cursor ====== */
.cursor {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rust);
  mix-blend-mode: normal;
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor.is-hover {
  width: 32px; height: 32px;
  background: transparent;
  border: 1.5px solid var(--rust);
}

/* ====== Preloader ====== */
.preloader {
  background: var(--indigo-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.preloader__wordmark {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  animation: preload-fade 0.8s 0.2s ease forwards;
}
.preloader__sub {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  opacity: 0;
  animation: preload-fade 0.6s 0.6s ease forwards;
}
.preloader__bar {
  width: 120px; height: 1px;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  animation: preload-bar 1.6s 0.3s ease forwards;
}
@keyframes preload-fade { to { opacity: 1; } }
@keyframes preload-bar { to { transform: scaleX(1); } }

/* ====== Nav ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(17, 28, 39, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(212, 197, 185, 0.08);
}
.nav__logo {
  font-family: var(--ff-head);
  font-size: var(--step-0);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.nav__logo span { color: var(--rust); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--bone); }
.nav__cta {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--rust);
  border: none;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: background 0.25s;
}
.nav__cta:hover { background: var(--rust-dk); }

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 42%;
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 4rem 6rem 5rem;
}
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.8rem;
}
.hero__headline {
  font-family: var(--ff-head);
  font-size: var(--step-4);
  font-weight: 400;
  line-height: 1.04;
  color: var(--bone);
  margin-bottom: 1rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--tan);
}
.hero__sub {
  font-family: var(--ff-body);
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--bone-dim);
  max-width: 34ch;
  line-height: 1.55;
  margin-bottom: 2.8rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--rust);
  border: none;
  padding: 1rem 2.2rem;
  cursor: pointer;
  display: inline-block;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--rust-dk); }
.btn-ghost {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: transparent;
  border: 1px solid rgba(212, 197, 185, 0.3);
  padding: 1rem 2.2rem;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--bone-dim); color: var(--bone); }
.hero__phone {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  margin-top: 2rem;
}
.hero__phone a { color: var(--tan); transition: color 0.2s; }
.hero__phone a:hover { color: var(--bone); }

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--indigo) 0%, transparent 30%);
}

/* Geological diagonal accent on hero */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rust) 0%, var(--brown) 50%, transparent 100%);
  z-index: 3;
}

/* ====== Trust Strip ====== */
.trust-strip {
  background: var(--brown);
  padding: 0.9rem 5rem;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  white-space: nowrap;
}
.trust-strip__divider {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

/* ====== Section wrapper ====== */
.section { padding: 7rem 5rem; }
.section--dark { background: var(--indigo-dk); }
.section--earth { background: var(--brown); }
.section--tan { background: var(--tan); color: var(--indigo); }
.section--bone { background: var(--bone); color: var(--indigo); }

.label {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
  display: block;
}
.section--bone .label,
.section--tan .label { color: var(--rust-dk); }

/* ====== Philosophy Section ====== */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
  min-height: 70vh;
}
.philosophy__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.philosophy__image img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.philosophy__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(17,28,39,0.5));
}
.philosophy__content {
  padding: 6rem 5rem 6rem 6rem;
  background: var(--indigo-dk);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.philosophy__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 2rem;
}
.philosophy__headline em {
  font-style: italic;
  color: var(--tan);
}
.philosophy__body {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 1.5rem;
}
.philosophy__quote {
  margin-top: 2.5rem;
  border-left: 2px solid var(--rust);
  padding-left: 1.5rem;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--tan);
  line-height: 1.5;
}

/* ====== Conditions Section ====== */
.conditions {
  padding: 7rem 5rem;
}
.conditions__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}
.conditions__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bone);
}
.conditions__intro {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.65;
}
.conditions__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid rgba(212, 197, 185, 0.12);
}
.condition-item {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(212, 197, 185, 0.12);
  border-bottom: 1px solid rgba(212, 197, 185, 0.12);
  transition: background 0.3s;
  cursor: default;
}
.condition-item:last-child { border-right: none; }
.condition-item:hover { background: rgba(160, 97, 59, 0.12); }
.condition-item__num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--rust);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}
.condition-item__name {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ====== Practitioners ====== */
.practitioners {
  background: var(--bone);
  color: var(--indigo);
  padding: 0;
  overflow: hidden;
}
.practitioners__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.practitioner {
  position: relative;
  overflow: hidden;
}
.practitioner__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.practitioner__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.practitioner:hover .practitioner__img img {
  transform: scale(1.04);
}
.practitioner__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(17,28,39,0.7));
}
.practitioner__info {
  padding: 3rem 4rem 4rem;
  background: var(--bone);
}
.practitioner:first-child .practitioner__info {
  border-right: 1px solid rgba(74, 55, 40, 0.1);
}
.practitioner__name {
  font-family: var(--ff-head);
  font-size: var(--step-2);
  font-weight: 400;
  color: var(--indigo);
  margin-bottom: 0.3rem;
}
.practitioner__creds {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
}
.practitioner__bio {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.68;
  max-width: 48ch;
}
.practitioner__years {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.practitioner__years-num {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 300;
  color: var(--rust);
  line-height: 1;
}
.practitioner__years-label {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ====== Treatments Section ====== */
.treatments {
  background: var(--indigo);
  padding: 7rem 5rem;
}
.treatments__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
}
.treatments__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
  max-width: 18ch;
}
.treatments__note {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--bone-dim);
  max-width: 44ch;
  line-height: 1.6;
}
.treatments__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(212, 197, 185, 0.1);
  border-left: 1px solid rgba(212, 197, 185, 0.1);
}
.treatment-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(212, 197, 185, 0.1);
  border-bottom: 1px solid rgba(212, 197, 185, 0.1);
  transition: background 0.3s;
}
.treatment-item:hover { background: rgba(160, 97, 59, 0.08); }
.treatment-item__icon {
  width: 28px; height: 2px;
  background: var(--rust);
  margin-bottom: 1.8rem;
}
.treatment-item__name {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.treatment-item__desc {
  font-size: var(--step--1);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.6;
}

/* ====== Testimonials ====== */
.testimonials {
  background: var(--indigo-dk);
  padding: 7rem 5rem;
}
.testimonials__header {
  margin-bottom: 5rem;
}
.testimonials__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
  max-width: 28ch;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.testimonial {
  padding: 3.5rem 3rem;
  border-top: 1px solid rgba(212, 197, 185, 0.1);
  border-right: 1px solid rgba(212, 197, 185, 0.1);
}
.testimonial:last-child { border-right: none; }
.testimonial__condition {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
}
.testimonial__narrative {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--bone);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.testimonial__patient {
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  text-transform: uppercase;
}

/* ====== Geology Break ====== */
.geology-break {
  position: relative;
  height: 45vh;
  overflow: hidden;
}
.geology-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.geology-break::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--indigo-dk) 0%, transparent 25%, transparent 75%, var(--indigo) 100%);
}
.geology-break__text {
  position: absolute;
  bottom: 4rem; left: 5rem;
  z-index: 2;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--bone);
  max-width: 32ch;
  line-height: 1.3;
}

/* ====== Contact Details Section ====== */
.contact-details {
  padding: 7rem 5rem;
}
.contact-details__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-details__header {
  margin-bottom: 4rem;
}
.contact-details__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.2;
}
.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.contact-card {
  padding: 2rem 0;
}
.contact-card__icon {
  color: var(--rust);
  margin-bottom: 1.25rem;
}
.contact-card__title {
  font-family: var(--ff-head);
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 0.75rem;
}
.contact-card__value {
  font-size: var(--step-0);
  color: var(--bone);
  margin-bottom: 0.75rem;
}
.contact-card__link {
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card__link:hover { color: var(--bone); }
.contact-card__note {
  font-size: var(--step--1);
  color: var(--bone-dim);
  line-height: 1.6;
}
.contact-card__hours {
  margin-bottom: 0.75rem;
}
.contact-card__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: var(--step--1);
  color: var(--bone);
  border-bottom: 1px solid rgba(212,197,185,0.08);
}
.contact-card__hours-row--closed {
  color: var(--bone-dim);
}

/* ====== Map Section ====== */
.map-section {
  padding: 5rem;
  background: var(--indigo);
}
.map-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.map-section__header {
  margin-bottom: 2.5rem;
}
.map-section__headline {
  font-family: var(--ff-head);
  font-size: var(--step-2);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.3;
}
.map-section__frame {
  border-radius: 16px;
  overflow: hidden;
  max-height: 300px;
}
.map-section__frame iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* ====== Booking Section ====== */
.booking {
  background: var(--indigo);
  padding: 8rem 5rem;
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8rem;
  align-items: start;
}
.booking__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.booking__sub {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 44ch;
}
.booking__detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.booking__detail-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.booking__detail-label {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  min-width: 90px;
  flex-shrink: 0;
}
.booking__detail-value {
  font-size: var(--step--1);
  color: var(--bone-dim);
}
.booking__detail-value a { color: var(--tan); transition: color 0.2s; }
.booking__detail-value a:hover { color: var(--bone); }

.booking__form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 197, 185, 0.1);
  padding: 3.5rem;
}
.form__title {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.form__note {
  font-size: var(--step--1);
  color: var(--bone-dim);
  margin-bottom: 2.5rem;
}
.form__note em { color: var(--rust); font-style: normal; }
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form__label {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.form__input,
.form__select,
.form__textarea {
  background: rgba(242, 237, 230, 0.05);
  border: 1px solid rgba(212, 197, 185, 0.15);
  color: var(--bone);
  font-family: var(--ff-body);
  font-size: var(--step-0);
  font-weight: 300;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form__select { cursor: pointer; }
.form__select option { background: var(--indigo); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--rust); }
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(200,192,181,0.4); }
.form__textarea { min-height: 110px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--rust);
  border: none;
  color: var(--bone);
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.25s;
}
.form__submit:hover { background: var(--rust-dk); }
.form__disclaimer {
  font-size: 0.72rem;
  color: var(--bone-dim);
  opacity: 0.5;
  margin-top: 1rem;
  line-height: 1.5;
  text-align: center;
}

/* ====== Footer ====== */
footer {
  background: var(--indigo-dk);
  padding: 4rem 5rem;
  border-top: 1px solid rgba(212, 197, 185, 0.08);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer__brand {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  color: var(--bone);
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: var(--step--1);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.6;
  max-width: 30ch;
}
.footer__col-title {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
}
.footer__links a {
  font-size: var(--step--1);
  color: var(--bone-dim);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--bone); }
.footer__bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 197, 185, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: var(--step--1);
  color: var(--bone-dim);
  opacity: 0.4;
}
.footer__address {
  font-size: var(--step--1);
  color: var(--bone-dim);
  opacity: 0.4;
  text-align: right;
}

/* ====== Form Status Messages ====== */
.form-success {
  color: var(--sage) !important;
  opacity: 1 !important;
}
.form-error {
  color: #d47979 !important;
  opacity: 1 !important;
}

/* ====== Accessibility ====== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--rust);
  color: var(--bone);
  padding: 0.75rem 1.5rem;
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* Focus-visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
.form__input:focus-visible,
.form__select:focus-visible,
.form__textarea:focus-visible {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(160, 97, 59, 0.2);
}

/* Required field indicator */
.form__label--required::after {
  content: ' *';
  color: var(--rust);
}

/* ====== About — Physician Full Bio (Dr. Fong) ====== */
.about-physician {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 80vh;
  background: var(--bone);
  color: var(--indigo);
}
.about-physician__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about-physician__image img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-physician__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bone) 100%);
}
.about-physician__content {
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-physician__creds {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
}
.about-physician__name {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-physician__intro {
  font-size: var(--step-0);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 55, 40, 0.12);
}
.about-physician__subhead {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--rust-dk);
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
}
.about-physician__body {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-physician__body em { font-style: italic; color: var(--rust-dk); }

/* ====== About — Sammy Valera ====== */
.about-practitioner {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 0;
  align-items: stretch;
  min-height: 70vh;
  background: var(--indigo);
  color: var(--bone);
}
.about-practitioner__content {
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-practitioner__creds {
  font-family: var(--ff-body);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
}
.about-practitioner__name {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-practitioner__intro {
  font-size: var(--step-0);
  font-weight: 400;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 197, 185, 0.12);
}
.about-practitioner__subhead {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--tan);
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
}
.about-practitioner__body {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-practitioner__years {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.about-practitioner__years-num {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 300;
  color: var(--rust);
  line-height: 1;
}
.about-practitioner__years-label {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.about-practitioner__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about-practitioner__image img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-practitioner__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 50%, var(--indigo) 100%);
}

/* ====== About — Why Sierra Integrative ====== */
.about-why {
  padding: 8rem 5rem;
}
.about-why__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-why__header {
  margin-bottom: 5rem;
}
.about-why__headline {
  font-family: var(--ff-head);
  font-size: var(--step-3);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
}
.about-why__headline em {
  font-style: italic;
  color: var(--tan);
}
.about-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.about-why__card {
  padding: 2.5rem;
  border: 1px solid rgba(212, 197, 185, 0.1);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.about-why__card:hover {
  background: rgba(160, 97, 59, 0.06);
  border-color: rgba(160, 97, 59, 0.3);
}
.about-why__card-num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--rust);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.about-why__card-title {
  font-family: var(--ff-head);
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.about-why__card-body {
  font-size: var(--step--1);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.65;
}
.about-why__card-body em {
  font-style: italic;
  color: var(--tan);
}

/* ====== About — hero variant ====== */
.about-hero {
  min-height: 85svh;
}

/* ====== Responsive — About pages ====== */
@media (max-width: 900px) {
  .about-physician { grid-template-columns: 1fr; }
  .about-physician__image { min-height: 340px; order: -1; }
  .about-physician__image::after { background: linear-gradient(to bottom, transparent 40%, var(--bone) 100%); }
  .about-physician__content { padding: 3rem 2rem; }
  .about-practitioner { grid-template-columns: 1fr; }
  .about-practitioner__image { min-height: 340px; order: -1; }
  .about-practitioner__image::after { background: linear-gradient(to bottom, transparent 40%, var(--indigo) 100%); }
  .about-practitioner__content { padding: 3rem 2rem; }
  .about-why { padding: 5rem 2rem; }
  .about-why__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-why__card { padding: 2rem; }
}

/* ====== Mobile Hamburger ====== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 102;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(17, 28, 39, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav__drawer.is-open {
  display: flex;
}
.nav__drawer a {
  font-family: var(--ff-head);
  font-size: var(--step-2);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__drawer a:hover { color: var(--rust); }
.nav__drawer .nav__cta {
  margin-top: 1rem;
  font-size: var(--step-0);
  padding: 1rem 2.4rem;
}

/* ====== Sticky Mobile CTA ====== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--rust);
  padding: 0;
}
.mobile-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: var(--ff-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.mobile-cta__btn:first-child {
  background: var(--rust);
  border-right: 1px solid rgba(242, 237, 230, 0.15);
}
.mobile-cta__btn:last-child {
  background: var(--rust-dk);
}
.mobile-cta__btn:active {
  background: var(--brown);
}

/* ====== Responsive ====== */
/* Tablet: fix the 7-column conditions grid */
@media (max-width: 1100px) {
  .conditions__grid { grid-template-columns: repeat(4, 1fr); }
  .condition-item:nth-child(4n) { border-right: none; }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-cta { display: block; }
  body { padding-bottom: 56px; } /* space for sticky CTA */
  .hero { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero__content { padding: 7rem 2rem 5rem; }
  .section { padding: 5rem 2rem; }
  .trust-strip { padding: 0.9rem 2rem; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__image { min-height: 340px; }
  .philosophy__content { padding: 4rem 2rem; }
  .conditions { padding: 5rem 2rem; }
  .conditions__header { grid-template-columns: 1fr; }
  .conditions__grid { grid-template-columns: repeat(2, 1fr); }
  .condition-item:nth-child(2n) { border-right: none; }
  .condition-item:nth-child(4n) { border-right: none; }
  .practitioners__inner { grid-template-columns: 1fr; }
  .practitioner:first-child .practitioner__info { border-right: none; border-bottom: 1px solid rgba(74,55,40,0.1); }
  .practitioner__info { padding: 2rem; }
  .treatments { padding: 5rem 2rem; }
  .treatments__header { flex-direction: column; gap: 1.5rem; }
  .treatments__list { grid-template-columns: 1fr 1fr; }
  .testimonials { padding: 5rem 2rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { border-right: none; }
  .geology-break { height: 30vh; }
  .geology-break__text { font-size: var(--step-1); left: 2rem; }
  .contact-details { padding: 5rem 2rem; }
  .contact-details__grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-section { padding: 3rem 2rem; }
  .map-section__frame { max-height: 250px; }
  .map-section__frame iframe { height: 250px; }
  .booking { padding: 5rem 2rem; }
  .booking__inner { grid-template-columns: 1fr; gap: 3rem; }
  .booking__form { padding: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  footer { padding: 3rem 2rem 5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__address { text-align: center; }
}

/* ====== SplitText-driven hero headline ====== */
.hero__headline .word { display: inline-block; overflow: hidden; }
.hero__headline .word-inner { display: inline-block; }
