/* ============================================================
   SLOFLOW — style.css
   Custom Cursor · Section Blending · Golden Particles · Antigravity
   ============================================================ */

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --paper:        #F3EFE6;
  --paper-warm:   #EDE8DC;
  --slate:        #3A4E59;
  --slate-deep:   #293842;
  --terra:        #C4874A;
  --terra-light:  #D9A66A;
  --dusty-blue:   #5F7786;
  --sand:         #E3D7A4;
  --muted:        #7A7268;
  --body:         #4A4640;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Source Sans 3', system-ui, sans-serif;

  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --silk:   cubic-bezier(0.16, 1, 0.3, 1);

  --glass:        rgba(243, 239, 230, 0.58);
  --glass-border: rgba(255, 255, 255, 0.68);
  --glass-shadow: 0 8px 40px rgba(58, 78, 89, 0.10);

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 5rem;
}

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

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--body);
  line-height: 1.72;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='22'%3E%3Cpath d='M0 0 L0 18 L5 12.5 L8.5 20.5 L11 19.5 L7.5 11.5 L14 11.5 Z' fill='%23c7a56b' stroke='%237a5928' stroke-width='0.8' stroke-linejoin='round'/%3E%3C/svg%3E") 0 0, default;
}

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

.container {
  width: min(90%, 1180px);
  margin-inline: auto;
}

/* ─── GRAIN ───────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  display: none; /* replaced by CSS SVG arrow cursor */
}

/* Golden dot ring — spins around cursor */
.cursor__ring {
  position: absolute;
  width: 40px; height: 40px;
  top: -20px; left: -20px;
  animation: ring-spin 4s linear infinite;
  transition: width .3s var(--ease), height .3s var(--ease), top .3s var(--ease), left .3s var(--ease);
}

.cursor__ring span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: #a8844a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  background-size: 40px;
  top: 50%; left: 50%;
  margin: -3px;
  opacity: 0.92;
}
.cursor__ring span:nth-child(1) { transform: rotate(0deg)   translateY(-18px); }
.cursor__ring span:nth-child(2) { transform: rotate(45deg)  translateY(-18px); opacity: 0.65; }
.cursor__ring span:nth-child(3) { transform: rotate(90deg)  translateY(-18px); }
.cursor__ring span:nth-child(4) { transform: rotate(135deg) translateY(-18px); opacity: 0.65; }
.cursor__ring span:nth-child(5) { transform: rotate(180deg) translateY(-18px); }
.cursor__ring span:nth-child(6) { transform: rotate(225deg) translateY(-18px); opacity: 0.65; }
.cursor__ring span:nth-child(7) { transform: rotate(270deg) translateY(-18px); }
.cursor__ring span:nth-child(8) { transform: rotate(315deg) translateY(-18px); opacity: 0.65; }

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hover — expand ring */
.cursor--hover .cursor__ring {
  width: 58px; height: 58px;
  top: -29px; left: -29px;
  animation-duration: 2.5s;
}

/* Pressed — contract */
.cursor--press .cursor__ring {
  width: 26px; height: 26px;
  top: -18px; left: -18px;
  animation-duration: 0.8s;
}

/* ─── GOLDEN PARTICLE CANVAS ──────────────────────────────── */
.golden-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.7;
}

/* ─── SECTION BACKGROUND SYSTEM ──────────────────────────── */
/*
   All watercolour SVG backgrounds fade to transparent at their
   top and bottom edges via mask-image. Since all backgrounds
   are earth-toned watercolours that share a near-white edge,
   they organically blend through the page base colour (#F3EFE6).
*/

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;

  /* Fade edges so sections bleed into each other */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
}

