:root {
  --dark-forest: oklch(27.38% 0.0597 147);
  --palette-sage: oklch(60.68% 0.078 130.7);
  --pale-lime: oklch(93.76% 0.0827 113.1);
  --pastel-mint: oklch(96.61% 0.0425 129);
  --ink: var(--dark-forest);
  --ink-soft: oklch(38% 0.05 145);
  --leaf: var(--palette-sage);
  --leaf-deep: var(--dark-forest);
  --moss: var(--palette-sage);
  --sage: var(--pale-lime);
  --rice: var(--pastel-mint);
  --paper: oklch(95.2% 0.056 124);
  --warm-paper: var(--pale-lime);
  --gold: var(--pale-lime);
  --gold-soft: var(--pastel-mint);
  --gold-deep: oklch(43% 0.075 132);
  --on-dark: var(--pastel-mint);
  --on-dark-muted: oklch(88.5% 0.049 125);
  --line: oklch(60.68% 0.078 130.7 / 0.38);
  --line-light: oklch(96.61% 0.0425 129 / 0.2);
  --error: oklch(44.93% 0.129 23.9);
  --shadow-soft: 0 24px 80px oklch(16% 0.04 147 / 0.2);
  --shadow-tight: 0 14px 40px oklch(16% 0.04 147 / 0.16);
  --radius: 8px;
  --site-max: 1220px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--rice) 0%, var(--paper) 46%, var(--rice) 100%);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

section[id],
footer[id] {
  scroll-margin-top: 112px;
}

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px oklch(93.76% 0.0827 113.1 / 0.42);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--leaf-deep);
  color: var(--on-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  animation: header-enter 560ms var(--ease-out-expo) both;
}

.nav-shell {
  width: min(var(--site-max), calc(100% - 3rem));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(96.61% 0.0425 129 / 0.96);
  box-shadow: 0 18px 60px oklch(16% 0.04 147 / 0.13);
  transition:
    background-color 220ms var(--ease-out-quart),
    border-color 220ms var(--ease-out-quart),
    box-shadow 220ms var(--ease-out-quart);
}

.site-header.is-scrolled .nav-shell {
  background: var(--rice);
  border-color: oklch(60.68% 0.078 130.7 / 0.52);
  box-shadow: var(--shadow-tight);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  min-width: 0;
  text-decoration: none;
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-lockup strong,
.nav-links a,
.nav-cta,
.menu-button,
.mobile-menu a,
.button,
.eyebrow,
.section-kicker,
h1,
h2,
h3,
.route-number,
.note-label,
.footer-name,
.map-heading,
dt {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.brand-lockup strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.72rem;
  min-height: 44px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms var(--ease-out-quart),
    color 180ms var(--ease-out-quart),
    transform 180ms var(--ease-out-quart);
}

.nav-links a:hover {
  background: var(--sage);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--leaf-deep);
  border-radius: var(--radius);
  background: var(--leaf-deep);
  color: var(--on-dark);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out-quart),
    background-color 180ms var(--ease-out-quart),
    border-color 180ms var(--ease-out-quart);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ink);
}

.menu-button {
  display: none;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--leaf-deep);
  border-radius: var(--radius);
  background: var(--leaf-deep);
  color: var(--on-dark);
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu {
  width: min(430px, calc(100% - 2rem));
  margin: 0.5rem auto 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
  box-shadow: var(--shadow-soft);
  transform-origin: top center;
  animation: menu-enter 220ms var(--ease-out-quint) both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.78rem 0.9rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: var(--sage);
}

.mobile-menu-cta {
  justify-content: center;
  background: var(--leaf-deep);
  color: var(--on-dark) !important;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: end;
  overflow: clip;
  padding: 8.5rem 0 5.2rem;
  color: var(--on-dark);
  background: var(--leaf-deep);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: sepia(0.1) saturate(0.82) contrast(1.02) brightness(0.8);
}

.hero-shade {
  background:
    linear-gradient(90deg, oklch(19% 0.05 147 / 0.92) 0%, oklch(24% 0.058 147 / 0.76) 42%, oklch(24% 0.058 147 / 0.18) 100%),
    linear-gradient(0deg, oklch(15% 0.045 147 / 0.86) 0%, oklch(15% 0.045 147 / 0.04) 46%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--site-max), calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: end;
  gap: 3rem;
}

.hero-content {
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.1rem;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.section-kicker {
  color: var(--gold-deep);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  color: var(--on-dark);
  font-size: 5.55rem;
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.55rem;
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  margin-bottom: 0;
  color: inherit;
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 800;
}

.hero-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 1.25rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-note {
  margin: 0 0 0.25rem;
  padding: 1.2rem 0;
  border-top: 1px solid oklch(96.61% 0.0425 129 / 0.34);
  border-bottom: 1px solid oklch(96.61% 0.0425 129 / 0.18);
  color: var(--on-dark-muted);
}

.hero-note p {
  margin: 0;
}

.hero-note .note-label {
  margin-bottom: 0.55rem;
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.08rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out-quart),
    background-color 180ms var(--ease-out-quart),
    color 180ms var(--ease-out-quart),
    border-color 180ms var(--ease-out-quart),
    box-shadow 180ms var(--ease-out-quart);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px oklch(16% 0.04 147 / 0.18);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary {
  background: var(--leaf-deep);
  color: var(--on-dark);
  border-color: var(--leaf-deep);
  box-shadow: 0 16px 44px oklch(16% 0.04 147 / 0.24);
}

.button-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.button-quiet {
  background:
    linear-gradient(135deg, oklch(93.76% 0.0827 113.1 / 0.96), oklch(96.61% 0.0425 129 / 0.82));
  color: var(--leaf-deep);
  border-color: oklch(93.76% 0.0827 113.1 / 0.74);
  box-shadow:
    inset 0 0 0 1px oklch(96.61% 0.0425 129 / 0.42),
    0 14px 34px oklch(16% 0.04 147 / 0.18);
}

.button-quiet:hover {
  background: var(--sage);
  color: var(--leaf-deep);
  border-color: var(--sage);
}

.button-gold-outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: oklch(93.76% 0.0827 113.1 / 0.58);
}

.button-gold-outline:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.button-ghost-light {
  background: transparent;
  color: var(--on-dark);
  border-color: oklch(96.61% 0.0425 129 / 0.26);
}

.button-ghost-light:hover {
  background: oklch(96.61% 0.0425 129 / 0.12);
  border-color: oklch(96.61% 0.0425 129 / 0.42);
}

.ticker {
  overflow: hidden;
  background: var(--leaf-deep);
  color: var(--gold-soft);
  padding: 0.85rem 0;
  border-top: 1px solid oklch(96.61% 0.0425 129 / 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  animation: ticker-scroll 48s linear infinite;
}

.ticker-track span {
  padding-right: 0.4rem;
}

.section-pad {
  padding-block: clamp(4.25rem, 8vw, 7.5rem);
  padding-inline: max(1.5rem, calc((100% - var(--site-max)) / 2));
}

.section-heading {
  max-width: 660px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.philosophy-copy > p {
  max-width: 70ch;
  margin-bottom: 2.4rem;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.principles article {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.principles article:nth-child(1) {
  grid-column: span 5;
}

.principles article:nth-child(2) {
  grid-column: span 4;
  margin-top: 2.6rem;
}

.principles article:nth-child(3) {
  grid-column: span 3;
  margin-top: 5rem;
}

.principles img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: sepia(0.12) saturate(0.86) contrast(1.03);
}

.principles h3 {
  color: var(--leaf-deep);
  font-size: 1.28rem;
}

.principles p {
  margin: 0;
  color: var(--ink-soft);
}

.care-routes {
  background:
    linear-gradient(180deg, var(--warm-paper), var(--paper));
  border-block: 1px solid oklch(60.68% 0.078 130.7 / 0.24);
}

.routes-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.42fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: end;
  margin-bottom: clamp(1.65rem, 3vw, 2.4rem);
}

.routes-heading {
  max-width: 820px;
}

.routes-intro h2 {
  max-width: 720px;
  font-size: 3.18rem;
  line-height: 1.04;
}

.routes-summary {
  max-width: 36ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.routes-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: stretch;
}

.route-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 520px;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-tight);
}

.route-primary {
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.route-secondary {
  background: var(--rice);
  color: var(--ink);
}

.route-number {
  margin: 0;
  color: var(--gold);
  font-size: 0.96rem;
  font-weight: 800;
}

.route-panel h3 {
  font-size: 2.25rem;
}

.route-panel p:not(.route-number) {
  max-width: 50ch;
  margin: 0;
  color: inherit;
  opacity: 0.82;
}

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

.therapy-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 600;
  line-height: 1.18;
}

