/* ==========================================================================
   VedaDetox — Classical Ayurveda, Mexican Soul
   Elegant wellness magazine · white / off-white · black · gold (#d4af37)
   Neon lime/orange/cyan reserved for Abhyāsa / Body-Mind-Soul post bands only
   ========================================================================== */

:root {
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --cream: #f7f1e6; /* warmer maíz / adobe paper */
  --cream-dark: #efe4d4;
  --paper: #fffaf3;
  --gold: #d4af37;
  --gold-deep: #a8892a;
  --gold-light: #e8d48a;
  --lime: #c8f542;
  --lime-dim: #a8d12e;
  --body-glow: #ff8a3d;
  --mind-glow: #c8f542;
  --soul-glow: #3de0ff;
  --terracotta: #c45c2a; /* chile / adobe */
  --chile: #c0392b;
  --turmeric: #d4a017;
  --cumin: #8b6914;
  --comal: #5c4033;
  --limón: #c5d46f;
  --cilantro: #3d6b4f;
  --shadow: rgba(92, 64, 51, 0.10);
  --shadow-warm: rgba(196, 92, 42, 0.14);
  --muted: #6b6560;
  --border: rgba(17, 17, 17, 0.12);
  --radius: 2px;
  --font-script: "Great Vibes", "Segoe Script", "Apple Chancery", cursive;
  --font-display: "Georgia", "Times New Roman", "Palatino Linotype", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", "Consolas", "Liberation Mono", monospace;
  --max: 1120px;
  --nav-h: 4.5rem;
  --space: clamp(1.15rem, 3.2vw, 2.25rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35), 0 0 14px rgba(212, 175, 55, 0.28);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li + li { margin-top: 0.35em; }

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

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

/* —— Linocut decorative borders —— */
.lino-border {
  border: 3px solid var(--ink);
  box-shadow:
    inset 0 0 0 1px var(--cream),
    0 0 0 6px var(--cream),
    0 0 0 8px var(--ink);
  position: relative;
}

.lino-frame {
  border: 2px solid var(--ink);
  position: relative;
  background: var(--paper);
}
.lino-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--ink);
  pointer-events: none;
  opacity: 0.55;
}

.stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 0.35em 0.75em;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.stamp--gold {
  background: var(--gold);
  color: var(--ink);
}

.rule {
  border: none;
  height: 0;
  border-top: 1px solid var(--gold);
  margin: 2.75rem 0;
  position: relative;
}
.rule::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: -0.7em;
  transform: translateX(-50%);
  background: var(--cream);
  padding: 0 0.5em;
  color: var(--gold);
  font-size: 0.85rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95em 1.55em;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  color: #fff;
  background: #000;
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--lime {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: none;
}
.btn--lime:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: none;
}
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: var(--space);
  top: -100px;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6em 1em;
  font-weight: 700;
  border: 1px solid var(--ink);
}
.skip-link:focus { top: 0.5rem; }

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}
.logo {
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  line-height: 1;
}
.logo span {
  color: var(--gold);
}
.logo-mark {
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid var(--ink);
  background: var(--lime);
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  margin-right: 0.4rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.logo-script {
  height: clamp(2.15rem, 4.2vw, 2.85rem);
  width: auto;
  max-width: min(230px, 52vw);
  display: block;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.2));
  transition: filter 0.25s ease, transform 0.2s ease;
}
.logo:hover .logo-script {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
  transform: translateY(-1px);
}
.site-header--dark .logo-script,
.section--practice .logo-script {
  /* reserved: swap to on-dark asset if header goes dark */
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid var(--gold);
  padding: 0.45em 0.7em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: none;
}
.nav-toggle[aria-expanded="true"] { background: var(--cream-dark); border-color: var(--ink); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  align-items: center;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
  color: var(--ink);
}
.site-nav .nav-cta {
  background: transparent;
  color: var(--ink) !important;
  padding: 0.5em 1em;
  border: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  box-shadow: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.site-nav .nav-cta:hover {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
  box-shadow: none;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    padding: 1rem var(--space) 1.25rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .site-nav a { padding: 0.55em 0; }
  .site-nav .nav-cta { text-align: center; margin-top: 0.5rem; }
}

/* —— Hero —— */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 0.5em; }
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 38ch;
}
.hero-meta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-panel {
  background: var(--ink);
  color: var(--cream);
  padding: 1.75rem 1.5rem;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  position: relative;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--gold);
  pointer-events: none;
  opacity: 0.5;
}
.hero-panel h2 {
  color: var(--lime);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-panel ul { margin: 0; padding-left: 1.1em; }
.hero-panel li { margin-top: 0.5em; }
.hero-panel strong { color: var(--gold-light); }

/* —— Sections —— */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.section--alt {
  background: var(--cream-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-head .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 1.35rem 1.25rem;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--gold);
}
.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--ink);
  background: var(--lime);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--ink-soft); flex: 1; margin-bottom: 0; font-size: 0.98rem; }
.card .card-link {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  align-self: flex-start;
}
.card .card-link:hover { border-bottom-color: var(--gold); }

/* —— Pricing —— */
.region-toggle {
  display: inline-flex;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 1.75rem;
}
.region-toggle button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65em 1.2em;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.region-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--lime);
}
.region-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: -0.75rem 0 1.5rem;
}

.price-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 1.5rem;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card--featured {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 6px 6px 0 var(--lime);
}
.price-card--featured h3,
.price-card--featured .price { color: var(--lime); }
.price-card--featured p { color: var(--cream-dark); }
.price-card--featured .btn {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--gold);
}
.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
}
.price-card--featured .price-label { color: var(--gold-light); }
.price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0.2em 0 0.4em;
  color: var(--ink);
}
.price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.price-card--featured .price small { color: var(--cream-dark); }
.price-card ul {
  flex: 1;
  margin: 1rem 0 1.25rem;
  padding-left: 1.1em;
  font-size: 0.95rem;
}
.mx-price { display: none; }
[data-region="mx"] .us-price { display: none; }
[data-region="mx"] .mx-price { display: inline; }
[data-region="us"] .us-price { display: inline; }
[data-region="us"] .mx-price { display: none; }

/* —— Ecosystem teaser —— */
.eco-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .eco-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .eco-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.eco-card {
  border: 2.5px solid var(--ink);
  padding: 1.5rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.eco-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 4rem; height: 4rem;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 2px,
    transparent 2px,
    transparent 8px
  );
  opacity: 0.08;
}
.eco-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  border: 2px solid var(--ink);
  padding: 0.25em 0.55em;
  margin-bottom: 0.75rem;
}

/* —— CTA band —— */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.cta-band h2 { color: var(--lime); }
.cta-band p { color: var(--cream-dark); max-width: 42ch; }
.cta-band .btn--lime { margin-top: 0.5rem; }

/* —— Tongue page —— */
.tongue-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .tongue-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
.tongue-svg-wrap {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 1.25rem;
  box-shadow: 8px 8px 0 var(--gold);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.tongue-svg {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.tongue-region {
  cursor: pointer;
  transition: fill 0.15s ease, stroke-width 0.15s ease;
}
.tongue-region:hover,
.tongue-region.is-active {
  fill: var(--lime) !important;
  stroke: var(--ink);
  stroke-width: 3;
}
.tongue-base { fill: #e8a090; stroke: var(--ink); stroke-width: 2.5; }
.sign-panel {
  border: 2.5px solid var(--ink);
  background: var(--paper);
  padding: 1.35rem;
  min-height: 14rem;
  box-shadow: 5px 5px 0 var(--ink);
}
.sign-panel h3 { color: var(--gold-deep); margin-bottom: 0.4em; }
.sign-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.sign-chip {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4em 0.75em;
  border: 2px solid var(--ink);
  background: var(--cream);
  cursor: pointer;
  font-family: var(--font-body);
}
.sign-chip.is-active,
.sign-chip:hover {
  background: var(--lime);
}
.disclaimer {
  border-left: 4px solid var(--gold);
  background: var(--cream-dark);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.upload-mock {
  border: 2.5px dashed var(--ink);
  background: var(--paper);
  padding: 1.5rem;
  text-align: center;
}
.upload-mock input[type="file"] {
  margin: 1rem auto;
  max-width: 100%;
}
.upload-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* —— Ayurveda literacy —— */
.literacy-block {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 760px) {
  .literacy-block {
    grid-template-columns: 180px 1fr;
    gap: 2rem;
  }
}
.literacy-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  border: 3px solid var(--ink);
  background: var(--ink);
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 180px;
  box-shadow: 5px 5px 0 var(--lime);
}

/* —— Book form —— */
.book-form {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 8px 8px 0 var(--ink);
  max-width: 36rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  font: inherit;
  padding: 0.7em 0.85em;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
}
.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.payment-box {
  border: 2px solid var(--ink);
  background: var(--cream-dark);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
}
.payment-box h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.steps-list li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  border: 2px solid var(--ink);
  background: var(--lime);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: 2px 2px 0 var(--ink);
}

/* —— About —— */
.bio-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .bio-grid { grid-template-columns: 280px 1fr; }
}
.bio-portrait {
  border: 3px solid var(--ink);
  background: var(--ink);
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-family: var(--font-display);
  text-align: center;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--gold);
  position: relative;
}
.bio-portrait::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--gold);
  opacity: 0.4;
}
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.cred {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
  padding: 0.35em 0.6em;
  background: var(--cream);
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: var(--cream-dark);
  padding: 3rem 0 2rem;
  border-top: 4px solid var(--gold);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h3 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.site-footer a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: 0.45rem; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-tag {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 241, 227, 0.2);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: var(--muted);
}
.footer-bottom span { color: var(--cream-dark); }