/* Hero bg doesn't fade at top (starts fresh) */
.hero__bg {
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.section-bg-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

/* ─── SECTIONS ────────────────────────────────────────────── */
section, footer { position: relative; overflow: hidden; }

/* Sections use negative margin to overlap and blend */
.section {
  margin-top: -80px;
  padding: calc(var(--sp-xl) + 80px) 0 var(--sp-xl);
}

/* Ensure content above backgrounds */
.section > .container,
.cta > .container,
.footer__inner,
.footer__bottom {
  position: relative;
  z-index: 2;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .45s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}

.nav.scrolled {
  background: rgba(243, 239, 230, 0.80);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.55rem 0;
}

.nav__inner {
  width: min(92%, 1180px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-left: 3rem;
}

.nav__logo-img {
  height: auto;
  width: 200px;
  transition: transform .35s var(--spring);
}
.nav__logo-img:hover { transform: scale(1.05); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* Desktop: links column is just the inline row of links */
.nav__links-col {
  display: contents; /* children participate directly in nav__links flex */
}

/* Decorative orb inside nav — desktop: hidden */
.nav__orb {
  display: none;
}

.nav__link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  position: relative;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--terra); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  flex-shrink: 0;
  padding: 0.55rem 1.4rem !important;
  font-size: 0.85rem !important;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: inherit; padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform .3s var(--spring), opacity .25s;
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 9999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  cursor: inherit;
  position: relative;
  will-change: transform;
  transition: transform .2s var(--spring), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn--primary {
  background: var(--terra);
  color: #fff;
}
.btn--primary:hover {
  background: var(--terra-light);
  transform: translateY(-2px) scale(1.02);
}

.btn--outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--dusty-blue);
}
.btn--outline:hover {
  background: var(--dusty-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid rgba(95, 119, 134, 0.35);
}
.btn--ghost:hover {
  background: rgba(95, 119, 134, 0.1);
  transform: translateY(-2px);
}

.btn--cta {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 3px 16px rgba(196, 135, 74, 0.32);
}
.btn--cta:hover {
  box-shadow: 0 6px 24px rgba(196, 135, 74, 0.44);
  transform: translateY(-2px) scale(1.03);
}

/* Spring squish on click — applied via JS */
.btn:active { transform: scale(0.97) !important; }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s var(--silk),
    transform .75s var(--silk);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Line-by-line hero text reveal */
.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > .line-inner {
  display: block;
  transform: translateY(105%);
  transition: transform .85s var(--silk);
  transition-delay: var(--line-delay, 0s);
}
.reveal-line.visible > .line-inner {
  transform: translateY(0);
}

/* ─── SECTION COMMON ──────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.8rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--slate);
  margin-bottom: var(--sp-md);
}
.section-heading em { font-style: italic; color: var(--terra); }
.section-heading.centered { text-align: center; }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: -1rem;
  margin-bottom: var(--sp-lg);
}
.section-sub.centered { text-align: center; }

.section-header { margin-bottom: var(--sp-lg); }

.body-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 1.25rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dusty-blue);
  margin-bottom: var(--sp-sm);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px min(5%, 80px) 0;
  gap: 2rem;
}

/* Practitioner cards — in normal flow, directly below content */
.hero__practitioners {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}

.hero__prac-card {
  position: relative;
  display: inline-block;
}

.hero__prac-img {
  width: auto;
  height: clamp(220px, 29vw, 396px);
  mix-blend-mode: multiply;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  max-width: unset;
}

/* Label sits on the wooden block */
.hero__prac-label {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero__prac-card:nth-child(2) .hero__prac-label {
  bottom: 2%;
  left: 18%;
  transform: none;
}

/* Big floating orb — top-left decorative */
.hero__orb {
  position: absolute;
  width: clamp(300px, 42vw, 580px);
  top: -8%;
  left: -5%;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-22px) rotate(2.5deg); }
  70%       { transform: translateY(12px) rotate(-1.5deg); }
}


/*
  Woman-lying panel — takes the full right half.
  mix-blend-mode: multiply dissolves the SVG's own background
  into the hero watercolour texture beneath it.
*/

