/* Animah Institute — SITE.md + DESIGN.md v2 (shared site stylesheet) */

:root {
  --paper: #efe7d2;
  --paper-warm: #ece4cf;
  --paper-dark: #ddd2b6;
  --bone: #f7f1de;
  --ink: #15140f;
  --ink-soft: #2a2620;
  --ink-mute: #5a5448;
  --ink-faint: #8b8676;
  --coral: #ed6f5c;
  --coral-soft: #f08e7c;
  --mustard: #e9b94a;
  --olive: #6e7448;
  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius-card: 16px;
  --radius-pill: 999px;
  --container: min(1120px, 100% - 32px);
  --header-h: 76px;
  --header-wave-h: 32px;
  --ease-playful: cubic-bezier(0.34, 1.45, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: var(--olive);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--coral);
  color: var(--bone);
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
}

/* ——— Header (cream + centered lockup + nav row + organic wave) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
  color: var(--ink);
  box-shadow: none;
}

.site-header__brand-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  padding: 8px 0 4px;
  gap: 4px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo--lockup {
  grid-column: 2;
  justify-self: center;
  gap: clamp(10px, 2vw, 16px);
}

.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
}

.logo__mark {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(237, 111, 92, 0.25));
}

.site-header__nav-row {
  padding-bottom: 4px;
}

.site-header__nav-row .container {
  display: flex;
  justify-content: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.site-nav a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(21, 20, 15, 0.05);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(237, 111, 92, 0.12);
}

.nav-toggle {
  grid-column: 1;
  justify-self: start;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(21, 20, 15, 0.12);
  border-radius: var(--radius-pill);
  background: var(--bone);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.35s var(--ease-playful),
    box-shadow 0.25s ease,
    background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--coral {
  background: var(--coral);
  color: var(--bone);
  box-shadow: 0 4px 16px rgba(237, 111, 92, 0.28);
}

.btn--coral:hover {
  background: var(--coral-soft);
  transform: translateY(-3px) rotate(-0.8deg);
  box-shadow: 0 8px 24px rgba(237, 111, 92, 0.25);
}

.hero__actions .btn--coral:hover {
  animation: btnCoralShimmer 2.8s ease-in-out infinite;
}

.btn--ghost {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}

.btn--ghost:hover {
  background: rgba(237, 111, 92, 0.06);
  transform: translateY(-2px) rotate(0.6deg);
}

.btn--light {
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(21, 20, 15, 0.12);
}

.btn--light:hover {
  background: var(--paper);
  transform: translateY(-3px) rotate(-0.8deg);
  box-shadow: 0 8px 24px rgba(21, 20, 15, 0.14);
}

.btn--ink {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 4px 18px rgba(21, 20, 15, 0.2);
}

.btn--ink:hover {
  background: var(--ink-soft);
  transform: translateY(-3px) rotate(-0.8deg);
  box-shadow: 0 8px 26px rgba(21, 20, 15, 0.22);
}

.btn--block {
  width: 100%;
}

.site-header__wave {
  display: block;
  width: 100%;
  height: var(--header-wave-h);
  color: var(--paper);
  margin-top: -14px;
  margin-bottom: -1px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 821px) {
  .site-header__brand-row {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 0 2px;
  }

  .nav-toggle {
    display: none;
  }

  .logo--lockup {
    grid-column: 2;
    justify-self: center;
  }

  .site-header__cart {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__nav-row .container {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 12px 0 8px;
    border-top: 1px solid rgba(21, 20, 15, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
    font-size: 1rem;
    text-align: center;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__visual {
  position: relative;
  min-height: min(62vh, 520px);
  background: var(--paper-warm);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--paper-warm);
}

.hero__visual--no-hero-motion .hero__video {
  display: none;
}

.hero__visual--no-hero-motion .hero__media {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(237, 111, 92, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(110, 116, 72, 0.12), transparent 50%),
    linear-gradient(145deg, var(--paper-warm) 0%, var(--paper-dark) 45%, var(--paper) 100%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__ambient {
  position: absolute;
  inset: -8%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(237, 111, 92, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 70%, rgba(233, 185, 74, 0.18), transparent 50%),
    linear-gradient(105deg, rgba(110, 116, 72, 0.12) 0%, transparent 45%, rgba(237, 111, 92, 0.1) 100%);
  mix-blend-mode: multiply;
  opacity: 0.85;
  animation: heroAmbientShift 22s ease-in-out infinite alternate;
}

@keyframes heroAmbientShift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.78;
  }
  100% {
    transform: translate(1.2%, -1%) scale(1.015);
    opacity: 0.9;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(239, 231, 210, 0.12) 0%,
    rgba(239, 231, 210, 0.35) 55%,
    rgba(239, 231, 210, 0.72) 100%
  );
}

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

.hero__content {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

.hero__card {
  position: relative;
  z-index: 2;
  background: var(--bone);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 24px 80px rgba(21, 20, 15, 0.08);
  border: 1px solid rgba(21, 20, 15, 0.06);
  max-width: 640px;
  animation: heroCardRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 16px;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.audio-player {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.audio-player__shell {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: rgba(21, 20, 15, 0.06);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.audio-player__shell audio {
  width: 100%;
  min-width: 0;
  height: 40px;
}

.audio-player__hint {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ——— Feature cards ——— */
.section {
  padding: clamp(48px, 8vw, 88px) 0;
}