/* —— Page header —— */
.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
  border-bottom: 3px solid var(--ink);
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(26, 21, 16, 0.04) 11px,
      rgba(26, 21, 16, 0.04) 12px
    );
}
.page-hero h1 { margin-bottom: 0.35em; }
.page-hero p {
  max-width: 48ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0;
}

/* —— Print —— */
@media print {
  .site-header, .nav-toggle, .cta-band, .site-footer .footer-grid > :not(:first-child),
  .btn, .region-toggle, .upload-mock, .skip-link { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .lino-border, .card, .price-card, .lino-frame {
    box-shadow: none !important;
    break-inside: avoid;
  }
  a { color: black; text-decoration: underline; }
  .site-footer { border-top: 2px solid black; background: white; color: black; }
}

/* —— Utilities —— */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 48ch; }

/* —— Linocut logo assets —— */
.logo-img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-portrait {
  background: var(--cream) !important;
  padding: 0.75rem !important;
  color: var(--ink);
}
.bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.hero-logo {
  max-width: 280px;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--ink);
  background: var(--cream);
  padding: 0.5rem;
  box-shadow: 4px 4px 0 var(--gold);
}
.footer-logo {
  max-width: 140px;
  margin-bottom: 0.75rem;
  background: var(--cream);
  padding: 0.35rem;
  border: 1px solid var(--gold);
}

/* —— Dual pay tracks —— */
.track-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 760px) {
  .track-grid { grid-template-columns: 1fr 1fr; }
}
.track-card {
  border: 2.5px solid var(--ink);
  background: var(--paper);
  padding: 1.35rem 1.25rem;
  box-shadow: 5px 5px 0 var(--ink);
}
.track-card--direct {
  box-shadow: 5px 5px 0 var(--lime);
}
.track-card--coach {
  background: var(--cream-dark);
  box-shadow: 5px 5px 0 var(--gold);
}
.track-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
.track-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lime);
  border: 2px solid var(--ink);
  padding: 0.25em 0.55em;
  margin-bottom: 0.75rem;
}
.badge--soft {
  background: var(--gold) !important;
}
.card-list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.card .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lime);
  border: 2px solid var(--ink);
  padding: 0.25em 0.55em;
}
.prose-narrow { max-width: 42rem; }
.cred--upcoming {
  background: var(--gold-light) !important;
  border-style: dashed !important;
}
.page-hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.sign-chip:focus-visible,
.tongue-region:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4), 0 0 14px rgba(212, 175, 55, 0.3);
}
.mx-banner {
  display: none;
  border: 2.5px solid var(--ink);
  background: var(--gold-light);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--ink);
}
[data-region="mx"] .mx-banner { display: block; }
[data-region="mx"] .price .mx-price {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

/* —— Direct pay block —— */
.pay-direct {
  border: 3px solid var(--ink);
  background: var(--paper);
  padding: 1.35rem 1.4rem;
  margin: 1.75rem 0;
  box-shadow: 5px 5px 0 var(--gold);
}
.pay-direct h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.pay-direct .pay-lead {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.pay-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.pay-list li {
  margin: 0;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(42, 34, 24, 0.35);
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
}
.pay-list li:last-child { border-bottom: none; }
.pay-list .pay-label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pay-list .pay-value { margin: 0; }
.replace-mark {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime);
  border: 2px solid var(--ink);
  padding: 0.15em 0.45em;
  margin-left: 0.35em;
  vertical-align: middle;
}
.pay-confirm {
  border-left: 4px solid var(--lime);
  padding: 0.65rem 0 0.65rem 1rem;
  margin: 0;
  font-weight: 600;
}

/* —— Legal / guide prose —— */
.prose {
  max-width: 44rem;
}
.prose h2 {
  margin-top: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(42, 34, 24, 0.2);
}
.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.prose h3 { margin-top: 1.5rem; }
.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-top: 0.75rem;
}
.footer-legal a {
  color: var(--gold-light);
  font-size: 0.85rem;
}
.footer-legal a:hover { color: var(--lime); }
.footer-bottom {
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

/* —— Guides —— */
.guide-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
}
.guide-card {
  border: 2.5px solid var(--ink);
  background: var(--paper);
  padding: 1.35rem 1.4rem;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.guide-card .eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.guide-card h3 { margin: 0; }
.guide-card p { flex: 1; margin-bottom: 0.5rem; color: var(--ink-soft); }
.article-sections > * + * { margin-top: 1.75rem; }
.article-sections h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin-bottom: 0.5rem;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.related-links a {
  border: 2px solid var(--ink);
  padding: 0.4em 0.75em;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
}
.related-links a:hover {
  background: var(--lime);
  color: var(--ink);
}


/* ==========================================================================
   Motif system - Ayurveda x Mayan linocut (one print series)
   + modern rebel glow (10-20% of UI)
   North star: warm earth by day + soft lime/gold glow at the edges
   ========================================================================== */

.motif {
  display: block;
  color: var(--ink);
  flex-shrink: 0;
}
.motif svg { width: 100%; height: auto; display: block; }
.motif--sm { width: 2.25rem; }
.motif--md { width: 3.5rem; }
.motif--lg { width: 5.5rem; }
.motif--stamp {
  padding: 0.35rem;
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}
.motif--on-dark { color: var(--cream); }
.motif--lime { color: var(--lime); }
.motif--gold { color: var(--gold); }

.glow-lime {
  box-shadow:
    0 0 0 2px var(--ink),
    0 0 18px rgba(200, 245, 66, 0.45),
    0 0 40px rgba(200, 245, 66, 0.18);
}
.glow-gold {
  box-shadow:
    0 0 0 2px var(--ink),
    0 0 16px rgba(196, 160, 53, 0.4),
    0 0 36px rgba(196, 160, 53, 0.16);
}
.glow-ember {
  box-shadow:
    0 0 0 2px var(--ink),
    0 0 18px rgba(184, 92, 56, 0.35),
    0 0 38px rgba(184, 92, 56, 0.14);
}
.glow-text-lime {
  text-shadow: 0 0 12px rgba(200, 245, 66, 0.55), 0 0 28px rgba(200, 245, 66, 0.2);
}
.glow-text-gold {
  text-shadow: 0 0 10px rgba(196, 160, 53, 0.5), 0 0 24px rgba(196, 160, 53, 0.18);
}

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 85%;
  background:
    radial-gradient(ellipse 55% 70% at 18% 40%, rgba(200, 245, 66, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 60% at 88% 30%, rgba(196, 160, 53, 0.12), transparent 68%),
    radial-gradient(ellipse 40% 50% at 55% 90%, rgba(184, 92, 56, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .container,
.hero > .container,
.hero-grid { position: relative; z-index: 1; }

.logo-mark {
  box-shadow: 0 0 14px rgba(200, 245, 66, 0.35);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.logo:hover .logo-mark {
  box-shadow: 0 0 22px rgba(200, 245, 66, 0.55), 0 0 40px rgba(200, 245, 66, 0.2);
}

.btn--lime {
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn--lime:hover,
.btn--lime:focus-visible {
  box-shadow: none;
}
.nav-cta {
  box-shadow: none;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: none;
}

.stamp {
  box-shadow: 3px 3px 0 var(--ink), 0 0 14px rgba(200, 245, 66, 0.28);
}
.badge {
  box-shadow: 0 0 10px rgba(200, 245, 66, 0.15);
}

.band-ink {
  background: var(--ink);
  color: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  overflow: hidden;
}
.band-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(200, 245, 66, 0.12), transparent 70%),
    radial-gradient(ellipse 35% 70% at 90% 40%, rgba(196, 160, 53, 0.1), transparent 70%);
  pointer-events: none;
}
.band-ink > .container { position: relative; z-index: 1; }
.band-ink h2, .band-ink h3 { color: var(--cream); }
.band-ink p { color: var(--cream-dark); }
.band-ink .btn--ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.band-ink .btn--ghost:hover {
  background: rgba(200, 245, 66, 0.15);
  box-shadow: 0 0 18px rgba(200, 245, 66, 0.3);
}

.motif-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.25rem 0;
  color: var(--ink);
}
.motif-divider::before,
.motif-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ink) 12%, var(--ink) 88%, transparent);
  opacity: 0.85;
}
.motif-divider .motif {
  filter: drop-shadow(0 0 6px rgba(196, 160, 53, 0.35));
}

.hero-ornaments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.hero-ornaments .motif {
  filter: drop-shadow(0 0 8px rgba(200, 245, 66, 0.25));
  opacity: 0.92;
}

.footer-stamps {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-stamps .motif {
  color: var(--gold-light);
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(200, 245, 66, 0.2));
  width: 1.85rem;
}
.footer-stamps .motif:hover {
  opacity: 1;
  color: var(--lime);
  filter: drop-shadow(0 0 12px rgba(200, 245, 66, 0.45));
}