.route-primary .therapy-list li {
  background: oklch(96.61% 0.0425 129 / 0.07);
  border-color: oklch(96.61% 0.0425 129 / 0.18);
}

.route-secondary .therapy-list li {
  background: var(--paper);
  border-color: var(--line);
}

.practitioner {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.8fr);
  gap: clamp(2.2rem, 6vw, 5.5rem);
  align-items: center;
}

.practitioner-media {
  position: relative;
  padding: 0.65rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, oklch(96.61% 0.0425 129 / 0.94), oklch(93.76% 0.0827 113.1 / 0.28));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.practitioner-media::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid oklch(96.61% 0.0425 129 / 0.5);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  z-index: 2;
}

.practitioner-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 26%;
  border-radius: calc(var(--radius) - 2px);
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.practitioner-copy {
  max-width: 720px;
}

.practitioner-copy > p {
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.trust-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.trust-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-facts dt {
  color: var(--leaf-deep);
  font-weight: 800;
}

.trust-facts dd {
  margin: 0;
  color: var(--ink-soft);
}

.testimonials {
  overflow: clip;
  background: var(--rice);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 3rem;
}

.split-heading > p {
  max-width: 44ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.testimonial-title-line {
  display: block;
}

.testimonial-marquee {
  position: relative;
  margin-inline: min(-1.5rem, calc((var(--site-max) - 100vw) / 2));
  padding-inline: max(1.5rem, calc((100vw - var(--site-max)) / 2));
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    oklch(50% 0.03 130.7) 6%,
    oklch(50% 0.03 130.7) 94%,
    transparent 100%
  );
}

.testimonial-marquee:focus-visible {
  border-radius: var(--radius);
}

.testimonial-rail {
  display: flex;
  width: max-content;
  padding: 0.25rem 0 2.6rem;
  animation: testimonial-drift 68s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.testimonials.is-visible .testimonial-rail {
  animation-play-state: running;
}

.testimonial-marquee:hover .testimonial-rail,
.testimonial-marquee:focus-within .testimonial-rail {
  animation-play-state: paused;
}

.testimonial-group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 330px);
  gap: 1rem;
  padding-right: 1rem;
}

.testimonial-rail figure {
  --testimonial-y: 0rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-tight);
  transform: translateY(var(--testimonial-y));
  transition:
    transform 460ms var(--ease-out-quint),
    box-shadow 460ms var(--ease-out-quint),
    border-color 460ms var(--ease-out-quint),
    opacity 560ms var(--ease-out-expo);
}

.testimonial-group figure:nth-child(even) {
  --testimonial-y: 1.3rem;
}

.testimonial-rail img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(0.12) saturate(0.86) contrast(1.04) brightness(0.99);
  transition:
    transform 620ms var(--ease-out-quint),
    filter 620ms var(--ease-out-quint);
}

.testimonials.is-visible .testimonial-rail figure:hover {
  border-color: oklch(93.76% 0.0827 113.1 / 0.65);
  box-shadow: 0 18px 46px oklch(16% 0.04 147 / 0.18);
  transform: translateY(calc(var(--testimonial-y) - 0.35rem)) scale(1.012);
}