.section--warm {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 8px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
  margin: 0 0 12px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 0 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 20px 18px;
  border-radius: 32px 32px var(--radius-card) var(--radius-card);
  text-decoration: none;
  overflow: hidden;
  transform-origin: 50% 100%;
  transition: transform 0.4s var(--ease-playful), box-shadow 0.35s ease;
  border: 1px solid rgba(21, 20, 15, 0.06);
}

.feature-grid[data-stagger-cards] .feature-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.feature-grid[data-stagger-cards].is-inview .feature-card {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid[data-stagger-cards].is-inview .feature-card:nth-child(1) {
  transition-delay: 0.06s;
}

.feature-grid[data-stagger-cards].is-inview .feature-card:nth-child(2) {
  transition-delay: 0.14s;
}

.feature-grid[data-stagger-cards].is-inview .feature-card:nth-child(3) {
  transition-delay: 0.22s;
}

.feature-grid[data-stagger-cards].is-inview .feature-card:nth-child(4) {
  transition-delay: 0.3s;
}

.feature-grid[data-stagger-cards].is-inview .feature-card:hover {
  transform: translateY(-8px) rotate(-2.2deg);
  box-shadow: 0 24px 64px rgba(21, 20, 15, 0.14);
}

.feature-grid[data-stagger-cards]:not(.is-inview) .feature-card:hover {
  transform: translateY(32px);
  box-shadow: none;
}

.feature-grid[data-stagger-cards].is-inview .feature-card:hover .feature-card__art {
  opacity: 0.9;
  transform: scale(1.04);
}

.feature-card__art {
  position: absolute;
  right: -26%;
  bottom: -18%;
  width: 104%;
  height: 108%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: 75% 85%;
}

.feature-card__art-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 65% 55%;
  animation: cardArtDrift 16s ease-in-out infinite;
}

.feature-card__art-svg--1 {
  animation-duration: 17s;
}

.feature-card__art-svg--2 {
  animation-duration: 19s;
  animation-delay: -4s;
}

.feature-card__art-svg--3 {
  animation-duration: 15s;
  animation-delay: -2s;
}

.feature-card__art-svg--4 {
  animation-duration: 18s;
  animation-delay: -6s;
}

@keyframes cardArtDrift {
  0%,
  100% {
    transform: rotate(-3deg) translate(0, 0);
  }
  50% {
    transform: rotate(4deg) translate(-6px, -10px);
  }
}

.feature-card__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin: 0 0 auto;
  position: relative;
  z-index: 1;
  max-width: 54%;
}

.feature-card__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  margin: 16px 0 0;
  position: relative;
  z-index: 1;
  opacity: 0.92;
}

.feature-card--coral {
  background: var(--coral);
  color: var(--bone);
}

.feature-card--mustard {
  background: var(--mustard);
  color: var(--ink);
}

.feature-card--olive {
  background: var(--olive);
  color: var(--bone);
}

.feature-card--ink {
  background: var(--ink);
  color: var(--paper);
}

/* ——— Product page: suggested files (compact cards, smaller art) ——— */
.product-suggested-section {
  padding-top: 0;
}