.article-ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
.article-ornament .motif {
  filter: drop-shadow(0 0 10px rgba(196, 160, 53, 0.35));
}

.card, .guide-card, .price-card, .literacy-block, .track-card {
  border-radius: 4px 12px 4px 12px;
}
.pay-direct {
  border-radius: 4px 14px 4px 14px;
  position: relative;
}
.pay-direct::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: 0 0 28px rgba(200, 245, 66, 0.12);
  pointer-events: none;
}

.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 70% at 20% 50%, rgba(200, 245, 66, 0.16), transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 40%, rgba(196, 160, 53, 0.12), transparent 65%);
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }

.site-footer {
  box-shadow: inset 0 1px 0 rgba(200, 245, 66, 0.15), 0 -8px 40px rgba(26, 21, 16, 0.15);
}

/* ==========================================================================
   Living photography — organic bands, soft overlays, glow-edged frames
   Motifs frame; photos carry emotion. CSS-only parallax feel.
   ========================================================================== */

.photo-credit-note {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(247, 241, 227, 0.55);
  max-width: 52ch;
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.footer-bottom .photo-credit-note {
  flex-basis: 100%;
  order: 3;
}

/* Organic photo frame */
.photo-frame {
  position: relative;
  overflow: hidden;
  border: 2.5px solid var(--ink);
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  box-shadow:
    0 0 0 1px var(--cream),
    0 0 0 4px var(--ink),
    0 0 28px rgba(200, 245, 66, 0.22),
    0 0 48px rgba(196, 160, 53, 0.12),
    8px 10px 0 rgba(26, 21, 16, 0.18);
  background: var(--ink);
  isolation: isolate;
}
.photo-frame--roundish {
  border-radius: 28% 72% 35% 65% / 55% 30% 70% 45%;
}
.photo-frame--soft {
  border-radius: 1.75rem 2.75rem 1.5rem 2.5rem;
}
.photo-frame--tile {
  border-radius: 1.25rem 2rem 1.5rem 2.25rem;
}
.photo-frame--wide {
  border-radius: 1.5rem 3rem 2rem 1.25rem;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.photo-frame:hover img {
  transform: scale(1.14);
}

/* Soft earthy overlay wash */
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(165deg, rgba(26, 21, 16, 0.08) 0%, transparent 42%, rgba(26, 21, 16, 0.28) 100%),
    radial-gradient(ellipse 80% 60% at 20% 15%, rgba(200, 245, 66, 0.08), transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.photo-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(26, 21, 16, 0.72);
  border: 1.5px solid rgba(200, 245, 66, 0.45);
  padding: 0.4em 0.75em;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 16px rgba(200, 245, 66, 0.2);
  border-radius: 999px;
}

.photo-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.photo-fig figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  padding-inline: 0.25rem;
}

/* —— Hero living split (Mexico | India) —— */
.photo-split {
  display: grid;
  gap: 1rem;
  padding: 0 var(--space) clamp(1.5rem, 4vw, 2.5rem);
  width: min(100%, calc(var(--max) + 4rem));
  margin-inline: auto;
}
@media (min-width: 720px) {
  .photo-split {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    padding-inline: var(--space);
  }
}
.photo-split .photo-frame {
  aspect-ratio: 4 / 3;
  min-height: 220px;
}
@media (min-width: 720px) {
  .photo-split .photo-frame:first-child {
    border-radius: 2rem 3.5rem 1.75rem 2.75rem;
    transform: rotate(-0.6deg);
  }
  .photo-split .photo-frame:last-child {
    border-radius: 3rem 1.75rem 2.75rem 2rem;
    transform: rotate(0.7deg);
    margin-top: 1.25rem;
  }
}

/* —— Full-bleed flowing band —— */
.photo-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}
.photo-band--bleed {
  min-height: clamp(240px, 38vw, 420px);
  display: grid;
  place-items: stretch;
}
.photo-band--bleed .photo-frame {
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow:
    inset 0 0 80px rgba(26, 21, 16, 0.35),
    0 0 40px rgba(200, 245, 66, 0.12);
  min-height: inherit;
}
.photo-band--bleed .photo-frame img {
  min-height: clamp(240px, 38vw, 420px);
  object-position: center 40%;
}
@media (min-width: 900px) {
  .photo-band--parallax .photo-frame img {
    transform: scale(1.12);
    object-position: center 35%;
  }
}

.photo-band__inner {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* —— Asymmetric masonry / flow —— */
.photo-flow {
  display: grid;
  gap: 1rem 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .photo-flow {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }
  .photo-flow .flow-item:nth-child(1) { grid-column: 1 / 8; grid-row: span 2; min-height: 280px; }
  .photo-flow .flow-item:nth-child(2) { grid-column: 8 / 13; grid-row: span 1; min-height: 160px; }
  .photo-flow .flow-item:nth-child(3) { grid-column: 8 / 13; grid-row: span 1; min-height: 160px; }
  .photo-flow .flow-item:nth-child(4) { grid-column: 1 / 5; grid-row: span 1; min-height: 200px; }
  .photo-flow .flow-item:nth-child(5) { grid-column: 5 / 9; grid-row: span 1; min-height: 200px; }
  .photo-flow .flow-item:nth-child(6) { grid-column: 9 / 13; grid-row: span 1; min-height: 200px; }
}
.photo-flow .flow-item {
  position: relative;
}
.photo-flow .photo-frame {
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.photo-flow .flow-item:nth-child(odd) .photo-frame {
  border-radius: 2rem 1.25rem 2.5rem 1.75rem;
}
.photo-flow .flow-item:nth-child(even) .photo-frame {
  border-radius: 1.5rem 2.75rem 1.35rem 2.25rem;
}
.photo-flow .flow-item:nth-child(1) .photo-frame {
  border-radius: 2.5rem 4rem 2rem 3rem;
}
@media (max-width: 639px) {
  .photo-flow .photo-frame { aspect-ratio: 4 / 3; }
}

/* Motif chip floating on photo sections */
.photo-section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.photo-section-head .motif {
  filter: drop-shadow(0 0 10px rgba(200, 245, 66, 0.3));
  margin-top: 0.25rem;
}

/* —— Ecosystem cards with photo covers —— */
.eco-card--photo {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem 2rem 1.25rem 1.75rem;
  overflow: hidden;
  box-shadow:
    5px 5px 0 var(--ink),
    0 0 24px rgba(196, 160, 53, 0.15);
}
.eco-card--photo .eco-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 2.5px solid var(--ink);
}
.eco-card--photo .eco-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1s ease;
}
.eco-card--photo:hover .eco-photo img {
  transform: scale(1.12);
}
.eco-card--photo .eco-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 21, 16, 0.45), transparent 55%);
  pointer-events: none;
}
.eco-card--photo .eco-body {
  padding: 1.35rem 1.35rem 1.5rem;
  position: relative;
  z-index: 1;
}
.eco-card--photo::before { display: none; }

/* —— Page / guide hero with photo —— */
.page-hero--photo {
  padding: 0;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 42vw, 440px);
  display: flex;
  align-items: flex-end;
}
.page-hero--photo::before {
  display: none;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  object-position: center 35%;
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(17, 17, 17, 0.22) 100%);
}
.page-hero--photo > .container {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  color: #faf8f4;
}
.page-hero--photo h1 { color: #faf8f4; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.page-hero--photo p { color: rgba(250, 248, 244, 0.88); }
.page-hero--photo .eyebrow { color: var(--gold); }
.page-hero--photo .article-ornament .motif {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

/* About ecosystem photo strip */
.eco-photo-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .eco-photo-strip { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .eco-photo-strip { grid-template-columns: 1fr 1fr 1fr; }
}
.eco-photo-strip .photo-frame {
  aspect-ratio: 5 / 4;
  min-height: 200px;
}

@media (prefers-reduced-motion: reduce) {
  .photo-frame img,
  .eco-card--photo .eco-photo img,
  .page-hero__media img {
    transform: none !important;
    transition: none !important;
  }
  .photo-frame:hover img,
  .eco-card--photo:hover .eco-photo img {
    transform: none !important;
  }
}

/* ==========================================================================
   Brand lock — gold script titles, Body/Mind/Soul glow, mascot, Laura photos
   ========================================================================== */

.title-script,
h1.title-script,
.display-script-pair .script-line {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  line-height: 1.15;
}
.display-script-pair {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.display-script-pair .script-line {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  display: block;
}
.display-script-pair .sans-line {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  color: var(--ink);
  display: block;
  letter-spacing: -0.02em;
}
.page-hero--photo .title-script,
.section-head--on-dark .title-script,
.section--practice h2 {
  color: var(--gold);
  text-shadow:
    0 0 22px rgba(212, 175, 55, 0.55),
    0 0 40px rgba(61, 224, 255, 0.15);
}
.section--practice .neon-title {
  text-shadow:
    0 0 18px currentColor,
    0 0 36px rgba(212, 175, 55, 0.25);
}

.section--practice {
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(255, 138, 61, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 30%, rgba(61, 224, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 50% 90%, rgba(200, 245, 66, 0.12), transparent 60%),
    #0a0a0a;
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.section--practice::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--soul-glow), var(--mind-glow), var(--gold), var(--body-glow)) 1;
  pointer-events: none;
  opacity: 0.55;
}
.section-head--on-dark .eyebrow { color: var(--lime); }
.section-head--on-dark h2 { color: var(--gold); }
.section-head--on-dark .lead { color: rgba(247, 241, 227, 0.82); max-width: 52ch; }

.practice-slides {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .practice-slides {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
.practice-slides--compact { gap: 1rem; }
.practice-slide {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 0 28px rgba(200, 245, 66, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.practice-slide:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.5),
    0 0 36px rgba(200, 245, 66, 0.22);
}
.practice-slide--body { box-shadow: 0 0 24px rgba(255, 138, 61, 0.22); }
.practice-slide--mind { box-shadow: 0 0 24px rgba(200, 245, 66, 0.22); }
.practice-slide--soul { box-shadow: 0 0 24px rgba(61, 224, 255, 0.22); }
.practice-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.practice-slide--soul img { object-position: center 20%; }
.practice-slide figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
}
.practice-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}
.practice-dot--body { background: var(--body-glow); color: var(--body-glow); }
.practice-dot--mind { background: var(--mind-glow); color: var(--mind-glow); }
.practice-dot--soul { background: var(--soul-glow); color: var(--soul-glow); }
.practice-note {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.55);
  text-align: center;
}

/* About Laura photo band */
.about-photo-band {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}
@media (min-width: 700px) {
  .about-photo-band { grid-template-columns: repeat(3, 1fr); }
}
.about-photo-band .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 180px;
}
.about-photo-band img {
  object-fit: cover;
  object-position: center 18%;
}
.bio-portrait-caption {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}
.bio-portrait .photo-frame {
  aspect-ratio: 4 / 5;
  max-width: 100%;
}
.bio-portrait .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Maha Prishna float — tasteful, not huge */
.mascot-float {
  position: fixed;
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 40;
  width: clamp(72px, 12vw, 108px);
  filter: drop-shadow(0 0 14px rgba(200, 245, 66, 0.35)) drop-shadow(0 8px 18px rgba(26, 21, 16, 0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
}
.mascot-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.mascot-float:hover {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.5)) drop-shadow(0 10px 22px rgba(26, 21, 16, 0.4));
}
@media (max-width: 520px) {
  .mascot-float { width: 68px; opacity: 0.92; }
}
@media (prefers-reduced-motion: reduce) {
  .mascot-float,
  .practice-slide { transition: none; }
  .mascot-float:hover,
  .practice-slide:hover { transform: none; }
}