.testimonials.is-visible .testimonial-rail figure:hover img {
  filter: sepia(0.05) saturate(0.95) contrast(1.06) brightness(1);
  transform: scale(1.025);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.booking h2 {
  max-width: 13ch;
  color: var(--on-dark);
}

.booking-copy > p {
  max-width: 49ch;
  margin: 1.2rem 0 0;
  color: var(--on-dark-muted);
  font-size: 1.14rem;
}

.booking-copy .booking-support {
  color: var(--gold-soft);
}

.booking .section-kicker {
  color: var(--gold-soft);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: oklch(96.61% 0.0425 129 / 0.08);
  box-shadow: 0 24px 80px oklch(16% 0.04 147 / 0.26);
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid oklch(96.61% 0.0425 129 / 0.24);
  border-radius: var(--radius);
  background: oklch(96.61% 0.0425 129 / 0.96);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  outline: none;
  transition:
    border-color 180ms var(--ease-out-quart),
    box-shadow 180ms var(--ease-out-quart),
    background-color 180ms var(--ease-out-quart);
}

textarea {
  resize: vertical;
  min-height: 128px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px oklch(93.76% 0.0827 113.1 / 0.16);
  background: var(--rice);
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: var(--error);
}

.form-note {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.98rem;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 5.5rem) max(1.5rem, calc((100% - var(--site-max)) / 2)) 2rem;
  background: var(--leaf-deep);
  color: var(--on-dark);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.footer-grid-compact {
  grid-template-columns: minmax(180px, 0.45fr) minmax(280px, 1fr);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-name {
  margin: 0.9rem 0 0;
  color: var(--on-dark);
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-tagline {
  margin: 0.2rem 0 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.footer-visit h3 {
  margin: 0 0 1rem;
  color: var(--on-dark);
  font-size: 1.4rem;
}

.footer-visit address {
  color: var(--on-dark-muted);
  font-style: normal;
  line-height: 1.68;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.map-heading {
  margin: 0 0 0.9rem;
  color: var(--on-dark-muted);
  font-weight: 700;
}

.map-heading strong {
  display: block;
  color: var(--on-dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.map-frame {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--leaf);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.map-frame.is-loaded iframe {
  opacity: 1;
}

.footer-legal {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: var(--on-dark-muted);
  font-size: 0.95rem;
}

.nav-links a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  background: var(--sage);
  color: var(--ink);
}

.nav-cta[aria-current="page"] {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ink);
}

.page-hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: end;
  overflow: clip;
  padding: 10rem max(1.5rem, calc((100% - var(--site-max)) / 2)) 5rem;
  color: var(--on-dark);
  background: var(--leaf-deep);
}

.page-hero-bg,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

.page-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: sepia(0.1) saturate(0.82) contrast(1.02) brightness(0.78);
}

.page-hero-shade {
  background:
    linear-gradient(90deg, oklch(19% 0.05 147 / 0.94) 0%, oklch(24% 0.058 147 / 0.76) 48%, oklch(24% 0.058 147 / 0.24) 100%),
    linear-gradient(0deg, oklch(15% 0.045 147 / 0.84) 0%, oklch(15% 0.045 147 / 0.04) 54%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1,
.about-hero h1,
.booking-page h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: 4.7rem;
  line-height: 0.98;
  font-weight: 800;
}

.page-hero h1,
.booking-page h1 {
  color: var(--on-dark);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: 4.25rem;
  line-height: 1;
}

.about-hero h1 {
  color: var(--ink);
}

.route-detail {
  background: var(--rice);
}

.route-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.route-story {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 460px;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-tight);
}

.route-story-dark {
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.route-story h3 {
  font-size: 2.2rem;
}

.route-story p:not(.route-number) {
  max-width: 52ch;
  margin: 0;
  color: inherit;
  opacity: 0.84;
}

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

.quiet-list li {
  display: flex;
  min-width: 0;
}

.quiet-list a {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0.68rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  font-weight: 700;
  line-height: 1.18;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.quiet-list a:hover {
  background: oklch(25.8% 0.081 143.1 / 0.08);
  transform: translateY(-1px);
}

.quiet-list a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.route-story-dark .quiet-list a {
  background: oklch(96.61% 0.0425 129 / 0.07);
  border-color: oklch(96.61% 0.0425 129 / 0.18);
}

.route-story-dark .quiet-list a:hover {
  background: oklch(96.61% 0.0425 129 / 0.13);
  border-color: oklch(96.61% 0.0425 129 / 0.34);
}

.therapy-menu,
.practitioner-deep {
  background: var(--warm-paper);
  border-block: 1px solid oklch(60.68% 0.078 130.7 / 0.24);
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin-top: 3rem;
}

.service-directory article {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  transition:
    border-color 180ms var(--ease-out-quart),
    box-shadow 180ms var(--ease-out-quart),
    transform 180ms var(--ease-out-quart);
}

.service-directory article::before {
  content: "";
  position: absolute;
  inset: 0.45rem 0;
  z-index: 0;
  pointer-events: none;
  border-radius: var(--radius);
  background:
    linear-gradient(
      90deg,
      oklch(96.61% 0.0425 129 / 0.74),
      oklch(93.76% 0.0827 113.1 / 0.48)
    );
  opacity: 0;
  transform: scaleX(0.985);
  transform-origin: left center;
  transition:
    opacity 180ms var(--ease-out-quart),
    transform 180ms var(--ease-out-quart);
}

.service-directory article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  z-index: 2;
  pointer-events: none;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid var(--leaf-deep);
  border-right: 2px solid var(--leaf-deep);
  opacity: 0;
  transform: translate(-0.35rem, -50%) rotate(45deg);
  transition:
    opacity 180ms var(--ease-out-quart),
    transform 180ms var(--ease-out-quart);
}

.service-directory-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 100%;
  padding: 1.25rem 3rem 1.25rem 0.9rem;
  color: inherit;
  scroll-margin-top: 7rem;
  text-decoration: none;
  cursor: pointer;
}

.service-directory article:where(:hover, :focus-within) {
  border-color: oklch(43% 0.075 132 / 0.56);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px oklch(16% 0.04 147 / 0.09);
  transform: translateX(0.18rem);
}

.service-directory article:where(:hover, :focus-within)::before,
.service-directory article:where(:hover, :focus-within)::after {
  opacity: 1;
}

.service-directory article:where(:hover, :focus-within)::before {
  transform: scaleX(1);
}

.service-directory article:where(:hover, :focus-within)::after {
  transform: translate(0, -50%) rotate(45deg);
}

.service-directory article:focus-within {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}

.service-directory article:active {
  transform: translateX(0.08rem) scale(0.997);
}

.service-directory article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.service-directory span,
.process-strip span {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 800;
}

.service-directory span {
  transition:
    color 180ms var(--ease-out-quart),
    transform 180ms var(--ease-out-quart);
}

.service-directory h3 {
  margin-bottom: 0.35rem;
  color: var(--leaf-deep);
  font-size: 1.35rem;
  transition: color 180ms var(--ease-out-quart);
}

.service-directory-link:focus-visible {
  outline: 0;
  box-shadow: none;
}

.service-directory article:where(:hover, :focus-within) span,
.service-directory article:where(:hover, :focus-within) h3 {
  color: var(--gold-deep);
}

.service-directory article:where(:hover, :focus-within) span {
  transform: translateX(0.12rem);
}

.service-directory p {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-soft);
  transition: color 180ms var(--ease-out-quart);
}

.service-directory article:where(:hover, :focus-within) p {
  color: oklch(33% 0.052 145);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(260px, 0.55fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.page-cta h2 {
  max-width: 14ch;
  color: var(--on-dark);
}

.page-cta .section-kicker {
  color: var(--gold-soft);
}

.page-cta p {
  max-width: 38ch;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 1.14rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(260px, 0.52fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding-top: 10rem;
}

.about-hero-copy > p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.booking-page-copy > p {
  max-width: 62ch;
  color: var(--on-dark-muted);
  font-size: 1.16rem;
}

.about-hero-media {
  position: relative;
}

.about-hero-media::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
}

.about-hero-media img {
  position: relative;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 26%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

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

.button-ghost:hover {
  background: var(--leaf-deep);
  color: var(--on-dark);
  border-color: var(--leaf-deep);
}

.centre-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: var(--rice);
}

.centre-story-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-tight);
}

.centre-story-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.centre-story-copy p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.process-strip article {
  padding-top: 1.2rem;
}

.process-strip h3 {
  margin: 0.45rem 0;
  color: var(--leaf-deep);
}

.process-strip p {
  margin: 0;
  color: var(--ink-soft);
}

.booking-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-top: 10rem;
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.booking-page .section-kicker {
  color: var(--gold-soft);
}

.booking-page-copy {
  display: grid;
  gap: 1.25rem;
}

.contact-panel {
  display: grid;
  gap: 0.85rem;
  max-width: 470px;
  margin-top: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
}

.contact-panel h2 {
  color: var(--on-dark);
  font-size: 1.7rem;
}

.contact-panel p {
  margin: 0;
  color: var(--on-dark-muted);
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(260px, 0.55fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  background: var(--warm-paper);
}

.visit-band h2 {
  max-width: 16ch;
}

.visit-band address {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.7;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 0.52fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: end;
  min-height: 86svh;
  padding: clamp(8rem, 10vw, 9.4rem) max(1.5rem, calc((100% - var(--site-max)) / 2)) clamp(3.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 74% 22%, oklch(93.76% 0.0827 113.1 / 0.16), transparent 28rem),
    linear-gradient(180deg, var(--rice) 0%, var(--paper) 100%);
}

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

.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-block: -0.6rem;
  text-decoration: none;
}

.service-breadcrumbs a:hover {
  color: var(--leaf-deep);
}

.service-detail-copy h1 {
  max-width: 15ch;
  margin: 0 0 1.2rem;
  color: var(--ink);
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

.service-detail-copy .hero-copy {
  max-width: 62ch;
  color: var(--ink-soft);
}

.service-detail-copy .eyebrow {
  color: var(--gold-deep);
}

.service-hero-card {
  isolation: isolate;
  position: relative;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  background: var(--rice);
  box-shadow: var(--shadow-soft);
}

.service-hero-card::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

.service-hero-card img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.service-hero-card figcaption {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid oklch(96.61% 0.0425 129 / 0.24);
  border-radius: var(--radius);
  background: oklch(27.38% 0.0597 147 / 0.9);
  color: var(--on-dark);
  box-shadow: 0 16px 36px oklch(16% 0.04 147 / 0.22);
}

.service-hero-card strong,
.service-hero-card span {
  font-family: var(--font-display);
}

.service-hero-card strong {
  font-size: 1.12rem;
  line-height: 1.15;
}

.service-hero-card span {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-quick {
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.service-quick-grid {
  width: min(var(--site-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--line-light);
  overflow: hidden;
}

.service-quick-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem;
  background: var(--leaf-deep);
}

.service-quick-grid span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-quick-grid p {
  margin: 0;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.16;
}

.service-longform {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  background: var(--paper);
}

.service-detail-aside {
  align-self: start;
  position: sticky;
  top: 7.5rem;
}

.service-detail-aside h2 {
  max-width: 12ch;
  font-size: 2.4rem;
  line-height: 1;
}

.service-detail-aside p:not(.section-kicker) {
  max-width: 28ch;
  color: var(--ink-soft);
}

.service-copy-stack {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.service-copy-section {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  background: var(--rice);
}

.service-copy-section:nth-child(even) {
  background: var(--warm-paper);
}

.service-section-number {
  margin: 0;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.service-copy-section h2 {
  max-width: 16ch;
  margin-bottom: 1.1rem;
  color: var(--leaf-deep);
  font-size: clamp(1.95rem, 2.8vw, 2.4rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.service-copy-section p {
  max-width: 72ch;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.service-copy-section p:last-child {
  margin-bottom: 0;
}

.service-copy-section blockquote {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  padding: 1.2rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  background: oklch(93.76% 0.0827 113.1 / 0.14);
}

.service-detail-list,
.service-step-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
}

.service-copy-section p + .service-detail-list,
.service-copy-section p + .service-step-list {
  margin-top: 1rem;
}

.service-detail-list li,
.service-step-list li {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(96.61% 0.0425 129 / 0.72);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.service-step-list {
  counter-reset: service-step;
}

.service-step-list li {
  align-items: flex-start;
  gap: 0.75rem;
}

.service-step-list li::before {
  counter-increment: service-step;
  content: counter(service-step, decimal-leading-zero);
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 800;
}

.service-detail-list-caution li {
  border-color: oklch(44.93% 0.129 23.9 / 0.26);
  background: oklch(93% 0.035 24);
}

.service-safety {
  background: var(--rice);
}

.service-detail-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(260px, 0.56fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  background: var(--leaf-deep);
  color: var(--on-dark);
}

.service-detail-cta h2 {
  max-width: 14ch;
  color: var(--on-dark);
}

.service-detail-cta .section-kicker {
  color: var(--gold-soft);
}

.service-detail-cta p {
  max-width: 42ch;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 1.14rem;
}

.service-detail-cta .button {
  justify-self: end;
}

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

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.related-service-grid a {
  display: grid;
  align-content: space-between;
  gap: 0.6rem;
  min-height: 150px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out-quart),
    border-color 180ms var(--ease-out-quart),
    background-color 180ms var(--ease-out-quart);
}

.related-service-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-deep);
  background: var(--paper);
}

.related-service-grid a:focus-visible {
  border-color: var(--gold-deep);
}

.related-service-grid span,
.related-service-grid strong {
  font-family: var(--font-display);
}

.related-service-grid span {
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.related-service-grid strong {
  align-self: end;
  color: var(--leaf-deep);
  font-size: 1.45rem;
  line-height: 1.05;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease-out-expo),
    transform 700ms var(--ease-out-expo);
}

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

.has-js [data-reveal] > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms var(--ease-out-expo),
    transform 560ms var(--ease-out-expo);
}

.has-js [data-reveal].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.has-js [data-reveal].is-visible > *:nth-child(1) {
  transition-delay: 80ms;
}

.has-js [data-reveal].is-visible > *:nth-child(2) {
  transition-delay: 145ms;
}

.has-js [data-reveal].is-visible > *:nth-child(3) {
  transition-delay: 210ms;
}

.has-js [data-reveal].is-visible > *:nth-child(4) {
  transition-delay: 275ms;
}

.has-js :is(.tattva-row, .element-card-grid, .signature-grid, .why-grid, .testimonial-preview-grid, .testimonial-full-grid)[data-reveal] > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.has-js .ticker[data-reveal] {
  transform: none;
}

.has-js .testimonials .section-kicker,
.has-js .testimonials .split-heading > p,
.has-js .testimonial-title-line {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease-out-expo),
    transform 620ms var(--ease-out-expo);
}

.has-js .testimonials.is-visible .section-kicker,
.has-js .testimonials.is-visible .split-heading > p,
.has-js .testimonials.is-visible .testimonial-title-line {
  opacity: 1;
  transform: translateY(0);
}

.has-js .testimonials.is-visible .section-kicker {
  transition-delay: 90ms;
}

.has-js .testimonials.is-visible .testimonial-title-line:nth-child(1) {
  transition-delay: 170ms;
}

.has-js .testimonials.is-visible .testimonial-title-line:nth-child(2) {
  transition-delay: 255ms;
}

.has-js .testimonials.is-visible .split-heading > p {
  transition-delay: 330ms;
}

.has-js .testimonials .testimonial-rail figure {
  opacity: 0;
  transform: translateY(calc(var(--testimonial-y) + 1.2rem)) scale(0.985);
}

.has-js .testimonials.is-visible .testimonial-rail figure {
  opacity: 1;
  transform: translateY(var(--testimonial-y)) scale(1);
}

.has-js .testimonials.is-visible .testimonial-group figure:nth-child(1) {
  transition-delay: 220ms;
}

.has-js .testimonials.is-visible .testimonial-group figure:nth-child(2) {
  transition-delay: 290ms;
}

.has-js .testimonials.is-visible .testimonial-group figure:nth-child(3) {
  transition-delay: 360ms;
}

.has-js .testimonials.is-visible .testimonial-group figure:nth-child(4) {
  transition-delay: 430ms;
}

.has-js .testimonials.is-visible .testimonial-group figure:nth-child(5) {
  transition-delay: 500ms;
}

.has-js .testimonials.is-visible .testimonial-group figure:nth-child(6) {
  transition-delay: 570ms;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-enter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonial-drift {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3rem;
  }

  .page-hero h1,
  .about-hero h1,
  .booking-page h1,
  .service-detail-copy h1 {
    font-size: 4rem;
  }

  .nav-links a {
    padding-inline: 0.52rem;
    font-size: 0.9rem;
  }

  .hero-inner,
  .philosophy-grid,
  .routes-intro,
  .practitioner,
  .booking,
  .footer-grid {
    gap: 2rem;
  }

  .principles article:nth-child(1),
  .principles article:nth-child(2),
  .principles article:nth-child(3) {
    grid-column: span 4;
    margin-top: 0;
  }

  .service-directory {
    gap: 0 1.25rem;
  }

  .service-detail-copy h1 {
    max-width: 13ch;
    font-size: 3.55rem;
  }

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

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    justify-self: end;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .page-hero h1,
  .about-hero h1,
  .booking-page h1,
  .service-detail-copy h1 {
    font-size: 3.35rem;
  }

  .service-detail-copy h1 {
    font-size: 3.05rem;
  }

  .site-header {
    padding: 0.65rem 0;
  }

  .brand-lockup img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 86svh;
    padding: 7.4rem 0 3.2rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, oklch(19% 0.05 147 / 0.94) 0%, oklch(24% 0.058 147 / 0.74) 60%, oklch(24% 0.058 147 / 0.34) 100%),
      linear-gradient(0deg, oklch(15% 0.045 147 / 0.9) 0%, oklch(15% 0.045 147 / 0.1) 52%);
  }

  .hero-inner,
  .philosophy-grid,
  .routes-intro,
  .routes-layout,
  .practitioner,
  .booking,
  .split-heading,
  .footer-grid,
  .route-story-grid,
  .about-hero,
  .centre-story,
  .process-strip,
  .booking-page,
  .visit-band,
  .page-cta,
  .service-detail-hero,
  .service-longform,
  .service-detail-cta {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-note {
    max-width: 560px;
    margin-top: 0.4rem;
  }

  .routes-intro {
    margin-bottom: 1.5rem;
  }

  .routes-intro h2 {
    font-size: 2.55rem;
  }

  .route-panel {
    min-height: auto;
  }

  .practitioner-media {
    max-width: 430px;
  }

  .booking h2 {
    max-width: 16ch;
  }

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

  .service-directory article:nth-last-child(2) {
    border-bottom: 0;
  }

  .about-hero,
  .booking-page,
  .service-detail-hero {
    padding-top: 8rem;
  }

  .about-hero-media {
    max-width: 430px;
  }

  .service-detail-aside {
    position: static;
  }

  .service-detail-aside h2 {
    max-width: 14ch;
  }

  .service-hero-card {
    max-width: 460px;
  }

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

  .centre-story-media img {
    height: 380px;
  }

  .page-cta,
  .visit-band,
  .service-detail-cta {
    align-items: start;
  }
}

@media (min-width: 721px) and (max-width: 860px) {
  .service-detail-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.58fr);
    gap: 2rem;
    align-items: end;
    min-height: 84svh;
    padding-bottom: 4rem;
  }

  .service-detail-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 5.5vw, 3.05rem);
  }

  .service-detail-copy .hero-copy {
    font-size: 1.06rem;
    line-height: 1.48;
  }

  .service-detail-copy .hero-actions {
    margin-top: 1.4rem;
  }

  .service-hero-card {
    max-width: none;
  }

  .service-hero-card figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 0.85rem;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    width: min(100% - 2rem, var(--site-max));
    min-height: 64px;
    grid-template-columns: auto auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .principles article:nth-child(1),
  .principles article:nth-child(2),
  .principles article:nth-child(3) {
    grid-column: auto;
  }

  .therapy-list,
  .booking-form,
  .quiet-list,
  .service-detail-list,
  .service-step-list,
  .service-quick-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .trust-facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-actions .button {
    width: 100%;
  }

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

  .service-section-number {
    margin-bottom: -0.25rem;
  }

  .service-detail-cta .button {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.22rem;
    line-height: 1.06;
  }

  .page-hero h1,
  .about-hero h1,
  .booking-page h1,
  .service-detail-copy h1 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .service-detail-copy h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1;
  }

  h3,
  .route-panel h3 {
    font-size: 1.45rem;
  }

  .routes-intro h2 {
    font-size: 2.22rem;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .brand-lockup strong {
    font-size: 0.84rem;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 84svh;
    padding: 6.8rem 0 2.2rem;
  }

  .hero-inner {
    width: min(100% - 2rem, var(--site-max));
  }

  .hero-copy {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-note {
    display: none;
  }

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

  .page-hero,
  .about-hero,
  .booking-page,
  .service-detail-hero {
    padding-top: 6.8rem;
  }

  .philosophy-copy > p,
  .routes-summary,
  .practitioner-copy > p,
  .booking-copy > p,
  .split-heading > p,
  .about-hero-copy > p,
  .booking-page-copy > p,
  .centre-story-copy p,
  .page-cta p,
  .service-detail-copy .hero-copy,
  .service-detail-cta p,
  .service-copy-section p {
    font-size: 1.03rem;
  }

  .route-story h3 {
    font-size: 1.55rem;
  }

  .service-directory-link {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem;
    padding: 1.1rem 2.35rem 1.1rem 0.65rem;
  }

  .service-directory article::after {
    right: 0.85rem;
  }

  .service-detail-hero {
    min-height: auto;
    gap: 1.25rem;
    padding: 5.7rem 1rem 1.75rem;
  }

  .service-detail-copy .eyebrow {
    margin-bottom: 0.8rem;
  }

  .service-detail-copy h1 {
    margin-bottom: 0.9rem;
  }

  .service-detail-copy .hero-copy {
    line-height: 1.45;
  }

  .service-detail-copy .hero-actions {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .service-hero-card {
    width: 100%;
    max-width: none;
    padding: 0.45rem;
  }

  .service-hero-card img {
    height: clamp(220px, 62vw, 280px);
    max-height: none;
    aspect-ratio: auto;
  }

  .service-hero-card::before {
    inset: 0.8rem -0.55rem -0.55rem 0.55rem;
  }

  .service-hero-card figcaption {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    gap: 0.15rem;
    margin-top: 0;
    padding: 0.7rem 0.75rem;
  }

  .service-hero-card strong {
    font-size: 0.98rem;
  }

  .service-hero-card span {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .service-quick-grid article {
    min-height: 116px;
    gap: 1rem;
    padding: 1.05rem;
  }

  .service-copy-section {
    padding: 1.25rem;
  }

  .service-copy-section h2 {
    font-size: 1.9rem;
  }

  .service-detail-list li,
  .service-step-list li {
    min-height: 48px;
    padding: 0.78rem 0.85rem;
  }

  .service-copy-section blockquote {
    padding: 1rem;
    font-size: 1.12rem;
  }

  .related-service-grid {
    gap: 0.75rem;
    margin-top: 1.4rem;
  }

  .related-service-grid a {
    min-height: 128px;
    padding: 1rem;
  }

  .centre-story-media img {
    height: 320px;
  }

  .testimonial-group {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .testimonial-marquee {
    margin-inline: 0;
    padding-inline: 0;
  }

  .testimonial-group figure:nth-child(even) {
    --testimonial-y: 0.7rem;
  }

  .testimonial-rail img {
    height: 440px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 280px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .routes-intro h2 {
    font-size: 1.95rem;
  }

  .page-hero h1,
  .about-hero h1,
  .booking-page h1,
  .service-detail-copy h1 {
    font-size: 2.25rem;
  }

  .service-detail-copy h1 {
    font-size: 2.05rem;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .brand-lockup strong {
    font-size: 0.76rem;
  }

  .menu-button {
    min-height: 44px;
    padding: 0.66rem 0.8rem;
  }

  .button {
    min-height: 44px;
    padding: 0.68rem 0.78rem;
  }

  .service-directory-link {
    grid-template-columns: 2rem 1fr;
    padding-right: 2.15rem;
    padding-left: 0.55rem;
  }

  .service-detail-hero {
    padding-top: 5.45rem;
  }

  .service-hero-card img {
    height: clamp(206px, 64vw, 230px);
  }

  .service-hero-card figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
  }

  .service-hero-card strong {
    font-size: 0.9rem;
  }

  .service-hero-card span {
    font-size: 0.72rem;
  }
}

.nav-links a,
.nav-cta,
.menu-button,
.mobile-menu a,
.button,
.eyebrow,
.section-kicker,
.route-number,
.note-label,
label,
dt {
  font-family: var(--font-body);
}

.brand-lockup strong,
h1,
h2,
h3,
.footer-name,
.map-heading,
.hero-pretitle,
.hero-welcome,
.hero-subtitle,
.hero-sanskrit,
.hero-translation,
.letter-signoff {
  font-family: var(--font-display);
}

.home-hero {
  min-height: 90svh;
  align-items: center;
  padding: clamp(8rem, 12vw, 11rem) 0 clamp(4.2rem, 7vw, 6.2rem);
}

.home-hero .hero-bg {
  object-position: center 46%;
  filter: sepia(0.06) saturate(0.9) contrast(1.03) brightness(0.86);
}

.home-hero .hero-shade {
  background:
    linear-gradient(90deg, oklch(14% 0.052 147 / 0.95) 0%, oklch(18% 0.06 147 / 0.84) 47%, oklch(25% 0.052 147 / 0.22) 100%),
    linear-gradient(0deg, oklch(12% 0.045 147 / 0.86) 0%, oklch(15% 0.045 147 / 0.08) 58%);
}

.home-hero .hero-inner {
  grid-template-columns: minmax(0, 900px);
  align-items: center;
}

.home-hero h1 {
  max-width: 10ch;
  margin-bottom: 0.55rem;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  letter-spacing: 0;
  text-shadow: 0 3px 28px oklch(8% 0.035 147 / 0.58);
}

.hero-pretitle,
.hero-welcome,
.hero-subtitle,
.hero-sanskrit,
.hero-translation {
  margin: 0;
}

.hero-pretitle {
  margin-bottom: 1.1rem;
  color: oklch(96.61% 0.0425 129);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 18px oklch(8% 0.035 147 / 0.46);
}

.hero-welcome {
  color: var(--on-dark-muted);
  font-size: 1.04rem;
  font-weight: 600;
}

.hero-subtitle {
  color: oklch(93.76% 0.0827 113.1);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 18px oklch(8% 0.035 147 / 0.46);
}

.hero-sanskrit {
  margin-top: 1.1rem;
  color: var(--on-dark);
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 700;
  text-shadow: 0 2px 18px oklch(8% 0.035 147 / 0.46);
}

.hero-translation {
  margin-bottom: 1rem;
  color: oklch(92% 0.04 125);
  font-size: 1.02rem;
  font-weight: 600;
}

.welcome-home {
  background: var(--rice);
}

.welcome-panel {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.welcome-panel h2 {
  margin-inline: auto;
  max-width: 11ch;
}

.welcome-copy p {
  max-width: 68ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.welcome-copy {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.welcome-mantra {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  text-align: left;
}

.welcome-mantra article {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  min-height: 138px;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  background: var(--paper);
}

.welcome-mantra article:nth-child(2) {
  background: oklch(93.76% 0.0827 113.1 / 0.32);
}

.welcome-mantra h3 {
  max-width: 14ch;
  color: var(--leaf-deep);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 1.45rem;
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.nature-wisdom {
  background:
    radial-gradient(circle at 90% 6%, oklch(93.76% 0.0827 113.1 / 0.5), transparent 22rem),
    var(--paper);
}

.nature-subtitle {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: var(--gold-deep);
  font-weight: 700;
}

.nature-copy {
  display: grid;
  gap: 0.9rem;
}

.nature-copy p {
  max-width: 52ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.tattva-row,
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.tattva-row article,
.why-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.35rem;
  background: oklch(96.61% 0.0425 129 / 0.82);
}

.tattva-row article:nth-child(even),
.why-grid article:nth-child(even) {
  background: oklch(93.76% 0.0827 113.1 / 0.34);
}

.tattva-line-icon,
.element-card-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tattva-line-icon {
  width: 4rem;
  height: 4rem;
  color: var(--gold-deep);
  stroke-width: 1.55;
}

.element-card-icon {
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 0.85rem;
  color: var(--gold-soft);
  filter: drop-shadow(0 8px 18px oklch(12% 0.03 147 / 0.38));
  stroke-width: 1.65;
}

.tattva-line-icon circle:not(:first-child),
.element-card-icon circle:not(:first-child) {
  fill: currentColor;
  stroke: none;
}

.tattva-row h3,
.why-grid h3 {
  color: var(--leaf-deep);
  font-size: 1.35rem;
}

.tattva-row p,
.why-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.element-therapies {
  background: var(--rice);
}

.element-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.element-card-grid article {
  min-width: 0;
}

.element-card-grid a {
  position: relative;
  min-width: 0;
  min-height: 460px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--on-dark);
  text-decoration: none;
  box-shadow: var(--shadow-tight);
  isolation: isolate;
}

.element-card-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.92) contrast(1.02) brightness(0.82);
  transition: transform 620ms var(--ease-out-quint), filter 620ms var(--ease-out-quint);
}

.element-card-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, oklch(16% 0.045 147 / 0.9) 0%, oklch(16% 0.045 147 / 0.18) 62%),
    linear-gradient(90deg, oklch(16% 0.045 147 / 0.36), transparent);
}

.element-card-grid a:hover img {
  filter: sepia(0.02) saturate(1) contrast(1.05) brightness(0.9);
  transform: scale(1.04);
}

.element-card-grid div {
  padding: 1.2rem;
}

.element-card-grid span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.element-card-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--on-dark);
  font-size: clamp(1.16rem, 1.45vw, 1.45rem);
  overflow-wrap: normal;
}

.element-card-grid p {
  margin: 0;
  color: oklch(92% 0.04 125);
  font-size: 0.86rem;
  line-height: 1.45;
}

.signature-therapies {
  background: var(--warm-paper);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.signature-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  background: var(--rice);
}

.signature-grid article:nth-child(2n) {
  background: var(--paper);
}

.signature-grid h3 {
  color: var(--leaf-deep);
  font-size: 1.38rem;
}

.signature-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2.1rem;
}

.why-choose {
  background: var(--paper);
}

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

.why-grid article {
  min-height: 190px;
}

.testimonial-preview {
  background: var(--rice);
}

.testimonial-preview-grid,
.testimonial-full-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-full-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-preview-grid figure,
.testimonial-full-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-tight);
}

