/* Mind-Body-Breath — design system from logo palette */
:root {
  --sage: #6f8168;
  --sage-deep: #54634e;
  --sage-soft: rgba(111, 129, 104, 0.12);
  --slate: #6a7d91;
  --slate-deep: #4f6173;
  --slate-soft: rgba(106, 125, 145, 0.12);
  --gold: #b08a5a;
  --gold-deep: #8f6d42;
  --gold-soft: rgba(176, 138, 90, 0.16);
  --charcoal: #2a2a2a;
  --ink: #343434;
  --muted: #6a6a66;
  --line: rgba(42, 42, 42, 0.12);
  --paper: #f7f5f1;
  --paper-2: #eef2ef;
  --paper-3: #e8eef3;
  --white: #fffcf8;
  --shadow: 0 18px 50px rgba(42, 42, 42, 0.08);
  --radius: 2px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --container: 1120px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, var(--paper-2), transparent 55%),
    radial-gradient(900px 500px at 95% 5%, var(--paper-3), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--slate-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--sage-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  color: var(--charcoal);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.c-mind { color: var(--sage); }
.c-body { color: var(--gold-deep); }
.c-breath { color: var(--slate); }
.sep { color: var(--charcoal); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 248, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 8px 30px rgba(42, 42, 42, 0.04);
}

.header-inner {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.brand-wordmark {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav > a,
.nav-dropdown-trigger {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  cursor: pointer;
  font-family: inherit;
}

.site-nav > a:hover,
.nav-dropdown-trigger:hover,
.site-nav > a.is-active,
.nav-dropdown.is-active > .nav-dropdown-trigger {
  color: var(--sage-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.6rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 20;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  display: flex;
  animation: rise 0.28s var(--ease);
}

.nav-dropdown-panel a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
}

.nav-dropdown-panel a:hover {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-sage {
  background: var(--sage);
  color: white;
}
.btn-sage:hover { background: var(--sage-deep); color: white; }

.btn-slate {
  background: var(--slate);
  color: white;
}
.btn-slate:hover { background: var(--slate-deep); color: white; }

.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover { background: var(--gold-deep); color: white; }

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: white;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  
}

/* Hero — brand-led, no full-bleed photo */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 70% 40%, var(--gold-soft), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, var(--sage-soft), transparent 70%),
    radial-gradient(ellipse 35% 45% at 85% 80%, var(--slate-soft), transparent 70%);
  opacity: 0.9;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a2a2a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 3rem);
  
  margin-bottom: 0;
  animation: floatIn 1s 0.1s var(--ease) both;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
 
  animation: floatIn 1s 0.18s var(--ease) both;
}

.hero-panel {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  animation: floatIn 1s 0.15s var(--ease) both;
}

.hero-banner-logo {
  width: min(360px, 78vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;

  will-change: transform;
}

/* Full-width pillars band (after homepage banner) */
.pillars {
  width: 100%;
}

.pillars-band {
  width: 100%;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--paper-2) 0%, var(--white) 50%, var(--paper-3) 100%);
  padding: clamp(0.75rem, 4vw, 0.75rem) 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar {
  padding: 0.5rem clamp(1rem, 3vw, 2.25rem);
  text-align: center;
}

.pillar + .pillar {
  border-left: 1px solid var(--line);
}

.pillar-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.pillar-value {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(238, 242, 239, 0.55), rgba(232, 238, 243, 0.35));
  border-block: 1px solid var(--line);
}

.section-dark {
  background:
    linear-gradient(135deg, #3a4238 0%, #2f3a45 55%, #3d3428 100%);
  color: rgba(255, 252, 248, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  max-width: 18ch;
}

.section-intro {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-wide {
  grid-template-columns: 0.95fr 1.05fr;
}

.rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--slate));
  margin: 1.25rem 0 1.5rem;
  border: 0;
}

/* Pathway cards — interactive destinations, not decorative cards */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.path-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.7);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.path-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent, var(--sage));
  transform: scaleY(0.4);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}

.path-link:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 42, 42, 0.22);
  background: var(--white);
}

.path-link:hover::before {
  transform: scaleY(1);
}

.path-link.accent-sage { --accent: var(--sage); }
.path-link.accent-slate { --accent: var(--slate); }

.path-link h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.path-link p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.path-link .path-cta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, var(--sage));
  font-weight: 500;
}

/* Feature list */
.feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.feature-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: var(--gold);
}

.feature-list h4 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.feature-list h4 a {
  color: inherit;
  text-decoration: none;
}

.feature-list h4 a:hover {
  color: var(--sage-deep, var(--sage));
  text-decoration: underline;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Quote */
.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--charcoal);
}