/* Dark bands keep gold script readable */
.cta-band h2 {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
  font-size: clamp(2rem, 5vw, 2.85rem);
}

/* ==========================================================================
   Landing brand experience + sitewide black/neon post language
   Laura’s posts: black canvas · gold script · neon lime/orange/cyan · botanicals
   Warm earth sections stay inviting; glow ~15–25% of UI, premium not gaudy.
   ========================================================================== */

/* —— Neon title utilities (sitewide) —— */
.neon-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
.neon-title--lime {
  color: var(--lime);
  text-shadow:
    0 0 12px rgba(200, 245, 66, 0.65),
    0 0 28px rgba(200, 245, 66, 0.35),
    0 0 48px rgba(200, 245, 66, 0.15);
}
.neon-title--gold {
  color: var(--gold);
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.55),
    0 0 32px rgba(212, 175, 55, 0.28),
    0 0 50px rgba(61, 224, 255, 0.1);
}
.neon-title--cyan {
  color: var(--soul-glow);
  text-shadow:
    0 0 12px rgba(61, 224, 255, 0.6),
    0 0 28px rgba(61, 224, 255, 0.3);
}
.neon-title--orange {
  color: var(--body-glow);
  text-shadow:
    0 0 12px rgba(255, 138, 61, 0.55),
    0 0 28px rgba(255, 138, 61, 0.28);
}
.neon-title--sm { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }

.title-flow {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  max-width: 22ch;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}
.section-head--center .lead,
.section-head--center .title-flow { margin-inline: auto; }
.section-head--center .title-flow { max-width: 28ch; }

.eyebrow--gold { color: var(--gold-deep); }
.lead--wide { max-width: 52ch; }

.section-script-logo,
.cta-script-logo {
  display: block;
  width: auto;
  height: clamp(2.4rem, 5vw, 3.2rem);
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.45));
}
.section-head--center .section-script-logo { margin-inline: auto; }
.cta-script-logo {
  height: clamp(2.6rem, 5.5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

/* Ghost / glow — elegant gold outline on light pages; neon restored inside .section--practice */
.btn--ghost-neon {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn--ghost-neon:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--glow {
  box-shadow: none;
}
.btn--glow:hover {
  box-shadow: none;
}
.section--practice .btn--ghost-neon,
.section--post-vibes .btn--ghost-neon,
.cta-band--neon .btn--ghost-neon {
  color: var(--cream);
  border: 2px solid rgba(200, 245, 66, 0.45);
  box-shadow: 0 0 16px rgba(200, 245, 66, 0.12);
}
.section--practice .btn--ghost-neon:hover,
.section--post-vibes .btn--ghost-neon:hover,
.cta-band--neon .btn--ghost-neon:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow:
    0 0 22px rgba(200, 245, 66, 0.45),
    0 0 40px rgba(200, 245, 66, 0.2);
}
.section--practice .btn--glow,
.section--post-vibes .btn--glow {
  box-shadow:
    4px 4px 0 var(--ink),
    0 0 18px rgba(200, 245, 66, 0.4),
    0 0 36px rgba(200, 245, 66, 0.18);
}

/* —— Post canvas card (black + neon mini-post) —— */
.post-canvas {
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(255, 138, 61, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(61, 224, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 245, 66, 0.06), transparent 60%),
    #050505;
  color: var(--cream);
  border: 1px solid transparent;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 40px rgba(200, 245, 66, 0.08),
    8px 12px 32px rgba(26, 21, 16, 0.25);
  overflow: hidden;
}
.post-canvas::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--soul-glow), var(--mind-glow), var(--gold), var(--body-glow)) 1;
  opacity: 0.45;
  pointer-events: none;
  border-radius: 0.75rem;
}
.post-canvas__logo {
  height: 2.1rem;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}
.post-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
  position: relative;
  z-index: 1;
}
.post-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  color: rgba(247, 241, 227, 0.9);
  line-height: 1.45;
}
.post-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
  box-shadow: 0 0 10px currentColor;
}
.post-dot--orange { background: var(--body-glow); color: var(--body-glow); }
.post-dot--lime { background: var(--mind-glow); color: var(--mind-glow); }
.post-dot--cyan { background: var(--soul-glow); color: var(--soul-glow); }
.post-canvas__foot {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.5);
  position: relative;
  z-index: 1;
}

/* —— Elegant light hero (magazine) —— */
.hero-immersive {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--cream);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.hero-immersive__media,
.hero-immersive__veil {
  display: none;
}
.hero-elegant {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-elegant {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}
.hero-elegant__copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  color: var(--ink);
}
.hero-script-logo {
  height: clamp(3rem, 7vw, 4.6rem);
  width: auto;
  max-width: min(400px, 88vw);
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.25));
}
.hero-glow-line {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--gold);
  text-shadow: none;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  font-style: italic;
}
.hero-immersive__lead {
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 0.25rem;
  line-height: 1.65;
}
.hero-immersive__meta {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 48ch;
}
.hero-elegant__photo {
  margin: 0;
  position: relative;
}
.hero-elegant__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  border: none;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 24px 48px rgba(17, 17, 17, 0.1);
}
.hero-elegant__photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  pointer-events: none;
}
.hero-immersive__botanicals {
  display: none;
}
.botanical-accent {
  width: clamp(48px, 8vw, 72px);
  height: auto;
}
@media (max-width: 640px) {
  .hero-immersive { padding: 2rem 0 2.5rem; }
  .hero-elegant__photo img { aspect-ratio: 5 / 4; }
}

/* —— Warm help flow —— */
.section--warm {
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(212, 160, 23, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(196, 92, 42, 0.06), transparent 50%),
    var(--paper);
}
.help-flow__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .help-flow__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}
.help-flow__copy .title-flow { max-width: 18ch; }

/* —— Post-vibes practice band refinements —— */
.section--post-vibes {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.practice-slide--photo {
  position: relative;
}
.practice-slide--photo img {
  filter: brightness(0.72) saturate(1.05);
}
.practice-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(61, 224, 255, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}
.practice-slide__overlay img {
  height: 2rem;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5)) brightness(1) !important;
}
.practice-slide--photo figcaption { z-index: 2; }
.practice-slide--body:hover {
  box-shadow: 0 0 36px rgba(255, 138, 61, 0.35);
}
.practice-slide--mind:hover {
  box-shadow: 0 0 36px rgba(200, 245, 66, 0.35);
}
.practice-slide--soul:hover {
  box-shadow: 0 0 36px rgba(61, 224, 255, 0.35);
}