/* Text content — centered, above the bg in z-order */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(680px, 80%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-md);
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__headline .reveal-line:first-child { margin-bottom: -0.08em; }
.hero__headline .reveal-line:last-child { white-space: nowrap; }
.hero__headline em {
  font-style: italic;
  color: var(--terra);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--body);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: min(5%, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── WHAT IS SLOFLOW ─────────────────────────────────────── */
.what__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.what__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.what__visual { display: flex; justify-content: center; align-items: center; }

/*
  Woman figure in the What section.
  mix-blend-mode: multiply dissolves the SVG's own background
  so it flows naturally into the dusty watercolour behind it.
*/
.what__figure-wrap {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.what__figure {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  border-radius: 16px;
}


/* ─── BENEFITS ────────────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.benefit-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  box-shadow: var(--glass-shadow);
  outline: 1px solid rgba(255,255,255,0.52);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--spring), box-shadow .35s var(--ease);
  /* 3D tilt — applied via JS */
  transform-style: preserve-3d;
  will-change: transform;
}

/* Shimmer top line on hover */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--terra-light), var(--dusty-blue), var(--terra-light));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.benefit-card:hover { box-shadow: 0 22px 56px rgba(58,78,89,0.16); }
.benefit-card:hover::before { opacity: 1; }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}

.benefit-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center;
}
.benefit-card__icon img {
  width: 44px; height: 44px; object-fit: contain;
  animation: icon-pulse 2.8s ease-in-out infinite;
}
.benefit-card:nth-child(2) .benefit-card__icon img { animation-delay: 0.4s; }
.benefit-card:nth-child(3) .benefit-card__icon img { animation-delay: 0.8s; }
.benefit-card:nth-child(4) .benefit-card__icon img { animation-delay: 1.2s; }
.benefit-card:nth-child(5) .benefit-card__icon img { animation-delay: 1.6s; }
.benefit-card:nth-child(6) .benefit-card__icon img { animation-delay: 2.0s; }

.benefit-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--slate);
}

.benefit-card p {
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.72;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  align-items: end; /* arches sit on a common baseline */
}

/* ARCH / tombstone tile */
.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: 3.5rem 1.75rem 2.5rem;

  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  box-shadow: var(--glass-shadow);
  outline: 1px solid rgba(255,255,255,0.55);
  outline-offset: -1px;

  border-radius: 20px;

  transition: transform .45s var(--spring), box-shadow .4s var(--ease);
}
.how__step:hover,
.how__step--alt:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 72px rgba(58,78,89,0.18);
}

.how__step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sand);
  letter-spacing: -0.02em;
}

.how__step-icon {
  width: 64px; height: 64px;
  object-fit: contain;
  opacity: 0.75;
}

.how__step-body h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.45rem;
}
.how__step-body p {
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.78;
}

/* Connector orbs between steps: hidden in arch layout */
.how__connector { display: none; }


/* ─── PRACTITIONERS ───────────────────────────────────────── */
.practitioners__world {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.practitioners__world-img {
  max-width: 780px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.practitioners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: var(--sp-lg);
}

.prac-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 2.5rem 2.2rem;
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  box-shadow: var(--glass-shadow);
  outline: 1px solid rgba(255,255,255,0.55);
  outline-offset: -1px;
  overflow: hidden;
  transition: transform .45s var(--spring), box-shadow .4s var(--ease);
}
.prac-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 72px rgba(58,78,89,0.18);
}

.prac-card__orb { display: none; }

.prac-card__photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(58, 78, 89, 0.15);
  background: #F3EFE6; /* off-white — both profile circles */
}

/* Heidi's photo has a white bg in the image file — multiply blends it to match container */
.prac-card:first-child .prac-card__photo img {
  mix-blend-mode: multiply;
}
.prac-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: filter 0.45s ease;
}
.prac-card:hover .prac-card__photo img {
  filter: grayscale(80%);
}

.prac-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.prac-card__head {
  margin-bottom: 0.1rem;
}

.prac-card__name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  color: var(--slate);
  line-height: 1.15;
}