.testimonial-preview-grid img,
.testimonial-full-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 24%;
  filter: sepia(0.07) saturate(0.92) contrast(1.03);
}

.home-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: var(--on-dark);
  background: var(--leaf-deep);
  isolation: isolate;
}

.home-cta > img,
.home-cta-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.home-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.86) contrast(1.02) brightness(0.78);
}

.home-cta-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 14% 20%, oklch(93.76% 0.0827 113.1 / 0.3), transparent 17rem),
    radial-gradient(ellipse at 88% 16%, oklch(60.68% 0.078 130.7 / 0.34), transparent 20rem),
    linear-gradient(90deg, oklch(18% 0.052 147 / 0.9), oklch(22% 0.058 147 / 0.66));
}

.home-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 42%, oklch(93.76% 0.0827 113.1 / 0.1) 42% 43%, transparent 43% 100%),
    radial-gradient(ellipse at 82% 72%, oklch(96.61% 0.0425 129 / 0.12), transparent 18rem);
  pointer-events: none;
}

.home-cta-inner {
  max-width: 720px;
}

.home-cta .section-kicker,
.home-cta h2 {
  color: var(--on-dark);
}

.home-cta h2 {
  max-width: 13ch;
}

.home-cta p:not(.section-kicker) {
  max-width: 48ch;
  color: var(--on-dark-muted);
  font-size: 1.16rem;
}