/* —— Abhyāsa Instagram full-res band (6 slides) —— */
.practice-slides--abhyasa {
  display: grid;
  gap: 1.35rem 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 640px) {
  .practice-slides--abhyasa {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .practice-slides--abhyasa {
    grid-template-columns: repeat(3, 1fr);
  }
}
.practice-slide--ig {
  display: flex;
  flex-direction: column;
  background: #000;
}
.practice-slide--ig img {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: #050505;
}
.practice-slide--ig figcaption {
  position: static;
  background: transparent;
  padding: 0.65rem 0.15rem 0.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: rgba(247, 241, 227, 0.78);
}

/* —— Soft read cards (not boxy stacks) —— */
.section--reads {
  background: var(--paper);
}
.soft-card-row {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 720px) {
  .soft-card-row { grid-template-columns: repeat(3, 1fr); }
}
.soft-card {
  position: relative;
  background: rgba(247, 241, 227, 0.85);
  border: 1.5px solid rgba(26, 21, 16, 0.12);
  border-radius: 1.75rem 2.25rem 1.5rem 2rem;
  padding: 1.6rem 1.4rem 1.5rem;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(26, 21, 16, 0.06),
    0 0 0 1px rgba(212, 175, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.soft-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(17, 17, 17, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.35);
}
.soft-card__glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  pointer-events: none;
  opacity: 0.55;
}
.soft-card--tongue .soft-card__glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 245, 66, 0.22), transparent 65%);
}
.soft-card--agni .soft-card__glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 138, 61, 0.2), transparent 65%);
}
.soft-card--elim .soft-card__glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(61, 224, 255, 0.18), transparent 65%);
}
.soft-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 1;
}
.soft-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.45em;
}
.soft-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 0;
  font-size: 0.98rem;
}
.soft-card .card-link {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
}
.soft-card .card-link:hover { border-bottom-color: var(--ink); }

/* —— Dual track flowing pills —— */
.dual-track-flow {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .dual-track-flow { grid-template-columns: 1fr 1fr; }
}
.track-pill {
  background: var(--paper);
  border-radius: 1.5rem 2rem 1.35rem 1.85rem;
  padding: 1.5rem 1.4rem;
  border: 1.5px solid rgba(26, 21, 16, 0.14);
  box-shadow: 0 6px 24px rgba(26, 21, 16, 0.06);
  position: relative;
  overflow: hidden;
}
.track-pill--direct {
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.06);
  border-color: rgba(212, 175, 55, 0.45);
}
.track-pill--coming::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 5rem; height: 5rem;
  background: radial-gradient(circle at 100% 0%, rgba(61, 224, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.track-pill h3 { margin-top: 0.35rem; }
.track-pill p { color: var(--ink-soft); }
.track-pill .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.track-pill .card-link:hover { border-bottom-color: var(--ink); }

/* —— Guides whisper — elegant cream —— */
.guides-whisper__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.guides-whisper__inner .lead {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 0;
}
.section--guides-whisper .eyebrow { color: var(--gold-deep); }
.section--guides-whisper.band-ink {
  background: var(--cream-dark);
  color: var(--ink);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.section--guides-whisper.band-ink::before { display: none; }
.section--guides-whisper.band-ink h2,
.section--guides-whisper .neon-title--gold {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold) !important;
  text-shadow: none;
  font-size: clamp(2rem, 5vw, 2.85rem);
}
.section--guides-whisper.band-ink p { color: var(--ink-soft); }

/* —— Elegant CTA band (classy gold on cream; not neon) —— */
.cta-band--neon,
.cta-band {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-band--neon::before,
.cta-band::before {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-image: none;
  opacity: 0.7;
  inset: 14px;
  background: none;
}
.cta-band--neon h2,
.cta-band h2 {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  text-shadow: none;
  font-size: clamp(2.1rem, 5.5vw, 3.1rem);
}
.cta-band--neon p,
.cta-band p {
  color: var(--ink-soft);
  max-width: 42ch;
}
.cta-band .cta-script-logo {
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.25));
}

/* —— Guide mid CTA (cream/gold soft glow) —— */
.cta-mid {
  margin: 2rem 0 2.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.95), rgba(250, 244, 230, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 8px 28px rgba(26, 21, 16, 0.06),
    0 0 24px rgba(212, 175, 55, 0.18);
}
.cta-mid__text {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 1.02rem;
}
.cta-mid .btn-row {
  margin: 0;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cta-band {
  margin-top: 2.5rem;
}
.cta-band .btn-row {
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.soft-card-row--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .soft-card-row--2 { grid-template-columns: repeat(2, 1fr); }
}
.article-sections .cta-mid + div h2 {
  margin-top: 0.25rem;
}


/* —— band-ink default: elegant dark gold (not neon) —— */
.band-ink {
  background: #161616;
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}
.band-ink::before {
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 65%);
}
.band-ink .eyebrow { color: var(--gold); }

.page-hero--photo h1.title-script,
.page-hero--photo .title-script {
  color: var(--gold);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

/* Soften default cards slightly sitewide — keep structure, less stiff */
.page-home .card {
  border-radius: 1.25rem 1.75rem 1.15rem 1.5rem;
  box-shadow: 4px 6px 0 rgba(26, 21, 16, 0.85), 0 0 20px rgba(200, 245, 66, 0.06);
}

/* Section eyebrows pick up a whisper of glow on hover of section (subtle) */
.section-head .eyebrow {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Living section breathing room */
.section--living {
  background: var(--cream);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

/* Prefer organic photo captions with neon edge */
.photo-caption {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: none;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .hero-immersive__media img { transform: none; }
  .soft-card:hover { transform: none; }
}

/* ==========================================================================
   Elegant classy theme polish (Sep 2026)
   White/cream magazine shell · gold accents · neon ONLY in Abhyāsa bands
   ========================================================================== */

.page-hero {
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--cream);
}

.stamp {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 0 12px rgba(212, 175, 55, 0.14);
  transform: none;
  color: var(--ink);
}
.stamp--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.badge {
  background: transparent;
  border: 1px solid var(--gold);
  box-shadow: none;
  color: var(--ink);
}
.badge--soft {
  border-color: rgba(17,17,17,0.25);
  color: var(--muted);
}

.card, .guide-card, .price-card, .literacy-block, .track-card {
  border-radius: 0;
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
}

.page-home .card {
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
}

.lino-border, .lino-frame {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
}
.lino-border {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 0 20px rgba(212, 175, 55, 0.16);
}

.eco-card--photo {
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;
}
.eco-card--photo .eco-photo {
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.soft-card {
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
}

.track-pill {
  border-radius: 0;
  background: #fff;
}

.photo-frame {
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.title-flow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head .eyebrow {
  text-shadow: none;
  color: var(--gold-deep);
}

.footer-legal a:hover { color: var(--gold); }

.footer-stamps .motif:hover {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.mascot-float {
  filter: drop-shadow(0 8px 18px rgba(17, 17, 17, 0.25));
}
.mascot-float:hover {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4)) drop-shadow(0 10px 22px rgba(17, 17, 17, 0.3));
}

/* Embedded black post-canvas stays intentional contrast on white */
.post-canvas {
  border-radius: 0.75rem;
}

/* Abhyāsa / practice bands: keep full neon immersion on elegant white site */
.section--practice,
.section--post-vibes {
  /* retained black + neon + gold from brand lock above */
  margin-block: 0;
}

.section--practice .section-script-logo,
.section--post-vibes .section-script-logo {
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.45));
}

/* Prefer IG slides framing */
.practice-slides--abhyasa .practice-slide--ig {
  border: 1px solid rgba(212, 175, 55, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-elegant__photo img { transform: none; }
}

/* Soft gold glow frames — elegant magazine, not harsh ink stamp */
:root {
  --frame-border: 1px solid rgba(212, 175, 55, 0.35);
  --frame-glow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
  --frame-glow-hover: 0 0 0 1px rgba(212, 175, 55, 0.28), 0 0 26px rgba(212, 175, 55, 0.32);
}

.card,
.price-card,
.guide-card,
.track-card,
.pay-direct,
.eco-card,
.sign-panel,
.book-form,
.region-toggle,
.tongue-svg-wrap,
.bio-portrait,
.hero-logo,
.soft-card,
.track-pill,
.photo-frame,
.upload-mock {
  border: var(--frame-border) !important;
  box-shadow: var(--frame-glow) !important;
  background: #fff;
}
.payment-box,
.mx-banner {
  border: var(--frame-border) !important;
  box-shadow: var(--frame-glow) !important;
}
.literacy-block {
  /* layout container — no frame stamp */
  box-shadow: none !important;
  border: none !important;
}

.card:hover,
.guide-card:hover,
.eco-card:hover,
.soft-card:hover,
.track-card:hover,
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--frame-glow-hover) !important;
}

.card-icon {
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 0 12px rgba(212, 175, 55, 0.16) !important;
}

.price-card--featured {
  background: var(--ink) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 22px rgba(212, 175, 55, 0.22) !important;
}
.price-card--featured .btn {
  box-shadow: none !important;
}

.region-toggle {
  background: #fff !important;
}
.region-toggle, .toggle-btn {
  box-shadow: var(--frame-glow) !important;
}

.lino-border {
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 0 20px rgba(212, 175, 55, 0.16) !important;
}
.lino-frame {
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: var(--frame-glow) !important;
  background: var(--paper);
}
.lino-frame::before {
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
  opacity: 0.7;
}

.hero-panel {
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.18), 0 0 22px rgba(212, 175, 55, 0.2) !important;
  background: #161616;
}

.stamp,
.motif--stamp {
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 0 12px rgba(212, 175, 55, 0.14) !important;
}