.prac-card__origin {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.prac-card__role {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

.prac-card__body p {
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.85;
}


/* ─── TESTIMONIAL SLIDER ───────────────────────────────────── */
.section.testimonial { overflow: visible; padding-bottom: 2rem; }

.testimonial__orb {
  position: absolute;
  top: -8%; right: -5%;
  width: clamp(200px, 30vw, 420px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 10;
  animation: slow-spin 60s linear infinite;
}

/* Testimonials — stacked cards */
.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.testimonial__item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 2rem 2.25rem 1.75rem;
  border: 1px solid rgba(95, 119, 134, 0.18);
  box-shadow: 0 4px 24px rgba(58, 78, 89, 0.1);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.9;
  color: var(--terra);
  user-select: none;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--slate);
}

.testimonial__author {
  font-family: 'Corinthia', cursive !important;
  font-size: 1.75rem !important;
  font-weight: 400;
  color: var(--terra);
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(95, 119, 134, 0.15);
  display: block;
}

/* ─── FOOTER ORB (rotating) ─────────────────────────────────── */
.footer__orb {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.55;
  pointer-events: none;
  animation: slow-spin 90s linear infinite;
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── COMMUNITY ───────────────────────────────────────────── */

/* World image floats above the card, overlapping into it */
.community__world {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-bottom: -5rem;
}
.community__world-img {
  width: clamp(280px, 42%, 480px);
  height: auto;
}

.community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  align-items: end;
  background: rgba(243, 239, 230, 0.65);
  border-radius: 24px;
  padding: 3rem 3.5rem 3rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 32px rgba(58, 78, 89, 0.07);
  position: relative;
  z-index: 2;
}

.community__offer {
  background: rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  padding: 3rem 2.5rem 2.5rem;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 40px rgba(58, 78, 89, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}

.community__offer .btn {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.community__offer-heading {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--slate);
  margin: 0 0 1rem 0;
}

.community__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.community__features li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--body);
  font-size: 1.2rem;
  line-height: 1.5;
}

.community__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra);
}

.community__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(95, 119, 134, 0.15);
  line-height: 1.6;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.cta {
  overflow: hidden;
}

.cta__bg-dots {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  opacity: 0.9;
}

.cta__orb {
  position: absolute;
  top: -15%; right: -8%;
  width: clamp(280px, 45vw, 600px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
  animation: float-orb 10s ease-in-out infinite;
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-md);
}

.cta__logo {
  width: clamp(80px, 12vw, 140px);
  animation: float-orb 8s ease-in-out infinite;
}

.cta__heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--slate);
}
.cta__heading em { font-style: italic; color: var(--terra); }

.cta__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 44ch;
}

.cta__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
}

.footer__bg {
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
}

.footer__inner {
  position: relative; z-index: 2;
  padding: var(--sp-lg) 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.footer__nav ul {
  column-count: 2;
  column-gap: 1.5rem;
  display: block;
}
.footer__nav li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}
.footer__nav a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: var(--terra); }