.closing-thought {
  background:
    radial-gradient(circle at 18% 10%, oklch(93.76% 0.0827 113.1 / 0.5), transparent 20rem),
    var(--rice);
  text-align: center;
}

.closing-thought-inner {
  max-width: 860px;
  margin-inline: auto;
}

.closing-thought h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.closing-thought p:not(.section-kicker) {
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.closing-thought strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.home-footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-footer-grid .footer-map {
  grid-column: span 2;
  min-width: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 0.45rem;
  color: var(--on-dark);
  font-size: 1.18rem;
}

.footer-links a,
.footer-contact a,
.footer-contact address {
  color: var(--on-dark-muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-contact address {
  margin-bottom: 0.35rem;
  font-style: normal;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 0.35rem;
}

.social-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.founder-letter,
.contact-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top: clamp(8rem, 11vw, 10rem);
  background: var(--rice);
}

.founder-letter h1,
.testimonial-page h1,
.contact-page h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: 1;
}

.letter-body {
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.letter-signoff {
  color: var(--leaf-deep);
  font-size: 1.3rem;
  font-weight: 700;
}

.founder-letter-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.founder-letter-media img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 24%;
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.founder-journey-page {
  background:
    linear-gradient(180deg, var(--rice) 0%, oklch(99% 0.014 126) 36%, var(--paper) 100%);
}

.founder-journey-hero {
  min-height: min(820px, 90svh);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.5fr);
  gap: clamp(2.2rem, 6vw, 5.5rem);
  align-items: end;
  padding-top: clamp(8rem, 11vw, 10rem);
  background:
    linear-gradient(135deg, oklch(96.61% 0.0425 129) 0%, oklch(99% 0.014 126) 58%, oklch(93.76% 0.0827 113.1 / 0.44) 100%);
}

.founder-journey-copy h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: var(--leaf-deep);
  font-size: clamp(3.7rem, 7vw, 7.2rem);
  line-height: 0.94;
}