.product-suggested-section .section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 20px;
}

.product-suggested-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-suggested-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.product-suggested-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 14px 14px 12px;
  border-radius: 24px 24px var(--radius-card) var(--radius-card);
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 15, 0.06);
  transition: transform 0.3s var(--ease-playful), box-shadow 0.3s ease;
}

.product-suggested-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(21, 20, 15, 0.12);
}

.product-suggested-card__art {
  position: absolute;
  right: -18%;
  bottom: -14%;
  width: 72%;
  height: 76%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
  transition: opacity 0.3s ease, transform 0.35s ease;
  transform-origin: 75% 85%;
}

.product-suggested-card:hover .product-suggested-card__art {
  opacity: 0.85;
  transform: scale(1.03);
}

.product-suggested-card__art-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 65% 55%;
  animation: cardArtDrift 18s ease-in-out infinite;
}

.product-suggested-card__art-svg--2 {
  animation-delay: -3s;
}

.product-suggested-card__art-svg--3 {
  animation-delay: -1.5s;
}

.product-suggested-card__art-svg--4 {
  animation-delay: -5s;
}

.product-suggested-card__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 58%;
  line-height: 1.25;
}

.product-suggested-card__price {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 0 0;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

.product-suggested-card__desc {
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 10px 0 0;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  max-width: 62%;
}

.product-suggested-card--coral {
  background: var(--coral);
  color: var(--bone);
}

.product-suggested-card--mustard {
  background: var(--mustard);
  color: var(--ink);
}

.product-suggested-card--olive {
  background: var(--olive);
  color: var(--bone);
}

.product-suggested-card--ink {
  background: var(--ink);
  color: var(--paper);
}

/* ——— Content sections ——— */
.prose-block {
  max-width: 38rem;
}

.prose-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  margin: 0 0 16px;
}

.prose-block p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.split-section {
  display: grid;
  gap: 40px;
}

@media (min-width: 800px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 56px;
  }
}

/* ——— Newsletter ——— */
.newsletter {
  background: var(--paper-dark);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 40px);
  border: 1px solid rgba(21, 20, 15, 0.06);
  transition: transform 0.45s var(--ease-playful), box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .newsletter:hover {
    transform: translateY(-4px) rotate(-0.75deg);
    box-shadow: 0 20px 56px rgba(21, 20, 15, 0.12);
  }
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 480px) {
  .newsletter form {
    flex-direction: row;
    align-items: stretch;
  }
}

.newsletter input[type="email"] {
  flex: 1;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(21, 20, 15, 0.12);
  background: var(--bone);
  font-family: inherit;
  font-size: 1rem;
}

.newsletter input::placeholder {
  color: var(--ink-faint);
}

.form-note {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-top: 12px;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 222, 0.88);
  padding: 48px 0 28px;
  font-size: 0.875rem;
}

.site-footer a {
  color: rgba(247, 241, 222, 0.92);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--coral-soft);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
}

.disclaimer {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(247, 241, 222, 0.45);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 241, 222, 0.1);
}

/* ——— Interior + product pages ——— */
.interior-intro {
  padding-bottom: clamp(32px, 6vw, 56px);
}

.interior-intro .section-intro {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.page-back {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--olive);
  text-decoration: none;
  margin-bottom: 20px;
}

.page-back:hover {
  color: var(--ink);
}

.product-hero {
  padding: clamp(36px, 7vw, 72px) 0 clamp(40px, 6vw, 64px);
  border-radius: 0 0 28px 28px;
  margin-bottom: clamp(8px, 2vw, 16px);
}

.product-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.1;
  margin: 0 0 12px;
}

.product-hero__tagline {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.45;
  margin: 0 0 10px;
  font-weight: 500;
}

.product-hero__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.product-hero__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 22px;
  opacity: 0.88;
}

.product-hero .page-back {
  color: inherit;
  opacity: 0.88;
  margin-bottom: 16px;
}