.footer__bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(95,119,134,0.15);
  padding: 1.2rem max(5%, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem 1rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer__copyright { text-align: left; }
.footer__credit   { text-align: center; white-space: nowrap; }
.footer__bottom a {
  color: var(--terra);
  font-weight: 600;
  transition: color .2s var(--ease);
}
.footer__bottom a:hover { color: var(--terra-light); }

.footer__legal {
  display: flex;
  gap: 0.4rem 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.78rem;
  text-align: right;
}
.footer__legal a {
  color: var(--muted);
  transition: color .2s var(--ease);
}
.footer__legal a:hover { color: var(--terra); }

.footer__disclaimer {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
  opacity: 0.7;
}

/* ─── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page {
  min-height: 100svh;
  background: var(--paper);
}
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px var(--sp-md) var(--sp-xl);
}
.legal__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.legal__meta {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(95,119,134,0.15);
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--slate);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}
.legal p {
  font-size: 0.97rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal li {
  font-size: 0.97rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 0.3rem;
}
.legal a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── RESPONSIVE — TABLET ─────────────────────────────────── */
@media (max-width: 960px) {
  :root { --sp-xl: 5rem; --sp-lg: 2.5rem; }


  .hero__content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero__prac-img { width: clamp(120px, 15vw, 200px); }
  .what__inner { grid-template-columns: 1fr; }
  .community__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .practitioners__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ─── RESPONSIVE — MOBILE ─────────────────────────────────── */
@media (max-width: 600px) {
  .faq__question {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    padding: 1.5rem 1.8rem;
  }
  .faq__answer-inner {
    padding: 0 1.8rem 1.5rem 1.8rem;
    font-size: 0.95rem;
  }

  :root { --sp-xl: 4rem; --sp-lg: 2rem; }

  body { cursor: auto; } /* restore default on touch devices */
  .cursor { display: none; }
  .golden-canvas { display: none; }

  .btn {
    padding: 0.85rem 1.5rem;
    white-space: normal;
    height: auto;
    line-height: 1.4;
    text-align: center;
  }

  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute; 
    top: 0; left: 0;
    width: 100vw; 
    height: 100vh;
    height: 100dvh;
    background: rgba(243, 239, 230, 0.97);
    backdrop-filter: blur(32px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: -1;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.3rem; }
  .nav__cta { display: none; }
  .nav__logo-img { width: 140px; }
  .nav__inner { padding-left: 1rem; }

  .nav__orb {
    display: block;
    position: absolute;
    top: 10%;
    left: -10%;
    width: 300px;
    height: 300px;
    opacity: 0.3;
    pointer-events: none;
    animation: float-orb 10s ease-in-out infinite;
    z-index: 0;
  }

  .nav__links-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    z-index: 1;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: var(--sp-lg);
    gap: var(--sp-md);
  }
  .hero__orb { width: 80vw; }
  .hero__figure-panel { display: none; }
  .hero__headline .reveal-line:last-child { white-space: normal; }
  .hero__practitioners {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
  }
  .hero__prac-img { height: min(180px, 45vw); width: auto; }
  .hero__prac-label { font-size: 1rem; }
  .hero__prac-card:nth-child(2) .hero__prac-label { font-size: 1rem; }
  
  .hero__actions, .cta__btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero__actions .btn, .cta__btns .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .how__steps { grid-template-columns: 1fr; max-width: 420px; }
  .how__step { padding: 2rem 1.5rem; }
  .how__step-icon { display: none; }

  .community__world { margin-bottom: 2rem; }
  .community__inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1rem; }
  .community__offer { padding: 2rem 1.25rem; }
  .community__features li { font-size: 1.1rem; line-height: 1.75; }

  .footer__inner { flex-direction: column; padding-top: var(--sp-lg); }
  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.4rem;
    padding-bottom: 2.5rem;
  }
  .footer__copyright,
  .footer__credit { text-align: center; }
  .footer__legal { justify-content: center; text-align: center; }

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

/* ==============================================
   SHOP PAGE STYLES
   ============================================== */
.page-hero {
  padding-top: calc(var(--nav-height, 80px) + 6rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero__heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--slate);
  margin-bottom: 1rem;
}

.page-hero__sub {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--slate);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.products-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.product-category-title {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--terra);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(58, 78, 89, 0.05);
  border: 1px solid rgba(95, 119, 134, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(58, 78, 89, 0.1);
}

.product-card__image-wrapper {
  aspect-ratio: 1;
  background: rgba(246, 240, 235, 0.8);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed rgba(196, 135, 74, 0.3);
}

.product-card__image-placeholder {
  color: var(--slate);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.product-card__title {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--slate);
}

.product-card__desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 0;
}

.product-card__price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 1rem;
}

.product-card__btn {
  display: block;
  text-align: center;
  background-color: var(--terra);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px; /* Pill shape like other buttons */
  font-family: var(--sans);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s var(--ease), transform 0.2s var(--spring);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.product-card__btn:hover {
  background-color: var(--terra-light);
  transform: translateY(-2px);
}

.product-card__includes {
  flex-grow: 1;
}

.product-card__includes-title {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--slate);
}

.product-card__includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate);
}

.product-card__includes-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: var(--sans);
}

.product-card__includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: bold;
}