.founder-subtitle {
  max-width: 34ch;
  margin: 0;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
}

.founder-hero-note {
  max-width: 52ch;
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.founder-portrait {
  position: relative;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.014 126 / 0.82);
  box-shadow: var(--shadow-soft);
}

.founder-portrait img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: calc(var(--radius) - 2px);
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.founder-portrait figcaption {
  margin: 0.7rem 0.2rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.journey-letter {
  color: var(--ink-soft);
}

.journey-narrow {
  max-width: 780px;
  margin-inline: auto;
  font-size: 1.14rem;
}

.journey-narrow p,
.journey-belief-copy p,
.journey-human-copy p,
.journey-video-copy p,
.journey-cta-inner > p {
  max-width: 68ch;
}

.journey-narrow strong,
.journey-mountain-card strong,
.journey-gratitude strong {
  color: var(--leaf-deep);
}

.journey-lead {
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.22;
}

.journey-opening,
.journey-understanding,
.journey-service,
.journey-gratitude,
.journey-hope {
  background: oklch(99% 0.014 126);
}

.journey-questions,
.journey-learning,
.journey-belief,
.journey-video {
  background: var(--rice);
  border-block: 1px solid oklch(60.68% 0.078 130.7 / 0.2);
}

.journey-question-copy {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.journey-question-copy h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.journey-question-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 980px;
  margin: clamp(2rem, 4vw, 3rem) auto;
}

.journey-question-panel p {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.014 126 / 0.86);
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  box-shadow: 0 14px 34px oklch(16% 0.04 147 / 0.08);
}

.journey-after-question {
  max-width: 660px;
  margin: 0 auto;
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  text-align: center;
}

.journey-aspects {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.journey-aspects span {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--rice);
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 800;
  text-align: center;
}

.journey-emphasis {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 1.82rem);
  font-weight: 800;
  line-height: 1.25;
}

.journey-mountain {
  background:
    linear-gradient(180deg, oklch(99% 0.014 126), var(--rice));
}

.journey-mountain-card {
  position: relative;
  isolation: isolate;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, oklch(99% 0.014 126 / 0.96), oklch(93.76% 0.0827 113.1 / 0.32));
  box-shadow: var(--shadow-tight);
}

.journey-mountain-card::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -1px;
  z-index: -1;
  width: min(55%, 520px);
  height: 54%;
  background:
    linear-gradient(145deg, transparent 0 36%, oklch(60.68% 0.078 130.7 / 0.18) 36% 37%, transparent 37% 52%, oklch(60.68% 0.078 130.7 / 0.14) 52% 53%, transparent 53% 100%);
  clip-path: polygon(0 100%, 35% 42%, 52% 72%, 74% 20%, 100% 100%);
}

.journey-mountain-card h2 {
  max-width: 15ch;
  margin-bottom: 1.35rem;
}

.journey-mountain-card p {
  max-width: 70ch;
}

.journey-rediscovery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.journey-rediscovery span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.014 126 / 0.72);
  color: var(--leaf-deep);
  font-weight: 700;
}

.journey-belief-grid,
.journey-human-inner,
.journey-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.journey-belief h2,
.journey-human h2 {
  max-width: 12ch;
}

.journey-belief-copy,
.journey-human-copy {
  color: var(--ink-soft);
  font-size: 1.13rem;
}

.journey-gratitude {
  text-align: center;
}

.journey-gratitude .journey-narrow p {
  margin-inline: auto;
}

.journey-human {
  background:
    linear-gradient(180deg, var(--rice), oklch(99% 0.014 126));
  border-block: 1px solid oklch(60.68% 0.078 130.7 / 0.2);
}