.form-group select,
.form-group input,
.form-group textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 10px rgba(212, 175, 55, 0.1);
  background: #fff;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55) !important;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.28), 0 0 16px rgba(212, 175, 55, 0.22);
}

.sign-chip,
.related-links a,
.cred,
.track-card .badge,
.card .badge,
.replace-mark,
.steps-list li::before {
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  box-shadow: none !important;
}

.literacy-num {
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.2) !important;
}

.eco-card--photo {
  box-shadow: var(--frame-glow) !important;
  border: var(--frame-border) !important;
  border-radius: 0;
}
.eco-card--photo .eco-photo {
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.pay-direct::before { display: none; }

.page-home .card {
  border-radius: 0;
  box-shadow: var(--frame-glow) !important;
}

.bio-portrait {
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: var(--frame-glow) !important;
}

.site-footer {
  background: #111;
  border-top: 1px solid var(--gold);
  box-shadow: none;
}

/* Keep Abhyāsa / practice / post-vibes neon energy untouched */
.section--practice,
.section--post-vibes {
  /* retained black + neon + gold from brand lock above */
}

/* ==========================================================================
   Maha Prishna teaching figures + four-element mask literacy
   Older Maha: Mexican huipil × classical Indian asana/mudra
   Younger / Little Maha: gut health + poop (Agni, Ama, coating, digestion, elimination)
   Masks: Quetzalcóatl · Tláloc · Coatlicue · Ehécatl
   Abhyāsa neon bands remain untouched above.
   ========================================================================== */

.maha-teach {
  margin: 0;
  background: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
  padding: 0.65rem 0.65rem 0.85rem;
}
.maha-teach img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--cream);
  display: block;
}
.maha-teach figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-top: 0.55rem;
  padding: 0;
}
.maha-teach--hero {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.maha-teach--aside {
  max-width: 260px;
  margin-inline: auto;
}
.maha-teach--inline {
  display: grid;
  place-items: center;
  max-width: 180px;
}
.maha-teach--bowel,
.maha-teach--gut {
  background: #fff8f4;
}
.maha-teach--wide {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.hero-elegant__photo--maha {
  background: var(--cream);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 28px rgba(212, 175, 55, 0.18),
    0 24px 48px rgba(17, 17, 17, 0.08);
}
.hero-elegant__photo--maha img {
  object-fit: contain;
  object-position: center bottom;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  width: 100%;
  height: auto;
}
.hero-elegant__photo--maha::after {
  border-color: rgba(212, 175, 55, 0.4);
}

.photo-flow--maha .photo-frame {
  background: var(--cream);
}
.photo-flow--maha .photo-frame img {
  object-fit: contain;
  object-position: center;
  transform: none;
  background: var(--cream);
}
.photo-flow--maha .photo-frame:hover img {
  transform: scale(1.03);
}
.photo-flow--maha .photo-frame::after {
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 17, 0.28) 100%);
  mix-blend-mode: normal;
  opacity: 1;
}
@media (min-width: 640px) {
  .photo-flow--maha {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
  }
  .photo-flow--maha .flow-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
  .photo-flow--maha .photo-frame {
    aspect-ratio: 3 / 4;
    min-height: 280px;
  }
}

.eco-photo--maha img {
  object-fit: contain;
  object-position: center;
  background: var(--cream);
  transform: none !important;
}
.eco-card--photo:hover .eco-photo--maha img {
  transform: scale(1.04) !important;
}

.reads-with-maha {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
@media (min-width: 800px) {
  .reads-with-maha {
    grid-template-columns: 1fr 200px;
  }
}

.soft-card--elim .maha-teach--inline,
.soft-card--agni .maha-teach--inline {
  margin: 0 0 0.75rem;
  max-width: 140px;
}

.page-hero--maha {
  background: #161410;
}
.page-hero--maha .page-hero__media img {
  object-fit: contain;
  object-position: center;
  background: #161410;
  transform: none;
}
.page-hero--maha .page-hero__media::after {
  background: linear-gradient(105deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.22) 70%);
}

.literacy-with-maha {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 800px) {
  .literacy-with-maha {
    grid-template-columns: 1fr 220px;
  }
}
.literacy-with-maha .maha-teach {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.services-maha {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
@media (min-width: 760px) {
  .services-maha {
    grid-template-columns: 180px 1fr;
  }
}

/* —— Three doshas / Mexican mask × Ayurveda literacy —— */
.section--elements {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(212, 175, 55, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(61, 224, 255, 0.06), transparent 50%),
    var(--cream);
  overflow: hidden;
}
.section--elements #elements {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.element-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 640px) {
  .element-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .element-grid--doshas { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1020px) {
  .element-grid:not(.element-grid--doshas) { grid-template-columns: repeat(4, 1fr); }
}

.element-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 18px rgba(212, 175, 55, 0.18);
  padding: 1.15rem 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
  animation: element-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.element-card:nth-child(1) { animation-delay: 0.05s; }
.element-card:nth-child(2) { animation-delay: 0.15s; }
.element-card:nth-child(3) { animation-delay: 0.25s; }
.element-card:nth-child(4) { animation-delay: 0.35s; }
.element-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 0 32px rgba(212, 175, 55, 0.32);
}
.element-card--vata:hover,
.element-card--air:hover { box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.45), 0 0 32px rgba(200, 245, 66, 0.25); }
.element-card--pitta:hover,
.element-card--fire:hover { box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.4), 0 0 32px rgba(255, 138, 61, 0.28); }
.element-card--kapha:hover,
.element-card--water:hover { box-shadow: 0 0 0 1px rgba(61, 224, 255, 0.45), 0 0 32px rgba(61, 224, 255, 0.28); }
.element-card--earth:hover { box-shadow: 0 0 0 1px rgba(47, 107, 79, 0.4), 0 0 32px rgba(47, 107, 79, 0.22); }
.element-caption-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.element-caption-note code {
  font-size: 0.72rem;
  word-break: break-all;
}

.element-mask {
  position: relative;
  aspect-ratio: 1;
  margin: 0 auto 0.65rem;
  width: min(100%, 220px);
  animation: maha-float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(17, 17, 17, 0.12));
}
.element-card:nth-child(2) .element-mask { animation-delay: -1.2s; }
.element-card:nth-child(3) .element-mask { animation-delay: -2.4s; }
.element-card:nth-child(4) .element-mask { animation-delay: -3.6s; }
.element-mask img,
.element-mask svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(0% at 50% 50%);
  animation: mask-reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.element-mask::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  pointer-events: none;
  animation: gold-ring 8s linear infinite;
}
.element-deity {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--gold);
  margin: 0;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}
.element-card h3 {
  text-align: center;
  font-size: 1.05rem;
  margin: 0.15rem 0 0.35rem;
}
.element-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
}
.element-ayur {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 0.15rem;
}
.element-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}

@keyframes maha-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes mask-reveal {
  from { clip-path: circle(0% at 50% 50%); opacity: 0.4; }
  to { clip-path: circle(72% at 50% 50%); opacity: 1; }
}
@keyframes gold-ring {
  from { transform: rotate(0deg) scale(1); opacity: 0.7; }
  50% { transform: rotate(180deg) scale(1.03); opacity: 1; }
  to { transform: rotate(360deg) scale(1); opacity: 0.7; }
}
@keyframes element-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .element-mask,
  .element-mask img,
  .element-mask svg,
  .element-mask::after,
  .element-card,
  .photo-flow--maha .photo-frame img {
    animation: none !important;
    clip-path: none;
    transform: none;
  }
  .element-card:hover { transform: none; }
}

.mascot-float img {
  object-fit: contain;
  background: var(--cream);
}

/* Canon mature Maha = FULL BODY only (no close-up/portrait framing) */
.maha-teach--face img,
.hero-elegant__photo--maha img[src*="canon-fullbody"],
.hero-elegant__photo--maha img[src*="maha-canon-"] {
  object-fit: contain;
  object-position: center bottom;
}
.mascot-float img[src*="canon-fullbody"],
.mascot-float img[src*="maha-canon-"] {
  object-fit: contain;
  object-position: center bottom;
  aspect-ratio: 1;
  background: var(--cream);
}
.photo-flow--maha .photo-frame img[src*="canon-fullbody"],
.photo-flow--maha .photo-frame img[src*="maha-canon-"],
.photo-flow--maha .photo-frame img[src*="naughty-"],
.photo-flow--maha .photo-frame img[src*="short-seated"] {
  object-fit: contain;
  object-position: center bottom;
}
.maha-teach--short {
  max-width: 240px;
}