.quote-block cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.blog-grid-home {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.blog-card {
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 42, 42, 0.22);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}

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

.blog-card-body {
  padding: 1.35rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.45rem;
  margin: 0;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--sage-deep);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.blog-meta {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.blog-article-header h1 {
  max-width: 22ch;
}

.blog-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 0 auto 0.5rem;
}

.blog-prose {
  max-width: 720px;
}

.blog-prose p,
.blog-prose li {
  font-size: 1.05rem;
  color: var(--ink);
}

.blog-prose h2,
.blog-prose h3 {
  margin-top: 1.6rem;
}

.blog-prose a {
  color: var(--slate-deep);
}

.blog-back {
  margin-top: 2.5rem;
}

.blog-back a {
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Content blocks */
.content-stack {
  display: grid;
  gap: 1.5rem;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.72);
  padding: 1.5rem 1.4rem;
}

.panel h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.panel p:last-child {
  margin-bottom: 0;
}

.panel-muted {
  color: var(--muted);
  font-size: 0.95rem;
}

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

/* ── Feature pages (Guide + Anatomy) ── */
.page-feature .feature-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.feature-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(111, 129, 104, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 60% at 8% 90%, rgba(106, 125, 145, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.2), transparent 70%);
}

.page-anatomy .feature-hero-atmosphere {
  background:
    radial-gradient(ellipse 65% 70% at 50% -10%, rgba(176, 138, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 55% at 95% 70%, rgba(111, 129, 104, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 5% 60%, rgba(106, 125, 145, 0.1), transparent 45%);
}

.feature-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-hero-center {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.feature-hero-center h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: none;
  letter-spacing: -0.02em;
}

.feature-hero-copy h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  max-width: 12ch;
  letter-spacing: -0.02em;
}

.feature-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.35;
  margin: 0 0 1.25rem;
  max-width: 28ch;
}

.feature-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 1.75rem;
}

.feature-lead-wide {
  max-width: 42ch;
  margin-inline: auto;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.75rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(176, 138, 90, 0.35);
  background: rgba(255, 252, 248, 0.7);
  color: var(--gold-deep);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.feature-hero-cta {
  justify-content: center;
}

.feature-section-title {
  max-width: 18ch;
  margin-bottom: 2rem;
}

.feature-muted {
  color: var(--muted);
  margin: 0;
}

.feature-band {
  padding-top: 0.5rem;
}

/* Guide portrait */
.guide-portrait {
  position: relative;
  margin: 0;
  z-index: 1;
}

.guide-portrait-frame {
  position: absolute;
  inset: -0.85rem -0.85rem 1.1rem 1.1rem;
  border: 1px solid rgba(176, 138, 90, 0.45);
  z-index: -1;
  transform: translateZ(0);
  animation: frameDrift 8s var(--ease) infinite alternate;
}

.guide-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 28px 60px rgba(42, 42, 42, 0.16);
  filter: saturate(1.02);
}

@keyframes frameDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(6px, -4px); }
}

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

.guide-pillars article {
  position: relative;
  padding: 2rem 1.4rem 1.6rem;
  background:
    linear-gradient(165deg, rgba(255, 252, 248, 0.95), rgba(238, 242, 239, 0.65));
  border: 1px solid rgba(42, 42, 42, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.guide-pillars article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.guide-pillars article:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 129, 104, 0.35);
}

.pillar-stat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 0.9;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}

.pillar-unit {
  display: block;
  margin: 0.2rem 0 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.guide-pillars h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.guide-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Empowerment band */
.empower-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(120deg, rgba(111, 129, 104, 0.1), rgba(176, 138, 90, 0.08) 55%, rgba(106, 125, 145, 0.1));
  border: 1px solid rgba(111, 129, 104, 0.18);
}

.empower-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.8;
  color: rgba(84, 99, 78, 0.22);
  user-select: none;
}

.empower-quote {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
  max-width: 28ch;
}

/* Book strip (shared) */
.book-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(238, 242, 239, 0.55), rgba(255, 252, 248, 0.2) 60%, rgba(232, 238, 243, 0.4));
}

.book-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
  color: var(--charcoal);
}

.book-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Anatomy story + texts */
.anatomy-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: stretch;
}

.anatomy-story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.anatomy-pull {
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.anatomy-pull::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: rgba(176, 138, 90, 0.22);
}

.anatomy-pull p {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.4;
  font-style: italic;
}

.texts-head {
  margin-bottom: 0.5rem;
}

.sacred-texts {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.sacred-texts li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.sacred-texts li:hover {
  background: rgba(255, 252, 248, 0.65);
  padding-left: 0.65rem;
}

.sacred-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.sacred-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--charcoal);
}