.product-hero .page-back:hover {
  opacity: 1;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-hero__note {
  font-size: 0.8125rem;
  margin: 16px 0 0;
  opacity: 0.85;
  line-height: 1.5;
}

.product-hero--coral {
  background: var(--coral);
  color: var(--bone);
}

.product-hero--coral .section-label {
  color: rgba(247, 241, 222, 0.7);
}

.product-hero--coral .btn--ghost {
  border-color: rgba(247, 241, 222, 0.85);
  color: var(--bone);
}

.product-hero--coral .btn--ghost:hover {
  background: rgba(247, 241, 222, 0.12);
}

.product-hero--mustard {
  background: var(--mustard);
  color: var(--ink);
}

.product-hero--mustard .section-label {
  color: rgba(21, 20, 15, 0.55);
}

.product-hero--mustard .btn--ghost {
  border-color: rgba(21, 20, 15, 0.45);
  color: var(--ink);
}

.product-hero--mustard .btn--ghost:hover {
  background: rgba(21, 20, 15, 0.08);
}

.product-hero--olive {
  background: var(--olive);
  color: var(--bone);
}

.product-hero--olive .section-label {
  color: rgba(247, 241, 222, 0.7);
}

.product-hero--olive .btn--ghost {
  border-color: rgba(247, 241, 222, 0.85);
  color: var(--bone);
}

.product-hero--olive .btn--ghost:hover {
  background: rgba(247, 241, 222, 0.12);
}

.product-hero--ink {
  background: var(--ink);
  color: var(--paper);
}

.product-hero--ink .section-label {
  color: rgba(239, 231, 210, 0.55);
}

.product-hero--ink .btn--ghost {
  border-color: rgba(239, 231, 210, 0.55);
  color: var(--paper);
}

.product-hero--ink .btn--ghost:hover {
  background: rgba(239, 231, 210, 0.1);
}

.prose-flow {
  max-width: 40rem;
}

.prose-flow--legal {
  max-width: 42rem;
}

.prose-flow--legal .legal-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
}

.legal-fda-notice {
  font-weight: 600;
  color: var(--ink);
  padding: 1rem 1.125rem;
  margin: 1.25rem 0 1.5rem;
  background: var(--paper-warm);
  border-radius: 12px;
  border: 1px solid rgba(21, 20, 15, 0.08);
}

.legal-fda-notice p {
  margin: 0;
  color: var(--ink-soft);
}

.prose-flow h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  margin: clamp(36px, 5vw, 52px) 0 14px;
  color: var(--ink);
}

.prose-flow h2:first-child {
  margin-top: clamp(28px, 4vw, 40px);
}

.prose-flow p,
.prose-flow li {
  color: var(--ink-soft);
  margin: 0 0 0.95rem;
}

.prose-flow ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.phase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.phase-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.65rem;
}

.phase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.75;
}

.use-protocol {
  background: linear-gradient(135deg, var(--bone) 0%, var(--paper-warm) 100%);
  border: 1px solid rgba(21, 20, 15, 0.08);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 28px);
  margin: clamp(28px, 4vw, 40px) 0;
}

.use-protocol__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 10px;
}

.use-protocol p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.checkout-hint {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin-top: 12px;
}

.section--tight-top {
  padding-top: clamp(24px, 4vw, 40px);
}

/* ——— How it works / long-form interior ——— */
.prose-flow h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  font-style: normal;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}

.prose-flow .do-dont {
  display: grid;
  gap: 20px;
  margin: 1.25rem 0 0;
}

@media (min-width: 700px) {
  .prose-flow .do-dont {
    grid-template-columns: 1fr 1fr;
  }
}

.do-dont__box {
  padding: 20px 20px 18px;
  border-radius: 16px;
  background: var(--bone);
  border: 1px solid rgba(21, 20, 15, 0.08);
}

.do-dont__box h3 {
  margin: 0 0 10px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink-mute);
}

.method-phase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 20, 15, 0.08);
  max-width: 40rem;
}

.method-phase:last-of-type {
  border-bottom: none;
}

.method-phase__n {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  padding-top: 3px;
}

.method-phase p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.method-phase__title {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  font-size: 1rem;
}

.method-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 800px) {
  .method-split {
    grid-template-columns: 1fr min(42%, 380px);
    gap: 48px;
  }

  .method-split--reverse {
    grid-template-columns: min(42%, 380px) 1fr;
  }

  .method-split--reverse .method-figure {
    order: -1;
  }
}

.method-figure {
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  background: var(--bone);
  border: 1px solid rgba(21, 20, 15, 0.08);
  border-radius: 20px;
}