/* —— Maha teaching thesis band (Home / Why / Guides) —— */
.teach-thesis .teach-wordplay,
.teach-wordplay {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink, #1a1510);
  border-left: 3px solid var(--gold, #d4af37);
  padding-left: 1rem;
  margin: 1.1rem 0 1.25rem;
  max-width: 38rem;
}
.teach-thesis .maha-teach--aside {
  margin-inline: auto;
}
.teach-thesis__grid {
  align-items: center;
}


/* ==========================================================================
   Site polish — care pathway, soft glow rhythm, mobile nav (Sep 14 2026)
   ========================================================================== */

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

.care-steps {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .care-steps { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
}
@media (min-width: 1000px) {
  .care-steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.care-step {
  position: relative;
  background: var(--paper);
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 8px 28px rgba(17, 17, 17, 0.05),
    0 0 24px rgba(212, 175, 55, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.care-step:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 12px 32px rgba(17, 17, 17, 0.07),
    0 0 36px rgba(212, 175, 55, 0.18);
}
.care-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}
.care-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}
.care-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.care-steps--compact .care-step {
  padding: 1.1rem 1rem 1.15rem;
}
.care-steps--compact .care-step p { font-size: 0.9rem; }

.intake-cta,
.book-hero-cta {
  border-radius: 1.35rem !important;
}

/* Softer soft-cards — reduce harsh edges */
.soft-card {
  border-radius: 1.35rem;
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 10px 32px rgba(17, 17, 17, 0.05),
    0 0 28px rgba(212, 175, 55, 0.1);
}
.soft-card:hover {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.4),
    0 14px 36px rgba(17, 17, 17, 0.07),
    0 0 40px rgba(212, 175, 55, 0.2);
}

.track-pill,
.price-card,
.element-card,
.guide-card,
.eco-card {
  border-radius: 1.15rem;
}

.price-card {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 8px 24px rgba(17, 17, 17, 0.04),
    0 0 20px rgba(212, 175, 55, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.45),
    0 12px 28px rgba(17, 17, 17, 0.06),
    0 0 32px rgba(212, 175, 55, 0.16);
}
.price-card--featured {
  box-shadow:
    0 0 0 1.5px rgba(212, 175, 55, 0.55),
    0 12px 36px rgba(17, 17, 17, 0.06),
    0 0 40px rgba(212, 175, 55, 0.22);
}

/* Spacing rhythm */
.section { padding: clamp(2.75rem, 5.5vw, 4.25rem) 0; }
.section-head { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.btn-row { gap: 0.85rem; }

/* Mobile nav polish */
@media (max-width: 820px) {
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .site-nav {
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    border-radius: 0 0 1rem 1rem;
    padding: 0.85rem var(--space) 1.35rem;
  }
  .site-nav a {
    padding: 0.7em 0.35em;
    border-radius: 0.5rem;
    border-bottom: none;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(212, 175, 55, 0.12);
    border-bottom: none;
  }
  .site-nav .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 999px;
    margin-top: 0.65rem;
    padding: 0.75em 1em;
  }
  .nav-toggle {
    border-radius: 999px;
    padding: 0.5em 0.95em;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
  }
}

/* Buttons slightly softer */
.btn {
  border-radius: 999px;
  border-width: 1.5px;
}
.btn:hover {
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
}
.site-nav .nav-cta { border-radius: 999px; }

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.15em 0.4em;
  border-radius: 0.35rem;
}


/* ==========================================================================
   Site polish Pass 2 — payment UX, reveal, intake gate, mobile (Sep 14 2026)
   ========================================================================== */

.pay-direct {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 1.25rem;
  background: linear-gradient(165deg, var(--paper) 0%, rgba(255, 248, 230, 0.9) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 8px 28px rgba(17, 17, 17, 0.04),
    0 0 28px rgba(212, 175, 55, 0.12);
  padding: 1.5rem 1.5rem 1.35rem;
}
.pay-direct h3 {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.pay-value--soft {
  color: var(--ink-soft);
  font-style: italic;
}
.replace-mark {
  display: none; /* retired harsh placeholder badge */
}

.pay-list li {
  grid-template-columns: minmax(6.5rem, 8.5rem) 1fr;
}
@media (max-width: 520px) {
  .pay-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.7rem 0;
  }
  .pay-list .pay-label { margin-bottom: 0.1rem; }
}

/* Scroll reveal — visible by default; only off-screen nodes get .will-reveal */
[data-reveal] {
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(14px);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal].will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Intake premium gate */
.page-hero--intake {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.14), transparent 70%),
    var(--cream-dark);
}
.intake-gate {
  max-width: 42rem;
  margin: 2.75rem auto 0;
  text-align: center;
  padding: 2rem 1.75rem 1.85rem;
  position: relative;
}
.intake-gate__maha {
  margin: 0 auto 1rem;
  width: 7.5rem;
}
.intake-gate__maha img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.25));
  animation: maha-float 5.5s ease-in-out infinite;
}
.intake-gate h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 0.5rem;
}
.intake-gate__hint {
  margin-top: 1.1rem;
  font-size: 0.88rem;
}

/* Guide cards — clearer rhythm */
.guide-grid {
  gap: 1.35rem;
}
.guide-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.18),
    0 8px 24px rgba(17, 17, 17, 0.04),
    0 0 20px rgba(212, 175, 55, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.42),
    0 12px 30px rgba(17, 17, 17, 0.06),
    0 0 32px rgba(212, 175, 55, 0.16);
}
.guide-card .card-link {
  margin-top: auto;
  padding-top: 0.85rem;
}

/* Mobile care-steps + price cards */
@media (max-width: 719px) {
  .care-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .care-step {
    padding: 1.15rem 1.1rem 1.2rem;
  }
  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .price-card {
    padding: 1.25rem 1.15rem;
  }
  .price-card .price {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }
  .btn-row {
    flex-wrap: wrap;
  }
  .btn-row .btn {
    flex: 1 1 auto;
    text-align: center;
    min-width: min(100%, 11rem);
  }
}

@media (min-width: 520px) and (max-width: 999px) {
  .care-steps:not(.care-steps--compact) {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   Warmth pass — Mexican household kitchen × Ayurvedic ahara (Sep 15 2026)
   ========================================================================== */

body {
  background:
    radial-gradient(ellipse 90% 40% at 50% -10%, rgba(212, 160, 23, 0.07), transparent 55%),
    var(--cream);
}

.soft-card,
.guide-card,
.track-pill,
.care-step,
.price-card:not(.price-card--featured) {
  box-shadow:
    0 0 0 1px rgba(196, 92, 42, 0.08),
    0 10px 28px var(--shadow),
    0 0 24px rgba(212, 160, 23, 0.08);
}

/* Spice-bowl accent on cards */
.card-spice,
.soft-card.card-spice,
.guide-card.card-spice {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--chile), var(--turmeric), var(--terracotta), var(--cumin)) 1;
  background:
    linear-gradient(165deg, var(--paper) 0%, rgba(255, 248, 230, 0.95) 100%);
}

/* —— Warmth band: kitchen hearth —— */
.warmth-band {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 55% 60% at 0% 50%, rgba(196, 92, 42, 0.10), transparent 60%),
    radial-gradient(ellipse 45% 50% at 100% 40%, rgba(212, 160, 23, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  overflow: hidden;
}
.warmth-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(197, 212, 111, 0.06), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(61, 107, 79, 0.05), transparent 35%);
  pointer-events: none;
}
.warmth-band .container { position: relative; z-index: 1; }
.warmth-band__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
@media (min-width: 880px) {
  .warmth-band__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
  .warmth-band__grid--flip {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .warmth-band__grid--flip .warmth-band__copy { order: 2; }
  .warmth-band__grid--flip .warmth-band__visual { order: 1; }
}
.warmth-band__copy .title-flow { max-width: 16ch; }
.warmth-band__copy .lead { max-width: 42ch; }
.warmth-band__maha {
  margin: 0;
  max-width: 16rem;
}
.warmth-band__maha img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(92, 64, 51, 0.22));
}
.warmth-band__maha figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.65rem;
  font-style: italic;
}