/* Enrollment panel */
.enroll-section {
  padding-top: 1rem;
}

.enroll-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(84, 99, 78, 0.94), rgba(79, 97, 115, 0.92));
  color: var(--white);
  box-shadow: 0 30px 70px rgba(42, 42, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.enroll-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  bottom: -100px;
  background: rgba(176, 138, 90, 0.2);
  pointer-events: none;
}

.enroll-panel .eyebrow {
  color: rgba(255, 252, 248, 0.72);
}

.enroll-panel h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  max-width: 16ch;
}

.enroll-sessions {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.enroll-panel .feature-muted {
  color: rgba(255, 252, 248, 0.72);
  font-size: 0.92rem;
}

.enroll-action {
  position: relative;
  z-index: 1;
  text-align: right;
}

.enroll-price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
  margin: 0 0 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.enroll-action .btn-gold {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.booking-grid,
.offer-grid,
.library-grid,
.pricing-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

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

.offer-grid,
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.session-tile,
.offer-tile,
.library-tile,
.price-tile {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.session-tile:hover,
.offer-tile:hover,
.library-tile:hover,
.price-tile:hover {
  border-color: rgba(111, 129, 104, 0.45);
  transform: translateY(-2px);
}

.session-tile .duration,
.offer-tile .meta,
.library-tile .type {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.session-tile h3,
.offer-tile h3,
.library-tile h3,
.price-tile h3 {
  font-size: 1.45rem;
  margin: 0;
}

.session-tile p,
.offer-tile p,
.library-tile p,
.price-tile p {
  color: var(--muted);
  flex: 1;
  margin: 0;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0.5rem 0 1rem;
}

.checklist li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px var(--slate-soft);
}

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

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.alert {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--sage-soft);
  color: var(--sage-deep);
  margin-bottom: 1.25rem;
}

.alert-warn {
  background: var(--gold-soft);
  color: var(--gold-deep);
}

.locked-panel {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(176, 138, 90, 0.45);
  background: rgba(255, 252, 248, 0.65);
}

.locked-panel h2 {
  font-size: 2rem;
}

/* Testimonials */
.testimonial-list {
  display: grid;
  gap: 1.25rem;
}

.testimonial {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.testimonial blockquote {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.4;
}

.testimonial .who {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Portal / library status */
.status-pill {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

.status-pill.open {
  border-color: rgba(111, 129, 104, 0.4);
  color: var(--sage-deep);
  background: var(--sage-soft);
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 3.5rem 0 1.75rem;
  background: linear-gradient(180deg, #f3f0ea 0%, #ebe7df 100%);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 220px;
  background: radial-gradient(ellipse at center, var(--gold-soft), transparent 65%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-name {
  display: block;
  width: auto;
  height: auto;
  max-width: min(280px, 100%);
  margin: 0 0 0.55rem;
  object-fit: contain;
  object-position: left center;
}

.footer-tag {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer-heading {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--sage-deep);
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-note {
  max-width: 42ch;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="delay"] {
  transition-delay: 0.12s;
}

[data-reveal="delay-2"] {
  transition-delay: 0.22s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Method steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-top: 0.15rem;
}

/* Social row */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-row a {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.65rem 1rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.social-row a:hover {
  border-color: var(--slate);
  color: var(--slate-deep);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .split-wide,
  .path-grid,
  .booking-grid,
  .library-grid,
  .footer-grid,
  .pillars-grid,
  .blog-grid,
  .blog-grid-home,
  .feature-hero-grid,
  .guide-pillars,
  .anatomy-story,
  .enroll-panel,
  .book-strip,
  .empower-band {
    grid-template-columns: 1fr;
  }

  .guide-portrait {
    max-width: 380px;
    margin-inline: auto;
    order: -1;
  }

  .feature-hero-grid .feature-hero-copy {
    text-align: center;
  }

  .feature-hero-copy h1,
  .feature-kicker,
  .feature-lead {
    margin-inline: auto;
  }

  .feature-hero-copy .cta-row {
    justify-content: center;
  }

  .enroll-action {
    text-align: left;
  }

  .book-strip-actions {
    justify-content: flex-start;
  }

  .empower-mark {
    display: none;
  }

  .sacred-texts li {
    grid-template-columns: 3.25rem 1fr;
  }

  .pillar + .pillar {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding-top: 1.25rem;
  }

  .brand-wordmark {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(255, 252, 248, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.35rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav > a,
  .nav-dropdown-trigger {
    width: 100%;
    text-align: left;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem 0.75rem;
    background: transparent;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: flex;
  }

  .site-nav .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Member account */
.account-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}

.account-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.account-nav a:hover,
.account-nav a.is-active {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}