.journey-hope-inner {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.journey-hope-inner h2 {
  max-width: 10ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  color: var(--leaf-deep);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.journey-hope-inner p {
  max-width: 64ch;
  margin-inline: auto;
}

.journey-hope-inner blockquote {
  max-width: 720px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
}

.journey-video-copy h2 {
  max-width: 13ch;
}

.journey-video-copy p {
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.journey-video-frame {
  position: relative;
  min-height: clamp(280px, 38vw, 470px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(27.38% 0.0597 147 / 0.94), oklch(33% 0.066 143 / 0.88)),
    url("../assets/hero-treatment-room.jpg") center / cover;
  color: var(--on-dark);
  box-shadow: var(--shadow-soft);
}

.journey-video-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid oklch(96.61% 0.0425 129 / 0.2);
  border-radius: calc(var(--radius) - 2px);
}

.journey-video-frame p {
  position: relative;
  margin: 0;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 800;
  text-align: center;
}

.journey-cta {
  color: var(--on-dark);
  background: var(--leaf-deep);
}

.journey-cta-inner {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.journey-cta .section-kicker,
.journey-cta h2 {
  color: var(--on-dark);
}

.journey-cta h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.journey-cta-inner > p {
  margin-inline: auto;
  color: var(--on-dark-muted);
  font-size: 1.14rem;
}

.journey-cta .button {
  margin-top: 1rem;
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ink);
}

.journey-cta .button:hover {
  background: var(--rice);
  border-color: var(--rice);
}

.journey-cta blockquote {
  max-width: 720px;
  margin: clamp(2.4rem, 5vw, 4rem) auto 0;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
}

.journey-quote-credit {
  margin-top: 0.55rem !important;
  color: var(--gold-soft) !important;
  font-family: var(--font-display);
  font-weight: 800;
}

.journey-signature {
  display: grid;
  gap: 0.18rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: var(--on-dark-muted);
}

.journey-signature p {
  margin: 0;
  color: var(--on-dark-muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.journey-signature strong {
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.journey-signature span {
  color: var(--on-dark-muted);
  font-weight: 600;
}

.journey-companion-link {
  display: grid;
  gap: 0.25rem;
  max-width: 360px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
}

.journey-companion-link span {
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.journey-companion-link a {
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.journey-companion-link a:hover {
  color: var(--gold-soft);
}

.before-meet-page {
  background:
    linear-gradient(180deg, var(--rice) 0%, oklch(99% 0.014 126) 38%, var(--paper) 100%);
}

.before-letter-hero {
  min-height: min(760px, 86svh);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.45fr);
  gap: clamp(2.2rem, 6vw, 5.2rem);
  align-items: end;
  padding-top: clamp(8rem, 11vw, 10rem);
  background:
    radial-gradient(circle at 86% 10%, oklch(93.76% 0.0827 113.1 / 0.58), transparent 19rem),
    linear-gradient(135deg, oklch(99% 0.014 126), oklch(96.61% 0.0425 129));
}

.before-letter-copy h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  color: var(--leaf-deep);
  font-size: clamp(4.1rem, 8vw, 7.8rem);
  line-height: 0.92;
}

.before-letter-portrait {
  margin: 0;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.014 126 / 0.84);
  box-shadow: var(--shadow-tight);
}

.before-letter-portrait img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: calc(var(--radius) - 2px);
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.before-letter-portrait figcaption {
  margin: 0.7rem 0.2rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.before-letter-body {
  color: var(--ink-soft);
}

.before-letter-opening,
.before-heard,
.before-gratitude,
.before-closing {
  background: oklch(99% 0.014 126);
}

.before-letter-soft,
.before-understand,
.before-belief,
.before-promises {
  background: var(--rice);
  border-block: 1px solid oklch(60.68% 0.078 130.7 / 0.2);
}

.before-prose {
  font-size: 1.15rem;
}

.before-prose strong,
.before-gratitude strong {
  color: var(--leaf-deep);
}

.before-large-line {
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
}

.before-short-lines,
.before-understand-list,
.before-kind-lines {
  display: grid;
  gap: 0.65rem;
  margin: clamp(1.4rem, 3vw, 2rem) 0;
}

.before-short-lines span,
.before-understand-list span,
.before-kind-lines span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.72rem 0.86rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.014 126 / 0.82);
  color: var(--leaf-deep);
  font-weight: 700;
}

.before-heard-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.before-heard h2,
.before-understand h2,
.before-promises h2,
.before-closing h2 {
  max-width: 13ch;
}

.before-welcome-lines span {
  background: var(--rice);
}

.before-understand-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.before-understand-list span {
  min-height: 96px;
  justify-content: center;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: oklch(99% 0.014 126 / 0.88);
  text-align: center;
}

.before-promises-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.before-promises-inner h2 {
  margin-inline: auto;
}

.before-promise-list {
  display: grid;
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  text-align: left;
}

.before-promise-list p {
  margin: 0;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  background: oklch(99% 0.014 126 / 0.9);
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.before-kind-lines {
  max-width: 720px;
  margin-inline: auto;
}

.before-signature {
  display: grid;
  gap: 0.18rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: var(--ink-soft);
}

.before-signature p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.before-signature strong {
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.before-signature span {
  color: var(--ink-soft);
  font-weight: 600;
}

.booking-letter-link {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--on-dark-muted);
}

.booking-letter-link a {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

.booking-letter-link a:hover {
  color: var(--on-dark);
}

.testimonial-page {
  padding-top: clamp(8rem, 11vw, 10rem);
  background: var(--rice);
}

.contact-page {
  align-items: start;
}

.contact-page-copy > p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  max-width: 480px;
  margin-top: 1.5rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--leaf-deep);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  background: var(--sage);
}

.contact-page-map {
  display: grid;
  gap: 1rem;
}

.contact-page-map address {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.7;
}

.story-page {
  background: linear-gradient(180deg, var(--rice) 0%, oklch(99% 0.015 126) 28%, var(--paper) 100%);
}

.story-hero {
  position: relative;
  min-height: min(780px, 82svh);
  display: flex;
  align-items: end;
  overflow: clip;
  padding: clamp(8rem, 12vw, 10rem) max(1.5rem, calc((100% - var(--site-max)) / 2)) clamp(4rem, 7vw, 5.5rem);
  color: var(--ink);
  background: var(--rice);
}

.story-hero-bg,
.story-hero-shade {
  position: absolute;
  inset: 0;
}

.story-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: sepia(0.08) saturate(0.88) brightness(1.04);
}

.story-hero-shade {
  background:
    linear-gradient(90deg, oklch(98.5% 0.022 126 / 0.94) 0%, oklch(97% 0.03 126 / 0.82) 42%, oklch(97% 0.03 126 / 0.16) 100%),
    linear-gradient(0deg, oklch(98.5% 0.022 126 / 0.8) 0%, oklch(98.5% 0.022 126 / 0.08) 48%);
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.story-hero h1 {
  max-width: 8ch;
  margin-bottom: 0.75rem;
  color: var(--leaf-deep);
  font-size: clamp(4.4rem, 8vw, 7.4rem);
  line-height: 0.95;
}

.story-hero-inner > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.16;
}

.story-copy-stack {
  max-width: 820px;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.story-copy-stack h2 {
  max-width: 15ch;
  margin-bottom: 1.45rem;
}

.story-copy-stack p {
  max-width: 66ch;
  margin-bottom: 0.95rem;
}

.story-copy-stack strong,
.story-essence-copy strong,
.story-nature-copy strong {
  color: var(--leaf-deep);
}

.story-leaf-mark {
  position: relative;
  isolation: isolate;
}

.story-leaf-mark::before {
  content: "";
  position: absolute;
  top: -2.8rem;
  right: -1.5rem;
  z-index: -1;
  width: clamp(8rem, 18vw, 14rem);
  aspect-ratio: 1;
  border: 1px solid oklch(60.68% 0.078 130.7 / 0.2);
  border-radius: 56% 44% 63% 37%;
  background:
    radial-gradient(circle at 36% 34%, oklch(93.76% 0.0827 113.1 / 0.45), transparent 34%),
    oklch(96.61% 0.0425 129 / 0.22);
  opacity: 0.65;
}

.story-emphasis {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.32;
}

.story-essence,
.story-philosophy,
.story-promise {
  background: oklch(96.61% 0.0425 129 / 0.74);
  border-block: 1px solid oklch(60.68% 0.078 130.7 / 0.2);
}

.story-essence {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  justify-content: center;
}

.story-essence-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.story-essence-copy h2 {
  max-width: 14ch;
  margin-bottom: 1.4rem;
}

.story-essence-copy p {
  max-width: 66ch;
}

.story-philosophy .split-heading,
.story-promise .split-heading {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.story-philosophy .split-heading h2 {
  max-width: 14ch;
}

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

.story-value-grid article {
  min-height: 100%;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.014 126 / 0.86);
  box-shadow: 0 14px 34px oklch(16% 0.04 147 / 0.08);
}

.story-value-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--leaf-deep);
}

.story-value-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.story-philosophy-copy {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-inline: 0;
}

.story-nature,
.story-welcome-home {
  padding-inline: 0;
}

.story-nature-media,
.story-home-photo {
  margin: 0;
  overflow: hidden;
}

.story-nature-media img,
.story-home-photo img {
  width: 100%;
  height: clamp(320px, 44vw, 560px);
  object-fit: cover;
  filter: sepia(0.06) saturate(0.9) contrast(1.02);
}

.story-nature-media img {
  object-position: center 48%;
}

.story-home-photo img {
  object-position: center 50%;
}

.story-nature-copy {
  width: min(860px, calc(100% - 3rem));
  margin: clamp(2.6rem, 5vw, 4.5rem) auto 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 1.14rem;
}

.story-nature-copy h2 {
  max-width: 15ch;
  margin-inline: auto;
  margin-bottom: 1.35rem;
}

.story-nature-copy p {
  max-width: 66ch;
  margin-inline: auto;
}

.story-nature-copy blockquote {
  max-width: 700px;
  margin: 2rem auto;
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
}

.story-more {
  text-align: center;
}

.story-more .story-copy-stack h2,
.story-more .story-copy-stack p {
  margin-inline: auto;
}

.story-promise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-welcome-home {
  background:
    linear-gradient(180deg, var(--rice), oklch(99% 0.014 126));
}

.story-home-ending {
  width: min(920px, calc(100% - 3rem));
  margin: clamp(2.8rem, 5.5vw, 5rem) auto 0;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid oklch(60.68% 0.078 130.7 / 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 8%, oklch(93.76% 0.0827 113.1 / 0.4), transparent 16rem),
    oklch(99% 0.014 126 / 0.96);
  text-align: center;
  box-shadow: var(--shadow-tight);
}

.story-home-ending h2 {
  max-width: 17ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.story-home-ending > p:not(.section-kicker):not(.story-signoff):not(.story-team) {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.13rem;
}

.story-closing-lines {
  display: grid;
  gap: 0.32rem;
  margin: clamp(2rem, 4vw, 3rem) 0 1.35rem;
}

.story-closing-lines p {
  margin: 0;
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
}

.story-closing-lines .welcome-home-line {
  margin-top: 0.45rem;
  font-size: clamp(2.45rem, 6vw, 5.3rem);
}

.story-signoff {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.story-team {
  margin: 0.3rem 0 0;
  color: var(--leaf-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
}

.redirect-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  background: var(--rice);
}

.redirect-page h1 {
  max-width: 12ch;
  color: var(--leaf-deep);
}

@media (max-width: 1180px) {
  .before-understand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-aspects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .before-letter-hero,
  .before-heard-grid {
    grid-template-columns: 1fr;
  }

  .before-letter-hero {
    min-height: auto;
    align-items: start;
    padding-top: 8rem;
  }

  .before-letter-portrait {
    max-width: 420px;
  }

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

  .founder-journey-hero,
  .journey-question-panel,
  .journey-belief-grid,
  .journey-human-inner,
  .journey-video {
    grid-template-columns: 1fr;
  }

  .founder-journey-hero {
    min-height: auto;
    align-items: start;
    padding-top: 8rem;
  }

  .founder-portrait {
    max-width: 440px;
  }

  .journey-question-panel {
    max-width: 640px;
  }

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

  .story-hero {
    min-height: 72svh;
    padding-top: 8rem;
  }

  .story-hero-shade {
    background:
      linear-gradient(90deg, oklch(98.5% 0.022 126 / 0.96) 0%, oklch(97% 0.03 126 / 0.82) 62%, oklch(97% 0.03 126 / 0.32) 100%),
      linear-gradient(0deg, oklch(98.5% 0.022 126 / 0.88) 0%, oklch(98.5% 0.022 126 / 0.12) 48%);
  }

  .story-essence,
  .story-value-grid,
  .story-promise-grid {
    grid-template-columns: 1fr;
  }

  .story-philosophy-copy {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .before-letter-hero {
    padding-top: 6.8rem;
  }

  .before-letter-copy h1 {
    font-size: clamp(3.45rem, 17vw, 4.55rem);
  }

  .before-prose {
    font-size: 1.03rem;
  }

  .before-understand-list {
    grid-template-columns: 1fr;
  }

  .before-understand-list span {
    min-height: 70px;
  }

  .before-promise-list p {
    font-size: 1.15rem;
  }

  .founder-journey-hero {
    padding-top: 6.8rem;
  }

  .founder-journey-copy h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .founder-subtitle {
    font-size: 1.24rem;
  }

  .founder-hero-note,
  .journey-narrow,
  .journey-belief-copy,
  .journey-human-copy,
  .journey-video-copy p,
  .journey-cta-inner > p {
    font-size: 1.03rem;
  }

  .journey-question-panel p {
    padding: 1.1rem;
    font-size: 1.28rem;
  }

  .journey-aspects {
    grid-template-columns: 1fr;
  }

  .journey-aspects span {
    min-height: 78px;
  }

  .journey-mountain-card {
    padding: 1.55rem 1.1rem;
  }

  .journey-rediscovery {
    align-items: stretch;
    flex-direction: column;
  }

  .journey-rediscovery span {
    width: 100%;
  }

  .journey-hope-inner h2 {
    font-size: clamp(2.9rem, 16vw, 4rem);
  }

  .journey-video-frame {
    min-height: 270px;
  }

  .story-hero {
    min-height: 74svh;
    padding: 7.2rem 1rem 3.2rem;
  }

  .story-hero h1 {
    font-size: clamp(3.55rem, 18vw, 4.6rem);
  }

  .story-copy-stack,
  .story-essence-copy,
  .story-nature-copy {
    font-size: 1.03rem;
  }

  .story-leaf-mark::before {
    right: 0;
    opacity: 0.42;
  }

  .story-home-ending {
    width: calc(100% - 2rem);
    padding: 1.6rem 1.1rem;
  }

  .story-closing-lines p {
    font-size: clamp(1.38rem, 8vw, 2.1rem);
  }

  .story-closing-lines .welcome-home-line {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }
}

@media (min-width: 901px) {
  body {
    padding-left: 280px;
  }

  .site-header {
    inset: 0 auto 0 0;
    width: 280px;
    height: 100svh;
    padding: 1rem;
  }

  .nav-shell {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1rem;
    background: oklch(96.61% 0.0425 129);
    box-shadow: 0 18px 56px oklch(16% 0.04 147 / 0.18);
  }

  .site-header.is-scrolled .nav-shell {
    background: oklch(96.61% 0.0425 129);
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 0;
  }

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

  .brand-lockup strong {
    max-width: 10ch;
    font-size: 1.18rem;
    line-height: 1.05;
  }

  .nav-links {
    width: 100%;
    justify-self: stretch;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.28rem;
    margin-top: 0.5rem;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.72rem 0.78rem;
    color: oklch(30% 0.055 147);
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .nav-links a[aria-current="page"] {
    box-shadow: inset 0 0 0 1px oklch(60.68% 0.078 130.7 / 0.34);
  }

  .nav-cta {
    width: 100%;
    justify-self: stretch;
    align-self: end;
  }

  .menu-button,
  .mobile-menu {
    display: none !important;
  }
}

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

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

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

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

  .home-footer-grid .footer-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body {
    padding-left: 0;
  }

  .home-hero h1 {
    max-width: 11ch;
  }
}

@media (max-width: 860px) {
  .tattva-row,
  .welcome-mantra,
  .why-grid,
  .signature-grid,
  .testimonial-preview-grid,
  .testimonial-full-grid,
  .founder-letter,
  .contact-page {
    grid-template-columns: 1fr;
  }

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

  .tattva-row,
  .why-grid,
  .signature-grid {
    margin-top: 2rem;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .home-hero {
    min-height: 86svh;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 15vw, 3.55rem);
  }

  .hero-pretitle {
    font-size: 1.02rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .element-card-grid {
    grid-template-columns: 1fr;
  }

  .element-card-grid a {
    min-height: 460px;
  }

  .testimonial-preview-grid img,
  .testimonial-full-grid img {
    height: 430px;
  }

  .home-cta {
    min-height: 480px;
  }

  .founder-letter h1,
  .testimonial-page h1,
  .contact-page h1 {
    font-size: 3rem;
  }
}

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

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

  .ticker-track {
    width: 100%;
    white-space: normal;
    animation: none;
  }

  .ticker-track span[aria-hidden="true"] {
    display: none;
  }

  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: thin;
    scrollbar-color: var(--moss) transparent;
  }

  .testimonial-rail {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .testimonial-group[aria-hidden="true"] {
    display: none;
  }

  [data-reveal],
  .has-js [data-reveal],
  .has-js [data-reveal] > *,
  .has-js .testimonials .section-kicker,
  .has-js .testimonials .split-heading > p,
  .has-js .testimonial-title-line,
  .has-js .testimonials .testimonial-rail figure {
    opacity: 1;
    transform: none;
  }
}