/* —— Spice strip —— */
.spice-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  margin: 1rem 0 0.25rem;
}
.spice-strip__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(196, 92, 42, 0.22);
  color: var(--comal);
  box-shadow: 0 4px 12px var(--shadow-warm);
}
.spice-strip__chip--chile { border-color: rgba(192, 57, 43, 0.35); color: var(--chile); }
.spice-strip__chip--turmeric { border-color: rgba(212, 160, 23, 0.45); color: var(--cumin); }
.spice-strip__chip--comal { border-color: rgba(92, 64, 51, 0.3); }
.spice-strip__chip--cilantro { border-color: rgba(61, 107, 79, 0.35); color: var(--cilantro); }
.spice-strip__chip--limon { border-color: rgba(197, 212, 111, 0.5); color: #5a6b2a; }

.spice-strip--band {
  justify-content: center;
  padding: 1.1rem var(--space);
  margin: 0;
  background:
    linear-gradient(90deg,
      rgba(196, 92, 42, 0.08),
      rgba(212, 160, 23, 0.10),
      rgba(61, 107, 79, 0.06),
      rgba(196, 92, 42, 0.08));
  border-block: 1px solid rgba(196, 92, 42, 0.12);
}

/* —— Kitchen mosaic (flowing, not boxy) —— */
.kitchen-mosaic {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
@media (min-width: 640px) {
  .kitchen-mosaic {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    min-height: 280px;
  }
  .kitchen-mosaic__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}
.kitchen-mosaic__item {
  margin: 0;
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow:
    0 8px 24px var(--shadow),
    0 0 0 1px rgba(212, 175, 55, 0.15);
  min-height: 120px;
}
.kitchen-mosaic__item:nth-child(1) {
  border-radius: 1.6rem 1.1rem 1.4rem 1.2rem;
}
.kitchen-mosaic__item:nth-child(2) {
  border-radius: 1.1rem 1.5rem 1rem 1.3rem;
}
.kitchen-mosaic__item:nth-child(3) {
  border-radius: 1.3rem 1rem 1.5rem 1.15rem;
}
.kitchen-mosaic__item:nth-child(4) {
  border-radius: 1rem 1.4rem 1.2rem 1.5rem;
}
.kitchen-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 120px;
  aspect-ratio: 4 / 3;
  transition: transform 0.45s ease;
}
@media (min-width: 640px) {
  .kitchen-mosaic__item:nth-child(1) img { aspect-ratio: auto; min-height: 100%; height: 100%; }
  .kitchen-mosaic__item img { aspect-ratio: auto; min-height: 130px; height: 100%; }
}
.kitchen-mosaic__item:hover img { transform: scale(1.04); }
.kitchen-mosaic__item figcaption,
.kitchen-mosaic__cap {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  right: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fffaf3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  pointer-events: none;
}
.kitchen-mosaic--compact {
  min-height: 0;
}
.kitchen-mosaic--compact .kitchen-mosaic__item { min-height: 100px; }
@media (min-width: 640px) {
  .kitchen-mosaic--compact {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    min-height: 160px;
  }
  .kitchen-mosaic--compact .kitchen-mosaic__item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Compact warmth inset for secondary pages */
.warmth-inset {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.95), rgba(239, 228, 212, 0.85));
  border: 1px solid rgba(196, 92, 42, 0.14);
  box-shadow: 0 10px 28px var(--shadow), 0 0 20px rgba(212, 160, 23, 0.08);
}
@media (min-width: 720px) {
  .warmth-inset {
    grid-template-columns: minmax(0, 1.2fr) minmax(10rem, 0.7fr);
    gap: 1.75rem;
    padding: 1.5rem 1.65rem;
  }
}
.warmth-inset__visual {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 6px 18px var(--shadow);
}
.warmth-inset__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
  display: block;
}
.warmth-inset__copy p { margin-bottom: 0.55em; }
.warmth-inset__copy p:last-child { margin-bottom: 0; }
.warmth-inset--light {
  padding: 0.85rem 1rem;
  margin: 1.25rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .warmth-inset--light {
    grid-template-columns: 5.5rem 1fr;
    align-items: center;
  }
  .warmth-inset--light .warmth-inset__visual img {
    aspect-ratio: 1;
    border-radius: 1rem;
  }
}

.eyebrow--terracotta {
  color: var(--terracotta);
}

/* —— Additive brand banner (mortar cosmos) — does not replace .logo-script —— */
.section--brand-banner {
  padding-block: 1.5rem 0.5rem;
  background: #0a0a0c;
}
.brand-banner {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 18px 40px rgba(0,0,0,0.35);
}
.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.brand-banner__cap {
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.72);
  text-align: center;
  background: #0a0a0c;
}

/* —— Kitchen warmth mosaic + single hearth hero —— */
.section--warmth-hearth {
  background: linear-gradient(180deg, #f7efe3 0%, #faf6ee 100%);
}
.kitchen-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.kitchen-mosaic__item {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #fffdf8;
  box-shadow: 0 0 0 1px rgba(184, 92, 56, 0.12), 0 12px 28px rgba(80, 40, 20, 0.08);
}
.kitchen-mosaic__item--wide {
  grid-row: span 2;
}
.kitchen-mosaic__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}
.kitchen-mosaic__item figcaption,
.hearth-hero figcaption {
  margin: 0;
  padding: 0.55rem 0.85rem 0.75rem;
  font-size: 0.88rem;
  color: #5c5348;
}
.hearth-hero {
  margin: 1.25rem 0 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 16px 36px rgba(80, 40, 20, 0.1);
  background: #fffdf8;
}
.hearth-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 800px) {
  .kitchen-mosaic { grid-template-columns: 1fr; }
  .kitchen-mosaic__item--wide { grid-row: auto; }
}


/* Home hero brand block */
.hero-tag {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0.35rem 0 0.85rem;
  color: var(--ink, #1a1510);
}
.hero-immersive__lead--soft {
  opacity: 0.92;
  font-size: 1.02rem;
}
.hero-immersive__meta-soft {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.92em;
}

.hero-market {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
  letter-spacing: 0.01em;
  color: var(--ink, #1a1510);
}
.hero-immersive__lead--soul {
  font-size: 1.02rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.hero-immersive__lead--care {
  font-size: 0.98rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  max-width: 36rem;
}


/* Locked payment copy */
.pay-howto p { margin: 0 0 0.65rem; }
.pay-howto p:last-child { margin-bottom: 0; }
.pay-contact { margin-top: 1rem; }
.kitchen-voice { margin-top: 0.85rem; max-width: 48rem; color: var(--ink-soft); }
.booking-note { font-weight: 700; margin: -0.75rem 0 2rem; }


/* —— What it costs list —— */
.cost-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 1rem;
  background: var(--paper, #fffdf8);
  overflow: hidden;
}
.cost-list__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid rgba(92, 64, 51, 0.08);
  font-size: 1.05rem;
}
.cost-list__row:last-child { border-bottom: none; }
.cost-list__name { color: var(--ink, #2a1f18); }
.cost-list__price {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink, #2a1f18);
  white-space: nowrap;
}


/* ---- Brand rule: cream to read, lime to buy ---- */

/* Reading pages stay warm */
body {
  background: var(--cream);
  color: var(--ink);
}

/* Labels = terracotta, not lime */
.eyebrow,
.price-label,
.section-kicker {
  color: var(--terracotta);
}

/* Gold script headings stay gold — body titles stay ink */
.page-hero h1,
.hero h1,
h1, h2 {
  color: var(--ink);
}

.title-script {
  color: var(--gold-deep);
}

/* Don’t lime-wash page titles on dark CTA */
.hero-panel h2,
.cta-band h2 {
  color: var(--paper);
}

/* Main text buttons on cream pages: black, not lime */
.btn,
.btn--ghost {
  background: var(--ink);
  color: #fff;
  border: 1.5px solid var(--ink);
  box-shadow: none;
}

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

/* Lime ONLY on featured price cards (buy) */
.btn--lime {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.price-card--featured .btn,
.price-card--featured .btn--lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  box-shadow: none;
}

.price-card--featured .btn:hover,
.price-card--featured .btn--lime:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* Featured card: cream type, lime reserved for the buy button */
.price-card--featured h3,
.price-card--featured .price {
  color: var(--paper);
}

.price-card--featured .price-label {
  color: var(--gold-light);
}

/* Dark bands: paper buttons so cream-page hover rule doesn’t break CTA */
.cta-band .btn,
.cta-band .btn--ghost,
.band-ink .btn,
.band-ink .btn--ghost,
.section--post-vibes .btn,
.section--post-vibes .btn--ghost,
.section--practice .btn,
.section--practice .btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.cta-band .btn:hover,
.cta-band .btn--ghost:hover,
.band-ink .btn:hover,
.band-ink .btn--ghost:hover,
.section--post-vibes .btn:hover,
.section--post-vibes .btn--ghost:hover,
.section--practice .btn:hover,
.section--practice .btn--ghost:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

/* Footer links stay gold, not lime */
.footer-legal a:hover {
  color: var(--gold-deep);
}

/* Neon stays off normal pages */
.body-glow,
.mind-glow,
.soul-glow {
  color: inherit;
}

/* Soften lime accents that were washing reading UI */
.section-head--on-dark .eyebrow { color: var(--gold-light); }
.cta-band .eyebrow { color: var(--gold-light); }


/* Hide decorative motifs / hero ornaments */
.hero-ornaments,
.motif,
.motif-divider {
  display: none !important;
}

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


/* Hide spice / kitchen chip rows */
.spice-chips,
.chip-row,
.kitchen-chips,
.tag-pills,
.spice-strip,
.spice-strip__chip {
  display: none !important;
}


/* Hero panels — 16:9 crop */
.hero-panel,
.hero-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* Dark top bar so the gold logo pops */
.site-header {
  background: #111111;
  border-bottom: 1px solid #d4af37;
}



/* If the logo file is gold-on-cream, knock the cream back */
.site-header .logo-script {
  background: transparent;
  mix-blend-mode: screen;
}

/* Menu on the black bar */
.nav-toggle {
  background: transparent;
  color: #f7f1e6;
  border: 1.5px solid #d4af37;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: #d4af37;
  color: #111111;
}

/* Open mobile menu should stay readable */
.site-nav.is-open,
.site-nav {
  background: #111111;
}

.site-nav a {
  color: #f7f1e6;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: #d4af37;
}

/* Book CTA on dark bar */
.site-header .nav-cta {
  color: #111111;
  background: #d4af37;
  border-color: #d4af37;
}

.site-header .nav-cta:hover {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
}


/* Logo — no cream plate / no glow */
.logo,
.logo-script,
.site-header .logo,
.site-footer .logo,
.hero-logo {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.logo-script {
  height: 42px;
  width: auto;
  display: block;
}


/* Kill logo cream plate wrappers */
.hero-logo,
.hero-logo img,
.hero-script-logo,
.cta-script-logo,
.section-script-logo,
.logo-script {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}


/* Hide homepage hero script logo */
.hero-script-logo {
  display: none !important;
}


/* Hide section / CTA script logos */
.section-script-logo,
.cta-script-logo {
  display: none !important;
}