.method-figure--wide {
  max-width: none;
  margin: clamp(24px, 4vw, 36px) 0;
}

.method-figure--photo {
  padding: 0;
  overflow: hidden;
}

.method-figure--photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.method-figure figcaption {
  margin-top: 12px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-mute);
  text-align: center;
}

.method-figure--photo figcaption {
  padding: 14px 18px 16px;
  text-align: left;
}

.method-diagram {
  display: block;
  width: 100%;
  height: auto;
}

.method-timeline {
  margin: clamp(24px, 4vw, 36px) 0;
  padding: clamp(20px, 3vw, 28px);
  background: var(--bone);
  border: 1px solid rgba(21, 20, 15, 0.08);
  border-radius: 20px;
}

.method-timeline__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  margin: 0 0 20px;
}

.method-timeline__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  position: relative;
}

.method-timeline__track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--mustard) 50%, var(--olive) 100%);
  opacity: 0.35;
  z-index: 0;
}

@media (max-width: 699px) {
  .method-timeline__track {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .method-timeline__track::before {
    display: none;
  }
}

.method-timeline__node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.method-timeline__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-warm);
  border: 2px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--coral);
}

.method-timeline__node:nth-child(3) .method-timeline__dot,
.method-timeline__node:nth-child(4) .method-timeline__dot {
  border-color: var(--mustard);
  color: var(--mustard);
}

.method-timeline__node:nth-child(5) .method-timeline__dot,
.method-timeline__node:nth-child(6) .method-timeline__dot {
  border-color: var(--olive);
  color: var(--olive);
}

.method-timeline__name {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  max-width: 7rem;
}

.contact-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 48px;
  }
}

.contact-card {
  background: var(--bone);
  border: 1px solid rgba(21, 20, 15, 0.08);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 32px);
}

.contact-card a {
  font-weight: 500;
}

/* ——— Cart ——— */
.site-header__cart {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--radius-pill);
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header__cart:hover {
  background: rgba(21, 20, 15, 0.06);
  color: var(--ink);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--coral);
  color: var(--bone);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.cart-badge[hidden] {
  display: none !important;
}

.cart-page__lead {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cart-empty {
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  background: var(--bone);
  border-radius: 20px;
  border: 1px solid rgba(21, 20, 15, 0.08);
}

.cart-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.cart-table th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ink-mute);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(21, 20, 15, 0.1);
}

.cart-table td {
  padding: 16px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(21, 20, 15, 0.06);
  color: var(--ink-soft);
}

.cart-line__title {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
}

.cart-line__meta {
  font-size: 0.8125rem;
  margin-top: 4px;
  color: var(--ink-mute);
}

.cart-line__qty input {
  width: 4rem;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(21, 20, 15, 0.12);
  background: var(--bone);
  font: inherit;
}

.cart-line__total {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
}

.cart-line__remove {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 12px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--olive);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-line__remove:hover {
  color: var(--coral);
}

.cart-checkout-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.cart-subtotal {
  margin: 0;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

.cart-checkout-hint {
  margin-top: 16px;
  max-width: 36rem;
}

.cart-code {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: rgba(21, 20, 15, 0.06);
  padding: 2px 8px;
  border-radius: 6px;
}

/* ——— Scroll reveals & motion ——— */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-up"].is-inview {
  opacity: 1;
  transform: none;
}

@keyframes btnCoralShimmer {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(237, 111, 92, 0.28);
  }
  50% {
    box-shadow:
      0 6px 24px rgba(237, 111, 92, 0.38),
      0 0 0 1px rgba(247, 241, 222, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card__art-svg,
  .hero__card,
  .hero__actions .btn--coral:hover {
    animation: none !important;
  }

  .hero__ambient {
    animation: none !important;
    transform: none;
    opacity: 0.65;
  }

  .btn--coral:hover,
  .btn--ghost:hover {
    transform: translateY(-2px);
  }

  .newsletter:hover {
    transform: none;
    box-shadow: none;
  }

  .hero__card {
    opacity: 1;
    transform: none;
  }

  [data-animate="fade-up"] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .feature-grid[data-stagger-cards] .feature-card {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .feature-grid[data-stagger-cards].is-inview .feature-card:hover {
    transform: translateY(-4px);
  }
}
