/* Pages, event conversion CTAs, checkout premium */

/* ── Static pages (menu pages) ─────────────────────── */

.page-hero__content {
  max-width: 52rem;
}

.section__lead--hero {
  text-align: left;
  margin: 1rem 0 0;
  max-width: 40rem;
}

.page-shell {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.page-shell__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
  grid-template-areas: "main aside";
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.page-shell__main {
  grid-area: main;
  min-width: 0;
  background: var(--zen-white);
  border-radius: 1.25rem;
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  overflow-x: clip;
}

.page-shell__aside {
  grid-area: aside;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  align-self: start;
}

.page-shell--team {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.page-shell__grid--full {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "main";
}

.page-shell__main--team {
  max-width: 72rem;
  margin-inline: auto;
}

.team-page-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--zen-primary);
}

.team-page-intro h4 {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-muted);
  line-height: 1.5;
}

.team-page-intro p {
  margin: 0 0 1rem;
}

.team-page-intro p:last-child {
  margin-bottom: 0;
}

.team-page__footer {
  padding-top: 0;
}

.team-page__footer-inner {
  max-width: var(--max-width);
}

.wp-team-card__excerpt p {
  margin: 0 0 0.85rem;
}

.wp-team-card__excerpt p:last-child {
  margin-bottom: 0;
}

.page-aside-card {
  background: linear-gradient(165deg, var(--zen-white) 0%, var(--zen-accent-soft) 100%);
  border-radius: 1.15rem;
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--zen-accent) 40%, transparent);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.45s var(--zen-ease-out),
    box-shadow 0.45s var(--zen-ease-out),
    border-color 0.45s var(--zen-ease-out);
}

.page-aside-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--zen-accent) 65%, transparent);
}

.page-aside-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--zen-primary);
  margin: 0 0 0.65rem;
}

.page-aside-card p {
  font-size: 0.9375rem;
  color: var(--zen-text);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.page-aside-card .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.page-aside-card .btn:last-child {
  margin-bottom: 0;
}

.page-aside-card--muted {
  background: var(--zen-background);
  border-color: color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.page-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--zen-text);
}

.page-aside-list li {
  padding: 0.35rem 0;
}

.page-cta-band {
  background: linear-gradient(135deg, var(--zen-primary-dark) 0%, var(--zen-primary) 55%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem);
}

.page-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.page-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--zen-white);
  margin: 0 0 0.5rem;
}

.page-cta-band p {
  margin: 0;
  color: var(--zen-on-dark-soft);
  max-width: 36rem;
}

/* ── Imported WordPress page layout ───────────────── */

.page-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 100%;
}

.legal-notices-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.legal-notices {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, color-mix(in srgb, var(--zen-accent) 28%, transparent), transparent 58%),
    radial-gradient(ellipse 70% 55% at 95% 100%, color-mix(in srgb, var(--zen-tertiary) 22%, transparent), transparent 55%),
    linear-gradient(155deg, var(--zen-primary-dark) 0%, var(--zen-primary) 48%, var(--zen-primary-light) 100%);
  box-shadow:
    0 22px 56px rgba(var(--zen-shadow-rgb), 0.22),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 14%, transparent);
}

.legal-notices::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    color-mix(in srgb, var(--zen-glow) 8%, transparent) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.legal-notices__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
}

.legal-notices__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-tertiary) 88%, var(--zen-white));
}

.legal-notices__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--zen-white);
}

.legal-notices__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.legal-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border-radius: 1.1rem;
  border: 1px solid color-mix(in srgb, var(--zen-white) 18%, transparent);
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-notice:hover {
  transform: translateY(-3px);
}

.legal-notice--medical {
  background: color-mix(in srgb, var(--zen-white) 94%, var(--zen-accent-soft));
  box-shadow:
    0 14px 34px rgba(var(--zen-shadow-rgb), 0.16),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 80%, transparent);
}

.legal-notice--medical:hover {
  box-shadow:
    0 18px 40px rgba(var(--zen-shadow-rgb), 0.2),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 80%, transparent);
}

.legal-notice--regulated {
  background: color-mix(in srgb, var(--zen-secondary) 72%, var(--zen-primary-dark));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 10%, transparent);
}

.legal-notice--regulated:hover {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 10%, transparent);
}

.legal-notice__icon {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  flex-shrink: 0;
}

.legal-notice__icon svg {
  width: 2.35rem;
  height: 2.35rem;
}

.legal-notice__icon--medical {
  color: var(--zen-primary);
  background: linear-gradient(145deg, var(--zen-accent-soft) 0%, color-mix(in srgb, var(--zen-accent) 45%, var(--zen-white)) 100%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--zen-primary) 14%, transparent);
}

.legal-notice__icon--regulated {
  color: var(--zen-tertiary);
  background: linear-gradient(145deg, color-mix(in srgb, var(--zen-primary) 55%, var(--zen-secondary)) 0%, var(--zen-primary-dark) 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.legal-notice__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.legal-notice--medical .legal-notice__badge {
  background: color-mix(in srgb, var(--zen-primary) 10%, var(--zen-white));
  color: var(--zen-primary);
  border: 1px solid color-mix(in srgb, var(--zen-primary) 22%, var(--zen-border));
}

.legal-notice--regulated .legal-notice__badge {
  background: color-mix(in srgb, var(--zen-tertiary) 18%, transparent);
  color: var(--zen-tertiary);
  border: 1px solid color-mix(in srgb, var(--zen-tertiary) 35%, transparent);
}

.legal-notice__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 400;
  line-height: 1.3;
}

.legal-notice--medical .legal-notice__title {
  color: var(--zen-primary-dark);
}

.legal-notice--regulated .legal-notice__title {
  color: var(--zen-white);
}

.legal-notice__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
}

.legal-notice--medical .legal-notice__body {
  color: var(--zen-text);
}

.legal-notice--regulated .legal-notice__body {
  color: color-mix(in srgb, var(--zen-on-dark-soft) 92%, var(--zen-tertiary));
}

@media (max-width: 768px) {
  .legal-notices__grid {
    grid-template-columns: 1fr;
  }

  .legal-notice {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .legal-notice__icon {
    width: 2.85rem;
    height: 2.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-notice {
    transition: none;
  }

  .legal-notice:hover {
    transform: none;
  }
}

.page-blocks [role="presentation"] {
  display: none;
}

/* Legacy WP wrappers — transparent inside styled content sections */
.page-blocks > div,
.page-blocks > div > section:not(.wp-content-section),
.page-blocks .wp-content-section > div,
.page-blocks .wp-content-section > section,
.page-blocks .wp-content-section section > div,
.page-blocks .e-con-inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  float: none;
  width: auto;
}

.page-blocks [style*="color: #fff"],
.page-blocks [style*="color:#fff"],
.page-blocks [style*="color: #ffffff"],
.page-blocks [style*="color:#ffffff"],
.page-blocks [style*="color: #FFF"] {
  color: var(--zen-text) !important;
}

.page-blocks h2.is-duplicate-hero {
  display: none;
}

.page-blocks .wp-content-section.is-duplicate-intro {
  display: none;
}

.page-blocks .wp-content-section.is-duplicate-hero {
  display: none;
}

/* Content sections (one per major h2, built in zen.js) */
.page-blocks .wp-content-section {
  display: flow-root;
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: color-mix(in srgb, var(--zen-background) 55%, var(--zen-white));
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
  box-shadow: var(--shadow-sm);
}

.page-blocks > .wp-content-section + .wp-content-section {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-blocks .wp-content-section--lead,
.page-blocks .wp-block--lead {
  background: linear-gradient(165deg, var(--zen-white) 0%, var(--zen-accent-soft) 100%);
  border-color: color-mix(in srgb, var(--zen-accent) 38%, transparent);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.page-blocks .wp-content-section--lead p,
.page-blocks .wp-block--lead p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.page-blocks .wp-content-section--lead p strong:only-child,
.page-blocks .wp-block--lead p strong:only-child {
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--zen-accent-deep);
  margin-bottom: 1rem;
}

.page-blocks .wp-content-section h2:first-child,
.page-blocks .wp-content-section .wp-block h2:first-child {
  margin-top: 0;
}

.page-blocks .wp-block--accordion {
  background: var(--zen-white);
}

/* Side-by-side image pairs */
.page-blocks .wp-block--gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}

.page-blocks .wp-content-section.wp-block--gallery > div {
  display: contents;
}

.page-blocks .wp-block--gallery img {
  width: 100%;
  margin: 0;
}

/* Team layout (built in zen.js on our-team pages) */
.wp-team-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
}

.wp-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 720px) {
  .wp-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .wp-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wp-team-card {
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
  border-radius: 1rem;
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--zen-ease-out),
    box-shadow 0.35s var(--zen-ease-out);
}

.wp-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.wp-team-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.wp-team-card__photo-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wp-team-card__photo-frame {
  --team-photo-tilt: 0deg;
  --team-photo-scale: 1;
  --team-photo-lift: 0px;
  --team-photo-shadow: 0 16px 34px color-mix(in srgb, var(--zen-primary) 12%, transparent);

  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  transform: rotate(var(--team-photo-tilt)) scale(var(--team-photo-scale)) translateY(var(--team-photo-lift));
  box-shadow: var(--team-photo-shadow);
  transition:
    transform 0.55s var(--zen-ease-out),
    filter 0.45s ease,
    box-shadow 0.45s ease;
}

.wp-team-card__photo-frame::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -1;
  background: radial-gradient(
    ellipse 90% 78% at 44% 40%,
    color-mix(in srgb, var(--zen-accent) 42%, transparent),
    color-mix(in srgb, var(--zen-glow) 22%, transparent) 54%,
    transparent 74%
  );
  filter: blur(18px);
  opacity: 0.7;
  transition:
    opacity 0.45s ease,
    transform 0.55s var(--zen-ease-out),
    filter 0.45s ease;
}

.wp-team-card__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 30%,
    color-mix(in srgb, var(--zen-white) 52%, transparent) 46%,
    color-mix(in srgb, var(--zen-glow) 34%, transparent) 50%,
    transparent 66%
  );
  transform: translateX(-135%);
  opacity: 0;
  transition:
    transform 0.9s var(--zen-ease-out),
    opacity 0.35s ease;
}

.wp-team-card__photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  transform: scale(1.03);
  transition:
    transform 0.6s var(--zen-ease-out),
    filter 0.45s ease;
}

.page-blocks--team .wp-team-card:not(.wp-team-card--featured) .wp-team-card__link {
  padding: 1.35rem 1.35rem 0;
}

.page-blocks--team .wp-team-card--featured .wp-team-card__photo-wrap {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  padding-right: 0;
  align-self: start;
}

/* Round portrait silhouettes only — ellipses & soft blobs, no polygons */
.page-blocks--team .wp-team-card__photo-frame--featured {
  --team-photo-tilt: -1.25deg;
  --team-photo-shadow:
    0 22px 48px color-mix(in srgb, var(--zen-primary) 16%, transparent),
    0 8px 20px color-mix(in srgb, var(--zen-accent) 12%, transparent);

  border-radius: 56% 44% 62% 38% / 42% 58% 48% 52%;
  clip-path: ellipse(97% 95% at 48% 46%);
}

.page-blocks--team .wp-team-grid .wp-team-card:nth-child(6n + 1) .wp-team-card__photo-frame {
  --team-photo-tilt: -2.25deg;
  border-radius: 58% 42% 54% 46% / 52% 48% 50% 50%;
  clip-path: ellipse(94% 92% at 46% 44%);
}

.page-blocks--team .wp-team-grid .wp-team-card:nth-child(6n + 2) .wp-team-card__photo-frame {
  --team-photo-tilt: 1.75deg;
  border-radius: 62% 38% 58% 42% / 48% 52% 54% 46%;
  clip-path: ellipse(92% 96% at 52% 48%);
}

.page-blocks--team .wp-team-grid .wp-team-card:nth-child(6n + 3) .wp-team-card__photo-frame {
  --team-photo-tilt: -1.5deg;
  border-radius: 48% 52% 60% 40% / 56% 44% 52% 48%;
  clip-path: ellipse(96% 90% at 44% 50%);
}

.page-blocks--team .wp-team-grid .wp-team-card:nth-child(6n + 4) .wp-team-card__photo-frame {
  --team-photo-tilt: 2deg;
  border-radius: 52% 48% 58% 42% / 44% 56% 44% 56%;
  clip-path: inset(0 round clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.25rem) clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3.25rem));
}

.page-blocks--team .wp-team-grid .wp-team-card:nth-child(6n + 5) .wp-team-card__photo-frame {
  --team-photo-tilt: -1deg;
  border-radius: 55% 45% 52% 48% / 50% 50% 58% 42%;
  clip-path: ellipse(98% 88% at 50% 42%);
}

.page-blocks--team .wp-team-grid .wp-team-card:nth-child(6n + 6) .wp-team-card__photo-frame {
  --team-photo-tilt: 1.35deg;
  border-radius: 64% 36% 56% 44% / 46% 54% 50% 50%;
  clip-path: ellipse(90% 94% at 54% 46%);
}

.page-blocks--team .wp-team-card__photo-frame:hover,
.page-blocks--team .wp-team-card__photo-wrap:hover .wp-team-card__photo-frame,
.page-blocks--team .wp-team-card__photo-wrap:focus-visible .wp-team-card__photo-frame {
  --team-photo-tilt: 0deg;
  --team-photo-scale: 1.07;
  --team-photo-lift: -12px;
  --team-photo-shadow:
    0 30px 56px color-mix(in srgb, var(--zen-primary) 24%, transparent),
    0 14px 30px color-mix(in srgb, var(--zen-accent) 20%, transparent);
  filter: saturate(1.14) brightness(1.05);
}

.page-blocks--team .wp-team-card__photo-frame--featured:hover,
.page-blocks--team .wp-team-card__photo-wrap:hover .wp-team-card__photo-frame--featured,
.page-blocks--team .wp-team-card__photo-wrap:focus-visible .wp-team-card__photo-frame--featured {
  --team-photo-scale: 1.05;
  --team-photo-lift: -14px;
}

.page-blocks--team .wp-team-card__photo-frame:hover::before,
.page-blocks--team .wp-team-card__photo-wrap:hover .wp-team-card__photo-frame::before,
.page-blocks--team .wp-team-card__photo-wrap:focus-visible .wp-team-card__photo-frame::before {
  opacity: 1;
  transform: scale(1.14);
  filter: blur(24px);
}

.page-blocks--team .wp-team-card__photo-frame:hover::after,
.page-blocks--team .wp-team-card__photo-wrap:hover .wp-team-card__photo-frame::after,
.page-blocks--team .wp-team-card__photo-wrap:focus-visible .wp-team-card__photo-frame::after {
  transform: translateX(135%);
  opacity: 0.9;
}

.page-blocks--team .wp-team-card__photo-frame:hover .wp-team-card__photo,
.page-blocks--team .wp-team-card__photo-wrap:hover .wp-team-card__photo,
.page-blocks--team .wp-team-card__photo-wrap:focus-visible .wp-team-card__photo {
  transform: scale(1.12);
  filter: contrast(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .page-blocks--team .wp-team-card__photo-frame,
  .page-blocks--team .wp-team-card__photo-frame::before,
  .page-blocks--team .wp-team-card__photo-frame::after,
  .page-blocks--team .wp-team-card__photo {
    transition: none;
  }

  .page-blocks--team .wp-team-card__photo-frame:hover::after,
  .page-blocks--team .wp-team-card__photo-wrap:hover .wp-team-card__photo-frame::after {
    transform: none;
    opacity: 0.35;
  }
}

.wp-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  padding: 1.15rem 1.25rem 1.25rem;
}

.wp-team-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--zen-primary);
  line-height: 1.2;
}

.wp-team-card__name a {
  color: inherit;
  text-decoration: none;
}

.wp-team-card__name a:hover,
.wp-team-card__name a:focus-visible {
  text-decoration: underline;
}

.wp-team-card__excerpt {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--zen-text);
}

.wp-team-card__cta {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zen-accent-deep);
}

a.wp-team-card__cta {
  display: inline-block;
  text-decoration: none;
  width: fit-content;
}

.wp-team-card__link:hover .wp-team-card__cta,
.wp-team-card__link:focus-visible .wp-team-card__cta,
a.wp-team-card__cta:hover,
a.wp-team-card__cta:focus-visible {
  text-decoration: underline;
}

.wp-team-card--featured {
  border-color: color-mix(in srgb, var(--zen-accent) 35%, transparent);
  box-shadow: var(--shadow-md);
}

.wp-team-card--featured .wp-team-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
}

.wp-team-card--featured .wp-team-card__photo-wrap {
  display: block;
  min-height: 100%;
}

.wp-team-card--featured .wp-team-card__photo {
  width: 100%;
  height: auto;
  max-height: none;
}

.wp-team-card--featured .wp-team-card__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  padding-left: 0;
  justify-content: center;
}

.wp-team-card--featured .wp-team-card__name {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.wp-team-card--featured .wp-team-card__excerpt {
  font-size: 1rem;
  line-height: 1.75;
  max-width: none;
  text-wrap: pretty;
}

.wp-team-card--featured .wp-team-card__excerpt a {
  display: inline;
  color: var(--zen-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.wp-team-card--featured .wp-team-card__excerpt a:hover,
.wp-team-card--featured .wp-team-card__excerpt a:focus-visible {
  color: var(--zen-accent-deep);
}

/* Images */
.page-blocks img {
  opacity: 1;
  visibility: visible;
  max-width: 100%;
  height: auto;
}

.page-blocks .wp-img--badge {
  width: auto;
  max-height: 4rem;
  margin: 0.5rem 0 1rem;
  border-radius: 0;
}

.page-blocks .wp-img--portrait:not(.wp-team-card img) {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: 1.75rem auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.page-blocks .wp-img--landscape:not(.wp-team-card img):not(.wp-block--gallery img) {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.75rem 0;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.page-blocks h2,
.page-shell__main.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--zen-primary);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.page-blocks .wp-block > div > div > div > h2:first-child,
.page-blocks .wp-block h2:first-child {
  margin-top: 0;
}

.page-blocks h3,
.page-shell__main.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--zen-primary);
  margin: 1.5rem 0 0.65rem;
}

.page-blocks h4,
.page-shell__main.prose h4 {
  font-size: 1.05rem;
  margin: 1.15rem 0 0.45rem;
  color: var(--zen-primary);
}

.page-blocks h4 h4 {
  display: inline;
  margin: 0;
  font: inherit;
  font-weight: 600;
}

.page-blocks p,
.page-blocks li {
  color: var(--zen-text);
  line-height: 1.75;
}

.page-blocks p {
  margin: 0 0 1.1rem;
}

.page-blocks ul,
.page-blocks ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.page-blocks li {
  margin-bottom: 0.4rem;
}

.page-blocks blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--zen-accent-deep);
  background: var(--zen-accent-soft);
  border-radius: 0 0.65rem 0.65rem 0;
}

.page-blocks blockquote p {
  margin: 0;
  font-style: italic;
}

.page-blocks hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
}

/* Structured page blocks (rewritten menu pages) */
.page-block {
  margin-bottom: 2rem;
}

.page-block--lead {
  font-size: 1.125rem;
  line-height: 1.75;
}

.page-figure {
  margin: 2rem 0;
}

.page-figure img {
  margin: 0;
}

.page-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  text-align: center;
}

.page-figure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.page-figure-grid img {
  margin: 0;
  aspect-ratio: 4 / 3;
}

.page-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.page-team-card {
  background: var(--zen-background);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.page-team-card img {
  margin: 0;
  aspect-ratio: 3 / 2;
  border-radius: 0;
}

.page-team-card__body {
  padding: 1.25rem;
}

.page-team-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.page-team-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.page-package-card {
  background: linear-gradient(180deg, var(--zen-white) 0%, var(--zen-accent-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--zen-accent) 40%, transparent);
  border-radius: 1.15rem;
  padding: 1.5rem;
}

.page-package-card h3 {
  margin: 0 0 0.5rem;
}

.page-package-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}

.page-package-card .btn {
  width: 100%;
}

/* Retreat packages comparison page */
.page-shell--packages {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.page-shell--packages .section__inner {
  max-width: 80rem;
}

.page-shell__grid--packages {
  align-items: stretch;
}

.page-shell__main--packages {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.packages-page {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3.5vw, 3rem);
}

.packages-page__lead {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.packages-page__lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.packages-page__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.packages-page__trust li {
  margin: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--zen-accent-soft) 65%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--zen-primary);
  line-height: 1.35;
}

.packages-page__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.packages-page__custom,
.packages-page__ready {
  padding: 1.35rem 1.4rem;
  border-radius: 1.1rem;
  background: color-mix(in srgb, var(--zen-surface) 55%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
}

.packages-page__intro h2,
.packages-page__location h2,
.packages-page__custom h2,
.packages-page__ready h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.packages-page__intro p,
.packages-page__location p,
.packages-page__custom p,
.packages-page__ready p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--zen-text);
}

.packages-page__intro .packages-page__trust {
  margin-top: 0.15rem;
}

.packages-page__custom h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--zen-primary);
}

.packages-page__ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.package-comparison {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 1.35rem;
  background: linear-gradient(
    145deg,
    var(--zen-white) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-white)) 100%
  );
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
  box-shadow: var(--shadow-md);
}

.package-comparison__head {
  margin-bottom: 1.35rem;
}

.package-comparison__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--zen-primary);
}

.package-comparison__lead {
  margin: 0;
  color: var(--zen-text-muted);
  line-height: 1.6;
  max-width: 44rem;
}

.package-comparison__table-wrap {
  overflow-x: auto;
  margin: 0 -0.35rem;
  padding: 0 0.35rem 0.15rem;
  -webkit-overflow-scrolling: touch;
}

.package-comparison__table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.package-comparison__table th,
.package-comparison__table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
  vertical-align: top;
  text-align: left;
}

.package-comparison__table thead th {
  border-bottom: none;
  vertical-align: bottom;
}

.package-comparison__feature-head {
  width: 24%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
  padding-bottom: 1.25rem;
}

.package-comparison__feature {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--zen-text);
  line-height: 1.45;
}

.package-comparison__tier {
  width: 25.33%;
  background: color-mix(in srgb, var(--zen-surface) 72%, transparent);
}

.package-comparison__tier--rose {
  background: color-mix(in srgb, var(--zen-primary) 5%, var(--zen-white));
}

.package-comparison__tier--wine {
  background: color-mix(in srgb, var(--zen-primary) 8%, var(--zen-accent-soft));
}

.package-comparison__tier--vip,
.package-comparison__tier--gold {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--zen-accent) 16%, var(--zen-white)) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 70%, var(--zen-white)) 100%
  );
}

.package-comparison__tier-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}

.package-comparison__tier-visual {
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 0.15rem;
  box-shadow: 0 10px 24px rgba(var(--zen-shadow-rgb), 0.12);
}

.package-comparison__tier-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

.package-comparison__tier-duration {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.package-comparison__tier-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--zen-primary);
}

.package-comparison__tier-subtitle {
  margin: 0;
  font-size: 0.86rem;
  color: var(--zen-text-muted);
}

.package-comparison__tier-price {
  margin: 0.15rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.package-comparison__tier-compare {
  font-size: 0.82rem;
  color: var(--zen-text-muted);
}

.package-comparison__tier-price strong {
  font-size: 1.35rem;
  color: var(--zen-primary);
}

.package-comparison__tier-unit {
  width: 100%;
  font-size: 0.78rem;
  color: var(--zen-text-muted);
}

.package-comparison__tier-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.package-comparison__cell {
  font-size: 0.9rem;
}

.package-comparison__cell--vip {
  background: color-mix(in srgb, var(--zen-accent) 4%, transparent);
}

.package-comparison__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
}

.package-comparison__badge--included {
  color: var(--zen-primary);
  background: color-mix(in srgb, var(--zen-primary) 10%, transparent);
}

.package-comparison__badge--optional {
  color: var(--zen-accent-deep);
  background: color-mix(in srgb, var(--zen-accent) 14%, transparent);
}

.package-comparison__badge--custom {
  color: var(--zen-primary);
  background: color-mix(in srgb, var(--zen-accent-soft) 80%, var(--zen-white));
}

.package-comparison__badge--muted {
  color: var(--zen-text-muted);
  background: transparent;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  padding: 0;
}

.package-comparison__text {
  display: block;
  line-height: 1.45;
  color: var(--zen-text);
}

@media (max-width: 1099px) {
  .packages-page__lead-grid,
  .packages-page__footer {
    grid-template-columns: 1fr;
  }

  .package-comparison {
    padding: 1rem 0.95rem 1.1rem;
  }

  .package-comparison__table {
    min-width: 46rem;
    table-layout: auto;
  }
}

@media (max-width: 640px) {
  .packages-page__ready-actions {
    flex-direction: column;
  }

  .packages-page__ready-actions .btn {
    width: 100%;
  }

  .packages-page__custom .btn,
  .packages-page__ready-actions .btn {
    width: 100%;
  }
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  list-style: none;
  padding: 0;
}

.page-link-grid li {
  margin: 0;
  padding: 0;
}

.page-link-grid a {
  display: block;
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: var(--zen-accent-soft);
  border: 1px solid color-mix(in srgb, var(--zen-accent) 45%, transparent);
  text-decoration: none;
  font-weight: 600;
  color: var(--zen-primary);
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-link-grid a:hover {
  background: var(--zen-accent);
  transform: translateY(-2px);
}

/* ── Psilocybin hub page ───────────────────────────── */

.page-shell--psilocybin {
  background: linear-gradient(
    180deg,
    var(--zen-background) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 32%, var(--zen-background)) 100%
  );
}

.page-shell__main--psilocybin {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.psilo-page {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 72rem;
  margin: 0 auto;
}

.psilo-page__intro {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.psilo-page__lead {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: var(--zen-text);
}

.psilo-page__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.psilo-page__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 8.5rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
  box-shadow: 0 8px 24px rgba(var(--zen-shadow-rgb), 0.06);
}

.psilo-page__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--zen-primary);
}

.psilo-page__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--zen-text-muted);
}

.psilo-page__trust {
  margin-top: 0.15rem;
}

.psilo-page__section {
  margin: 0;
}

.psilo-page__section-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 400;
  color: var(--zen-primary);
}

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

.psilo-page__steps {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}

.psilo-page__promo {
  margin: 0;
}

.about-split--reverse {
  direction: rtl;
}

.about-split--reverse > * {
  direction: ltr;
}

.psilo-page__frame {
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(var(--zen-shadow-rgb), 0.12);
}

.psilo-page__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psilo-page__frame--rounded {
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(var(--zen-shadow-rgb), 0.12);
}

.psilo-page__frame--rounded img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-list--compact li {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 0.98rem;
}

.psilo-page__explore-lead {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  line-height: 1.65;
  color: var(--zen-text);
}

.psilo-page__explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: 1.5rem;
}

.psilo-page__related {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 24%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
}

.hub-related-links {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
}

.hub-related-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--zen-primary);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-primary) 35%, transparent);
  transition: color 0.25s var(--zen-ease), border-color 0.25s var(--zen-ease);
}

.hub-related-links a:hover {
  color: color-mix(in srgb, var(--zen-primary) 75%, black);
  border-bottom-color: var(--zen-primary);
}

.psilo-page .about-split__text a,
.psilo-page__lead a,
.truffles-page__section-lead a,
.truffles-benefits__lead a,
.truffles-benefits__text a,
.truffle-legal__text a,
.promo-band__text a,
.truffles-journey__note a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--zen-primary) 40%, transparent);
  text-underline-offset: 0.15em;
}

.promo-band__text a {
  color: var(--zen-white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.truffles-journey__note {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--zen-text-muted);
}

.psilo-explore-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(var(--zen-shadow-rgb), 0.07);
  transition:
    transform 0.35s var(--zen-ease),
    box-shadow 0.35s var(--zen-ease);
}

.psilo-explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(var(--zen-shadow-rgb), 0.14);
}

.psilo-explore-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.psilo-explore-card__media--rotate {
  aspect-ratio: 16 / 10;
}

.psilo-explore-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--zen-ease);
}

.psilo-explore-card__media--rotate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0;
  transition:
    opacity 0.85s ease,
    transform 0.5s var(--zen-ease);
}

.psilo-explore-card__media--rotate img.is-active {
  opacity: 1;
}

.psilo-explore-card:hover .psilo-explore-card__media img {
  transform: scale(1.05);
}

.psilo-explore-card:hover .psilo-explore-card__media--rotate img:not(.is-active) {
  transform: none;
}

.psilo-explore-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(var(--zen-shadow-rgb), 0.45) 100%);
  pointer-events: none;
}

.psilo-explore-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem 1.25rem;
}

.psilo-explore-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.psilo-explore-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

@media (max-width: 768px) {
  .psilo-page .experience-grid,
  .psilo-page__explore-grid {
    grid-template-columns: 1fr;
  }

  .about-split--reverse {
    direction: ltr;
  }
}

/* ── About page hub ────────────────────────────────── */

.about-page__text {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--zen-text);
}

.about-page__text--muted {
  color: var(--zen-text-muted);
  font-size: 0.95rem;
}

.about-page__panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-page__panel {
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border-radius: 1.25rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  box-shadow: 0 10px 28px rgba(var(--zen-shadow-rgb), 0.06);
}

.about-page__panel--soft {
  background: color-mix(in srgb, var(--zen-accent-soft) 28%, var(--zen-white));
}

.about-page__panel-title,
.about-page__section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.about-page__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.about-page__list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.6;
  color: var(--zen-text);
}

.about-page__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--zen-primary);
}

.about-page__list--compact li {
  font-size: 0.95rem;
}

.about-page__offerings {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1.35rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 22%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
}

.about-page__offerings-list {
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
}

.about-page__offerings-list li {
  font-weight: 600;
  color: var(--zen-primary);
  line-height: 1.45;
}

.about-page__role {
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  border-radius: 1.25rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
}

.about-page__role-closing {
  margin: 1rem 0 0;
  font-weight: 600;
  line-height: 1.65;
  color: var(--zen-primary);
}

.about-page__values-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.85rem;
}

.about-page__value {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.about-page__value-title {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.about-page__value-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--zen-text-muted);
}

/* Audience: soft band + bento mosaic */
.about-audience__band {
  padding: clamp(1.65rem, 3.2vw, 2.35rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, color-mix(in srgb, var(--zen-accent-soft) 55%, transparent), transparent 70%),
    radial-gradient(ellipse 55% 45% at 92% 100%, color-mix(in srgb, var(--zen-tertiary) 22%, transparent), transparent 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--zen-accent-soft) 18%, var(--zen-white)) 0%, var(--zen-white) 100%);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
  box-shadow: 0 14px 40px rgba(var(--zen-shadow-rgb), 0.07);
}

.about-audience__intro {
  max-width: 34rem;
  margin-bottom: 1.35rem;
}

.about-audience__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--zen-primary);
}

.about-audience__lead {
  margin: 0.7rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--zen-text);
}

.about-audience__mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-audience__tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 7.5rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
  overflow: hidden;
  transition:
    transform 0.4s var(--zen-ease),
    box-shadow 0.4s var(--zen-ease),
    border-color 0.4s var(--zen-ease);
}

.about-audience__tile::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--zen-primary), color-mix(in srgb, var(--zen-accent-soft) 70%, var(--zen-primary)));
  opacity: 0.85;
}

.about-audience__tile--1 { grid-column: span 2; }
.about-audience__tile--2 { grid-column: span 2; }
.about-audience__tile--3 { grid-column: span 2; }
.about-audience__tile--4 { grid-column: span 3; }
.about-audience__tile--5 { grid-column: span 3; }

.about-audience__tile--1::before { background: linear-gradient(90deg, var(--zen-primary), color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-primary))); }
.about-audience__tile--2::before { background: linear-gradient(90deg, color-mix(in srgb, #c97b8a 70%, var(--zen-primary)), var(--zen-primary)); }
.about-audience__tile--3::before { background: linear-gradient(90deg, var(--zen-primary), color-mix(in srgb, var(--zen-tertiary) 55%, var(--zen-primary))); }
.about-audience__tile--4::before { background: linear-gradient(90deg, color-mix(in srgb, #c9a227 55%, var(--zen-primary)), var(--zen-primary)); }
.about-audience__tile--5::before { background: linear-gradient(90deg, var(--zen-primary), color-mix(in srgb, var(--zen-primary-light) 65%, var(--zen-primary))); }

.about-audience__tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--zen-accent) 55%, transparent);
  box-shadow: 0 14px 32px rgba(var(--zen-shadow-rgb), 0.1);
}

.about-audience__tile-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--zen-primary);
}

.about-audience__quote {
  margin: 1.35rem 0 0;
  padding: 0;
  border: none;
}

.about-audience__quote p {
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  line-height: 1.75;
  color: var(--zen-text);
}

.about-audience__quote p::before {
  content: '“';
  margin-right: 0.1em;
  font-family: var(--font-display);
  font-size: 1.35em;
  line-height: 0;
  color: color-mix(in srgb, var(--zen-primary) 55%, transparent);
}

.about-audience__lead a,
.about-audience__quote a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--zen-primary) 40%, transparent);
  text-underline-offset: 0.15em;
}

/* Commitment: dark contrast band */
.about-commitment__shell {
  border-radius: 1.5rem;
  overflow: hidden;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.35rem, 3vw, 2rem);
  background: linear-gradient(
    155deg,
    var(--zen-primary-dark) 0%,
    var(--zen-primary) 48%,
    color-mix(in srgb, var(--zen-primary-light) 75%, var(--zen-primary)) 100%
  );
  color: var(--zen-white);
  box-shadow: 0 18px 48px rgba(var(--zen-shadow-rgb), 0.16);
}

.about-commitment__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--zen-white);
  max-width: 16rem;
}

.about-commitment__contrast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0;
  margin-top: 1.5rem;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--zen-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.about-commitment__lane {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2.2vw, 1.4rem);
}

.about-commitment__lane--no {
  background: color-mix(in srgb, var(--zen-white) 88%, #f0e8ea);
}

.about-commitment__lane--yes {
  background: color-mix(in srgb, var(--zen-accent-soft) 24%, var(--zen-white));
}

.about-commitment__bridge {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 2px;
  background: color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.about-commitment__bridge-line {
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    var(--zen-primary) 18%,
    var(--zen-primary) 82%,
    transparent
  );
  opacity: 0.35;
}

.about-commitment__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-commitment__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.about-commitment__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--zen-text);
}

.about-commitment__lane--no .about-commitment__text {
  color: color-mix(in srgb, var(--zen-text-muted) 88%, var(--zen-text));
}

.about-commitment__lane--yes .about-commitment__text {
  font-weight: 600;
  color: var(--zen-primary);
}

.about-commitment__mark {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-commitment__mark--no {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--zen-text-muted) 45%, transparent);
  position: relative;
}

.about-commitment__mark--no::before,
.about-commitment__mark--no::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 1.5px;
  background: color-mix(in srgb, var(--zen-text-muted) 70%, transparent);
  border-radius: 1px;
}

.about-commitment__mark--no::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-commitment__mark--no::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.about-commitment__mark--yes {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--zen-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--zen-accent-soft) 65%, transparent);
}

.about-commitment__closing {
  margin: 1.45rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  color: var(--zen-white);
  max-width: 34rem;
}

.about-commitment__closing a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.15em;
}

.about-page .about-split__text a,
.about-page__text a,
.about-page__offerings-list a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--zen-primary) 40%, transparent);
  text-underline-offset: 0.15em;
}

@media (max-width: 768px) {
  .about-page__panels,
  .about-page__offerings-list {
    grid-template-columns: 1fr;
  }

  .about-audience__mosaic {
    grid-template-columns: 1fr;
  }

  .about-audience__tile--1,
  .about-audience__tile--2,
  .about-audience__tile--3,
  .about-audience__tile--4,
  .about-audience__tile--5 {
    grid-column: auto;
    min-height: auto;
  }

  .about-commitment__contrast {
    grid-template-columns: 1fr;
  }

  .about-commitment__bridge {
    width: auto;
    height: 2px;
    padding: 0 1.25rem;
  }

  .about-commitment__bridge-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--zen-primary) 18%,
      var(--zen-primary) 82%,
      transparent
    );
  }
}

/* ── Contraindications hub ─────────────────────────── */

.page-shell--contraindications .page-shell__main--psilocybin {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contra-page {
  gap: clamp(2.25rem, 4vw, 3.25rem);
}

.contra-intro__text {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  line-height: 1.7;
  color: var(--zen-text-muted);
}

.contra-stats {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.contra-stats__item {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 24%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.contra-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--zen-primary);
  line-height: 1.25;
}

.contra-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--zen-text-muted);
}

.contra-band {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(141, 53, 82, 0.22), transparent 68%),
    linear-gradient(155deg, var(--zen-primary-dark) 0%, var(--zen-primary) 58%, color-mix(in srgb, var(--zen-primary-light) 70%, var(--zen-primary)) 100%);
  color: color-mix(in srgb, var(--zen-white) 90%, transparent);
}

.contra-band__inner {
  max-width: 44rem;
}

.contra-band__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 400;
  color: var(--zen-white);
}

.contra-band__lead,
.contra-band__text {
  margin: 0.85rem 0 0;
  line-height: 1.75;
  color: color-mix(in srgb, var(--zen-white) 82%, transparent);
}

.contra-band a {
  color: var(--zen-tertiary);
  font-weight: 600;
}

.contra-band a:hover {
  color: var(--zen-white);
}

.contra-screen__head {
  margin-bottom: 1.35rem;
}

.contra-screen__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.contra-screen__disclaimer {
  margin: 0.65rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--zen-tertiary) 18%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-tertiary) 35%, transparent);
  font-size: 0.92rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--zen-primary) 75%, var(--zen-text));
}

.contra-gates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.contra-gate {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  box-shadow: var(--shadow-sm);
}

.contra-gate__mark {
  flex-shrink: 0;
  width: 0.45rem;
  border-radius: 999px;
  margin-top: 0.2rem;
}

.contra-gate--strict .contra-gate__mark {
  background: linear-gradient(180deg, #c97b8a, var(--zen-primary));
}

.contra-gate--medication .contra-gate__mark {
  background: linear-gradient(180deg, #e0b35a, #c9a227);
}

.contra-gate--psychiatric .contra-gate__mark {
  background: linear-gradient(180deg, #a78bfa, #6d4f9a);
}

.contra-gate__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--zen-primary);
}

.contra-gate__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contra-gate__list li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--zen-text);
}

.contra-gate__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--zen-primary) 55%, transparent);
}

.contra-principles {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, color-mix(in srgb, var(--zen-accent-soft) 55%, transparent), transparent 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--zen-accent-soft) 16%, var(--zen-white)) 0%, var(--zen-white) 100%);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.contra-principles__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.contra-principles__lead,
.contra-principles__closing {
  margin: 0.75rem 0 0;
  line-height: 1.7;
  color: var(--zen-text);
}

.contra-principles__list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: contra-principle;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contra-principles__item {
  counter-increment: contra-principle;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.contra-principles__index::before {
  content: counter(contra-principle);
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--zen-white);
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
}

.contra-principles__text {
  line-height: 1.65;
  color: var(--zen-text);
}

.contra-guidance {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 20%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.contra-guidance__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.contra-guidance__lead,
.contra-guidance__text {
  margin: 0.75rem 0 0;
  line-height: 1.75;
  color: var(--zen-text);
}

.contra-alternatives__grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contra-alt {
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.contra-alt__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.contra-alt__text {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--zen-text-muted);
}

.contra-alternatives__foot {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
}

.contra-alternatives__closing {
  margin: 0;
  line-height: 1.7;
  color: var(--zen-text);
}

.contra-alternatives__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contra-gateway {
  text-align: center;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 1.35rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--zen-primary) 8%, var(--zen-white)) 0%, color-mix(in srgb, var(--zen-accent-soft) 28%, var(--zen-white)) 100%);
  border: 1px solid color-mix(in srgb, var(--zen-primary) 12%, transparent);
}

.contra-gateway__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.contra-gateway__text {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  line-height: 1.7;
  color: var(--zen-text-muted);
}

.contra-gateway .btn {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .contra-stats,
  .contra-gates,
  .contra-alternatives__grid,
  .contra-alternatives__foot {
    grid-template-columns: 1fr;
  }
}

/* ── Microdosing hub ─────────────────────────────── */

.page-shell--microdosing .page-shell__main--psilocybin {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.micro-page {
  gap: clamp(2.25rem, 4vw, 3.25rem);
}

.micro-intro__text {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  line-height: 1.7;
  color: var(--zen-text-muted);
}

.micro-stats {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.micro-stats__item {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, color-mix(in srgb, #5a9a7a 14%, transparent), transparent 70%),
    color-mix(in srgb, var(--zen-accent-soft) 18%, var(--zen-white));
  border: 1px solid color-mix(in srgb, #5a9a7a 22%, var(--zen-border));
}

.micro-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--zen-primary);
  line-height: 1.25;
}

.micro-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--zen-text-muted);
}

.micro-paths__title,
.micro-motives__title,
.micro-dose__title,
.micro-formats__title,
.micro-practice__title,
.micro-protocol__title,
.micro-stamets__title,
.micro-faq__title,
.micro-gateway__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.micro-paths__grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.micro-paths__grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 68%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--zen-primary) 18%, transparent) 18%,
    color-mix(in srgb, #5a9a7a 35%, transparent) 50%,
    color-mix(in srgb, var(--zen-primary) 18%, transparent) 82%,
    transparent 100%
  );
  border-radius: 999px;
  pointer-events: none;
}

.micro-path {
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.2rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  box-shadow: var(--shadow-sm);
}

.micro-path--retreat {
  border-top: 3px solid var(--zen-primary);
}

.micro-path--micro {
  border-top: 3px solid #5a9a7a;
}

.micro-path__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.micro-path__text {
  margin: 0.65rem 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--zen-text-muted);
}

.micro-heroic {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(201, 162, 39, 0.18), transparent 68%),
    linear-gradient(155deg, color-mix(in srgb, var(--zen-primary-dark) 88%, #1a1020) 0%, var(--zen-primary) 62%, color-mix(in srgb, var(--zen-primary-light) 55%, var(--zen-primary)) 100%);
  color: color-mix(in srgb, var(--zen-white) 90%, transparent);
}

.micro-heroic__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--zen-white);
}

.micro-heroic__lead,
.micro-heroic__text {
  margin: 0.85rem 0 0;
  line-height: 1.75;
  color: color-mix(in srgb, var(--zen-white) 82%, transparent);
}

.micro-heroic a {
  color: var(--zen-tertiary);
  font-weight: 600;
}

.micro-heroic a:hover {
  color: var(--zen-white);
}

.micro-motives__grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.micro-motive {
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 14%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.micro-motive__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.micro-motive__text {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--zen-text-muted);
}

.micro-dose__note {
  margin: 0.65rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--zen-text-muted);
}

.micro-dose__table {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  background: var(--zen-white);
}

.micro-dose__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 10%, transparent);
}

.micro-dose__row:first-child {
  border-top: none;
}

.micro-dose__row--head {
  background: color-mix(in srgb, #5a9a7a 12%, var(--zen-accent-soft));
}

.micro-dose__cell {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--zen-text);
}

.micro-dose__row--head .micro-dose__cell {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-primary) 78%, var(--zen-text));
}

.micro-dose__cell--label {
  font-weight: 600;
  color: var(--zen-primary);
}

.micro-formats__grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.micro-format {
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: 1.1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.micro-format--dried {
  border-left: 3px solid color-mix(in srgb, var(--zen-tertiary) 70%, #c9a227);
}

.micro-format--fresh {
  border-left: 3px solid #5a9a7a;
}

.micro-format__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.micro-format__lead {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--zen-primary) 70%, var(--zen-text));
}

.micro-format__text {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--zen-text-muted);
}

.micro-practice {
  padding: clamp(1.35rem, 2.8vw, 1.85rem);
  border-radius: 1.2rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 16%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.micro-practice__lead,
.micro-practice__text {
  margin: 0.65rem 0 0;
  line-height: 1.7;
  color: var(--zen-text);
}

.micro-protocol__intro {
  margin: 0.65rem 0 1rem;
  line-height: 1.7;
  color: var(--zen-text-muted);
}

.micro-protocol__grid {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  background: var(--zen-white);
}

.micro-protocol__row {
  display: grid;
  grid-template-columns: 0.55fr repeat(3, 1fr);
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 10%, transparent);
}

.micro-protocol__row:first-child {
  border-top: none;
}

.micro-protocol__row--head {
  background: color-mix(in srgb, var(--zen-primary) 8%, var(--zen-white));
}

.micro-protocol__cell {
  padding: 0.7rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  color: var(--zen-text);
}

.micro-protocol__cell--day {
  text-align: left;
  font-weight: 700;
  color: var(--zen-primary);
}

.micro-protocol__row--head .micro-protocol__cell {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-primary) 78%, var(--zen-text));
}

.micro-protocol__row:not(.micro-protocol__row--head) .micro-protocol__cell:not(.micro-protocol__cell--day) {
  font-size: 0.78rem;
}

.micro-protocol__row:not(.micro-protocol__row--head) .micro-protocol__cell:not(.micro-protocol__cell--day):not(:empty) {
  background: color-mix(in srgb, #5a9a7a 10%, transparent);
}

.micro-protocol__durations {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.9rem;
  color: var(--zen-text-muted);
}

.micro-stamets__lead,
.micro-stamets__rhythm,
.micro-stamets__note {
  margin: 0.65rem 0 0;
  line-height: 1.7;
  color: var(--zen-text-muted);
}

.micro-stamets__stack {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.micro-stamets__item {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
  position: relative;
}

.micro-stamets__item:not(:last-child)::after {
  content: '+';
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  transform: translateX(-50%);
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zen-white);
  background: linear-gradient(135deg, #5a9a7a, color-mix(in srgb, var(--zen-primary) 55%, #5a9a7a));
  z-index: 1;
}

.micro-stamets__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.micro-stamets__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--zen-text-muted);
}

.micro-retreat__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.micro-retreat__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.micro-retreat__lead,
.micro-retreat__text {
  margin: 0.75rem 0 0;
  line-height: 1.7;
  color: var(--zen-text);
}

.micro-faq__list {
  margin: 1.15rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.micro-faq__item {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.micro-faq__question {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--zen-primary);
}

.micro-faq__answer {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--zen-text-muted);
}

.micro-gateway {
  text-align: center;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, color-mix(in srgb, #5a9a7a 18%, transparent), transparent 72%),
    linear-gradient(160deg, color-mix(in srgb, var(--zen-primary) 6%, var(--zen-white)) 0%, color-mix(in srgb, var(--zen-accent-soft) 24%, var(--zen-white)) 100%);
  border: 1px solid color-mix(in srgb, #5a9a7a 22%, transparent);
}

.micro-gateway__text {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  line-height: 1.7;
  color: var(--zen-text-muted);
}

.micro-gateway .btn {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .micro-stats,
  .micro-paths__grid,
  .micro-motives__grid,
  .micro-formats__grid,
  .micro-faq__list,
  .micro-retreat__grid {
    grid-template-columns: 1fr;
  }

  .micro-paths__grid::before {
    display: none;
  }

  .micro-stamets__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

/* ── Experience page: full-viewport void ─────────── */

body.page-site:has(.exp-canvas) {
  background: #020408;
}

body.page-site:has(.exp-canvas) .ambient-layer {
  display: none;
}

body.page-site main:has(.exp-canvas) {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: var(--header-height);
  max-width: none;
}

/* Experience page: light header + footer on dark void */
.site-logo__img--inverse {
  display: none;
}

body.page-site:has(.exp-canvas) .site-logo__img--default {
  display: none;
}

body.page-site:has(.exp-canvas) .site-logo__img--inverse {
  display: block;
}

body.page-site:has(.exp-canvas) .site-header {
  z-index: 400;
  border-bottom-color: rgba(148, 163, 184, 0.1);
}

body.page-site:has(.exp-canvas) .site-header.is-scrolled {
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.38);
}

body.page-site:has(.exp-canvas) .site-nav > a,
body.page-site:has(.exp-canvas) .site-nav__trigger {
  color: color-mix(in srgb, var(--zen-white) 90%, transparent);
}

body.page-site:has(.exp-canvas) .site-nav > a:hover,
body.page-site:has(.exp-canvas) .site-nav a.is-active,
body.page-site:has(.exp-canvas) .site-nav__trigger:hover,
body.page-site:has(.exp-canvas) .site-nav__dropdown.is-open .site-nav__trigger {
  color: var(--zen-white);
}

body.page-site:has(.exp-canvas) .site-nav > a::after,
body.page-site:has(.exp-canvas) .site-nav__trigger::after {
  background: var(--zen-tertiary);
}

body.page-site:has(.exp-canvas) .site-header__account {
  color: color-mix(in srgb, var(--zen-white) 88%, transparent);
}

body.page-site:has(.exp-canvas) .site-header__account:hover {
  color: var(--zen-tertiary);
}

body.page-site:has(.exp-canvas) .site-header__toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

body.page-site:has(.exp-canvas) .site-header__toggle-icon span {
  background: var(--zen-white);
}

body.page-site:has(.exp-canvas) .lang-switcher {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

body.page-site:has(.exp-canvas) .site-footer {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(2, 4, 8, 0) 0%, #050a14 10%, #020408 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

body.page-site:has(.exp-canvas) .site-footer h4 {
  color: color-mix(in srgb, var(--zen-tertiary) 82%, white);
}

body.page-site:has(.exp-canvas) .site-footer__tagline {
  color: color-mix(in srgb, var(--zen-tertiary) 72%, white);
}

body.page-site:has(.exp-canvas) .site-footer__small,
body.page-site:has(.exp-canvas) .site-footer__copy {
  color: color-mix(in srgb, var(--zen-white) 58%, transparent);
}

@media (max-width: 1099px) {
  body.page-site:has(.exp-canvas) .site-header.is-menu-open {
    background: rgba(2, 4, 8, 0.96);
    border-bottom-color: rgba(148, 163, 184, 0.16);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  }

  /* Dark void theme — keep white logo + light chrome when drawer opens */
  body.page-site:has(.exp-canvas) .site-header.is-menu-open .site-logo__img--default {
    display: none;
  }

  body.page-site:has(.exp-canvas) .site-header.is-menu-open .site-logo__img--inverse {
    display: block;
  }

  body.page-site:has(.exp-canvas) .site-header.is-menu-open .site-header__toggle,
  body.page-site:has(.exp-canvas) .site-header.is-menu-open .site-header__toggle.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
  }

  body.page-site:has(.exp-canvas) .site-header.is-menu-open .site-header__toggle-icon span {
    background: var(--zen-white);
  }

  body.page-site:has(.exp-canvas) .site-header__backdrop.is-visible {
    z-index: 405;
  }

  body.page-site:has(.exp-canvas) .site-header__menu {
    z-index: 410;
    background: #04080f;
  }

  body.page-site:has(.exp-canvas) .site-nav > a,
  body.page-site:has(.exp-canvas) .site-nav__trigger {
    color: var(--zen-white);
    border-bottom-color: rgba(148, 163, 184, 0.12);
  }

  body.page-site:has(.exp-canvas) .site-nav__menu a {
    color: color-mix(in srgb, var(--zen-white) 78%, transparent);
  }

  body.page-site:has(.exp-canvas) .site-header__menu-foot {
    background: rgba(2, 4, 8, 0.65);
    border-top-color: rgba(148, 163, 184, 0.14);
  }

  body.page-site:has(.exp-canvas) .site-header__account {
    color: var(--zen-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
  }
}

.exp-canvas {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  margin: 0;
  padding: 0;
  background: #020408;
  overflow-x: clip;
}

.exp-canvas__legal {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--zen-white) 55%, transparent);
  text-align: center;
}

.exp-page--void {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  color: color-mix(in srgb, var(--zen-white) 82%, transparent);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.exp-void {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Void visuals must never intercept header, drawer, or footer interaction */
.exp-void * {
  pointer-events: none;
}

.exp-void__depth {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, #0a1020 0%, #020408 55%, #010204 100%);
}

.exp-void__lung {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(167, 139, 250, 0.22) 0%,
    rgba(120, 80, 180, 0.14) 14%,
    rgba(42, 74, 110, 0.1) 28%,
    rgba(201, 162, 90, 0.06) 42%,
    transparent 68%
  );
  clip-path: circle(4% at 50% 42%);
  filter: blur(10px);
  opacity: 0.55;
  animation: exp-lung-breathe 18s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.exp-void__nebula {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.55;
}

.exp-void__nebula--a {
  top: 8%;
  left: -8%;
  width: 55vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(88, 64, 128, 0.45), transparent 68%);
  animation: exp-nebula-drift-a 48s ease-in-out infinite;
}

.exp-void__nebula--b {
  right: -10%;
  bottom: 18%;
  width: 48vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(42, 90, 140, 0.42), transparent 70%);
  animation: exp-nebula-drift-b 56s ease-in-out infinite;
}

.exp-void__stars--far,
.exp-void__stars--near {
  position: absolute;
  inset: 0;
}

.exp-void__stars--far {
  background-image:
    radial-gradient(1px 1px at 8% 14%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 72% 20%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 38% 6%, rgba(201, 162, 90, 0.4), transparent),
    radial-gradient(1px 1px at 84% 58%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 18% 68%, rgba(167, 139, 250, 0.32), transparent),
    radial-gradient(1px 1px at 52% 34%, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(1px 1px at 4% 44%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(201, 162, 90, 0.35), transparent),
    radial-gradient(1px 1px at 28% 88%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 62% 78%, rgba(167, 139, 250, 0.25), transparent);
  animation: exp-stars-twinkle 8s ease-in-out infinite;
}

.exp-void__stars--near {
  background-image:
    radial-gradient(1.5px 1.5px at 14% 28%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 66% 42%, rgba(201, 162, 90, 0.55), transparent),
    radial-gradient(2px 2px at 48% 22%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 82% 72%, rgba(167, 139, 250, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 24% 52%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(2px 2px at 58% 62%, rgba(201, 162, 90, 0.48), transparent);
  animation: exp-stars-twinkle 5s ease-in-out infinite reverse;
}

.exp-void__portal {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(130vmax, 160rem);
  height: min(130vmax, 160rem);
  transform: translate(-50%, -50%);
}

.exp-void__ring {
  position: absolute;
  border-radius: 999px;
}

.exp-void__ring--1 {
  inset: 2%;
  border: 1px solid rgba(201, 162, 90, 0.14);
  box-shadow:
    0 0 80px rgba(167, 139, 250, 0.08) inset,
    0 0 120px rgba(96, 165, 250, 0.06);
  animation: exp-ring-spin 140s linear infinite;
}

.exp-void__ring--2 {
  inset: 14%;
  border: 1px dashed rgba(96, 165, 250, 0.18);
  animation: exp-ring-spin-rev 95s linear infinite;
}

.exp-void__ring--3 {
  inset: 26%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201, 162, 90, 0.1) 55deg,
    transparent 110deg,
    rgba(167, 139, 250, 0.12) 200deg,
    transparent 280deg,
    rgba(96, 165, 250, 0.08) 330deg,
    transparent 360deg
  );
  mask: radial-gradient(circle, transparent 58%, black 59%, black 64%, transparent 65%);
  animation: exp-ring-spin 70s linear infinite;
}

.exp-void__core {
  position: absolute;
  inset: 34%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.2) 0%,
    rgba(88, 64, 128, 0.12) 32%,
    rgba(42, 74, 110, 0.06) 55%,
    transparent 72%
  );
  animation: exp-core-pulse 12s ease-in-out infinite;
}

.exp-void__matrix {
  position: absolute;
  left: -35%;
  right: -35%;
  bottom: -6%;
  height: 68%;
  transform-origin: 50% 100%;
  transform: perspective(560px) rotateX(70deg);
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 78%, transparent 100%);
  animation: exp-matrix-drift 60s linear infinite;
}

.exp-void__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.28) 18%,
    rgba(201, 162, 90, 0.45) 50%,
    rgba(148, 163, 184, 0.28) 82%,
    transparent
  );
  box-shadow: 0 0 28px rgba(201, 162, 90, 0.18);
  animation: exp-horizon-glow 10s ease-in-out infinite;
}

.exp-void__drift {
  position: absolute;
  inset: 0;
}

.exp-void__drift i {
  position: absolute;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 8px rgba(201, 162, 90, 0.45);
  animation: exp-particle-rise linear infinite;
}

.exp-void__drift i:nth-child(1) { left: 12%; bottom: -2%; animation-duration: 22s; animation-delay: 0s; }
.exp-void__drift i:nth-child(2) { left: 24%; bottom: -2%; animation-duration: 18s; animation-delay: -4s; width: 3px; height: 3px; }
.exp-void__drift i:nth-child(3) { left: 38%; bottom: -2%; animation-duration: 26s; animation-delay: -9s; opacity: 0.7; }
.exp-void__drift i:nth-child(4) { left: 51%; bottom: -2%; animation-duration: 20s; animation-delay: -2s; }
.exp-void__drift i:nth-child(5) { left: 63%; bottom: -2%; animation-duration: 24s; animation-delay: -11s; width: 3px; height: 3px; }
.exp-void__drift i:nth-child(6) { left: 74%; bottom: -2%; animation-duration: 17s; animation-delay: -6s; }
.exp-void__drift i:nth-child(7) { left: 86%; bottom: -2%; animation-duration: 28s; animation-delay: -14s; opacity: 0.65; }
.exp-void__drift i:nth-child(8) { left: 18%; bottom: -2%; animation-duration: 21s; animation-delay: -7s; }
.exp-void__drift i:nth-child(9) { left: 44%; bottom: -2%; animation-duration: 19s; animation-delay: -3s; width: 3px; height: 3px; }
.exp-void__drift i:nth-child(10) { left: 58%; bottom: -2%; animation-duration: 25s; animation-delay: -12s; }
.exp-void__drift i:nth-child(11) { left: 69%; bottom: -2%; animation-duration: 16s; animation-delay: -5s; }
.exp-void__drift i:nth-child(12) { left: 33%; bottom: -2%; animation-duration: 23s; animation-delay: -8s; opacity: 0.8; }

@keyframes exp-lung-breathe {
  0%, 100% {
    clip-path: circle(3% at 50% 42%);
    opacity: 0.35;
    filter: blur(14px);
  }

  48%, 52% {
    clip-path: circle(82vmax at 50% 42%);
    opacity: 0.9;
    filter: blur(8px);
  }
}

@keyframes exp-nebula-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 4vh) scale(1.08); }
}

@keyframes exp-nebula-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5vw, -3vh) scale(1.06); }
}

@keyframes exp-stars-twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

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

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

@keyframes exp-core-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

@keyframes exp-matrix-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 96px, 96px 0; }
}

@keyframes exp-horizon-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes exp-particle-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.85; }
  92% { opacity: 0.5; }
  100% { transform: translateY(-108vh) translateX(12px); opacity: 0; }
}

.exp-entry,
.exp-drift,
.exp-landing {
  position: relative;
  z-index: 2;
}

.exp-entry {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.exp-whisper {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-tertiary) 72%, transparent);
}

.exp-entry__pulse {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.8vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--zen-white);
  text-wrap: balance;
}

.exp-verse {
  margin: 1.15rem auto 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  line-height: 1.9;
  color: color-mix(in srgb, var(--zen-white) 74%, transparent);
}

.exp-verse--opening {
  font-size: clamp(1.08rem, 2.1vw, 1.22rem);
  color: color-mix(in srgb, var(--zen-white) 82%, transparent);
}

.exp-verse--soft {
  font-size: 0.98rem;
  font-style: italic;
  color: color-mix(in srgb, var(--zen-tertiary) 68%, white);
}

.exp-verse--accent {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  color: var(--zen-white);
}

.exp-verse--invocation {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--zen-white);
  text-wrap: balance;
}

.exp-drift {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.exp-layer {
  max-width: 38rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}

.exp-breath {
  display: grid;
  place-items: center;
  min-height: clamp(4rem, 12vw, 7rem);
  margin: 0 auto;
}

.exp-breath__ring {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--zen-tertiary) 55%, transparent);
  box-shadow: 0 0 20px rgba(201, 162, 90, 0.35);
  animation: exp-breath-pulse 4s ease-in-out infinite;
}

@keyframes exp-breath-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.exp-thread {
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 30rem;
}

.exp-thread__filament {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
}

.exp-thread__filament:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 0.2rem;
  width: 1px;
  height: calc(100% + 1.35rem);
  background: linear-gradient(180deg, rgba(201, 162, 90, 0.35), rgba(148, 163, 184, 0.15));
}

.exp-thread__glow {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--zen-tertiary);
  box-shadow: 0 0 14px rgba(201, 162, 90, 0.45);
}

.exp-thread__words {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--zen-white) 88%, transparent);
}

.exp-descent {
  margin: 2.25rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 36rem;
  position: relative;
}

.exp-descent::before {
  content: '';
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(96, 165, 250, 0.25) 8%,
    rgba(201, 162, 90, 0.4) 50%,
    rgba(167, 139, 250, 0.3) 92%,
    transparent
  );
}

.exp-descent__beat {
  position: relative;
  padding: 0 0 2.75rem;
}

.exp-descent__beat:last-child {
  padding-bottom: 0;
}

.exp-descent__mark {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #030508;
  border: 1px solid rgba(201, 162, 90, 0.45);
  box-shadow: 0 0 12px rgba(201, 162, 90, 0.3);
}

.exp-descent__beat--descent .exp-descent__mark {
  width: 0.7rem;
  height: 0.7rem;
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.4);
}

.exp-descent__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: color-mix(in srgb, var(--zen-white) 70%, transparent);
}

.exp-descent__phase {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-tertiary) 75%, transparent);
}

.exp-descent__essence {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.3;
  color: var(--zen-white);
}

.exp-descent__text {
  display: block;
}

.exp-weave {
  margin: 2rem auto 0;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  text-align: left;
}

.exp-weave__strand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}

.exp-weave__glyph {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--zen-tertiary) 80%, white);
  padding-top: 0.15rem;
}

.exp-weave__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  line-height: 1.35;
  color: var(--zen-white);
}

.exp-weave__text {
  margin: 0.45rem 0 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--zen-white) 66%, transparent);
}

.exp-weave__echoes {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--zen-white) 52%, transparent);
}

.exp-weave__echoes li + li {
  margin-top: 0.3rem;
}

.exp-hold {
  margin: 1.5rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--zen-white) 58%, transparent);
}

.exp-threshold {
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.exp-threshold__cta {
  margin-top: 1.75rem;
}

.exp-landing {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem) 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: transparent;
}

.exp-landing__read,
.exp-landing__paths {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.exp-landing__paths {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.exp-landing__paths-lead {
  margin-top: 0.75rem;
}

.exp-landing__links {
  margin: 1.25rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

.exp-landing__grid {
  margin: 1.5rem auto 0;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.exp-landing__path {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  text-decoration: none;
  transition: border-color 0.2s ease, padding-left 0.2s ease;
}

.exp-landing__path:hover {
  padding-left: 0.35rem;
  border-color: rgba(201, 162, 90, 0.28);
}

.exp-landing__path-label {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: color-mix(in srgb, var(--zen-white) 88%, transparent);
}

.exp-landing__path-hint {
  font-size: 0.86rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--zen-white) 52%, transparent);
}

.exp-page--void a:not(.btn) {
  color: color-mix(in srgb, var(--zen-tertiary) 86%, white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 90, 0.4);
  text-underline-offset: 0.15em;
}

.exp-page--void a:not(.btn):hover {
  color: var(--zen-white);
}

.exp-page--void a.btn {
  text-decoration: none;
  font-weight: 700;
}

.exp-page--void a.btn--light {
  background: var(--zen-white);
  color: var(--zen-primary);
  border: 1px solid color-mix(in srgb, var(--zen-primary) 18%, transparent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.exp-page--void a.btn--light:hover {
  background: var(--zen-primary);
  color: var(--zen-white);
  border-color: var(--zen-primary);
}

.exp-landing__path {
  text-decoration: none;
}

.exp-landing__path:hover .exp-landing__path-label {
  color: var(--zen-white);
}

@media (max-width: 768px) {
  .exp-void__matrix {
    height: 52%;
    bottom: -4%;
  }

  .exp-void__portal {
    width: 150vmax;
    height: 150vmax;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exp-void__lung {
    animation: none;
    clip-path: circle(70vmax at 50% 42%);
    opacity: 0.55;
  }

  .exp-void__matrix,
  .exp-void__nebula,
  .exp-void__stars,
  .exp-void__ring,
  .exp-void__core,
  .exp-void__horizon,
  .exp-void__drift i,
  .exp-breath__ring {
    animation: none;
  }
}

/* ── Magic truffles hub ────────────────────────────── */

.truffles-page__section-lead {
  margin: 0.5rem 0 0;
  max-width: 40rem;
  line-height: 1.65;
  color: var(--zen-text);
}

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

.truffles-page__gallery-item {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(var(--zen-shadow-rgb), 0.1);
}

.truffles-page__gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--zen-ease);
}

.truffles-page__gallery-item:hover img {
  transform: scale(1.04);
}

/* Varieties: editorial rows, not floating cards */
.truffles-strains {
  display: flex;
  flex-direction: column;
  margin-top: 1.35rem;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  background: var(--zen-white);
  box-shadow: 0 12px 36px rgba(var(--zen-shadow-rgb), 0.06);
}

.truffles-strain {
  display: grid;
  grid-template-columns: minmax(11rem, 1.15fr) 1.85fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
  padding: 1.25rem clamp(1.15rem, 2.5vw, 1.65rem);
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 10%, transparent);
  transition: background 0.35s var(--zen-ease);
}

.truffles-strain:last-child {
  border-bottom: none;
}

.truffles-strain:hover {
  background: color-mix(in srgb, var(--zen-accent-soft) 22%, var(--zen-white));
}

.truffles-strain__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--zen-primary);
}

.truffles-strain--soft .truffles-strain__meta { border-left-color: color-mix(in srgb, var(--zen-accent-soft) 85%, var(--zen-primary)); }
.truffles-strain--rose .truffles-strain__meta { border-left-color: color-mix(in srgb, #c97b8a 75%, var(--zen-primary)); }
.truffles-strain--wine .truffles-strain__meta { border-left-color: var(--zen-primary); }
.truffles-strain--gold .truffles-strain__meta { border-left-color: color-mix(in srgb, #c9a227 70%, var(--zen-primary)); }
.truffles-strain--slate .truffles-strain__meta { border-left-color: color-mix(in srgb, var(--zen-text-muted) 60%, var(--zen-primary)); }

.truffles-strain__species {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.truffles-strain__badge {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--zen-primary);
}

.truffles-strain__text {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--zen-text);
}

/* Effects: immersive band, not nested card grid */
.truffles-spectrum {
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    var(--zen-primary-dark) 0%,
    var(--zen-primary) 48%,
    color-mix(in srgb, var(--zen-primary-light) 75%, var(--zen-primary)) 100%
  );
  color: var(--zen-white);
  box-shadow: 0 18px 48px rgba(var(--zen-shadow-rgb), 0.16);
}

.truffles-spectrum__inner {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.35rem, 3vw, 2rem);
}

.truffles-spectrum__title,
.truffles-journey__title,
.truffles-benefits__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.truffles-spectrum__title {
  color: var(--zen-white);
  max-width: 20rem;
}

.truffles-spectrum__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.65rem;
}

.truffles-spectrum__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.truffles-spectrum__item:first-child {
  padding-left: 0;
}

.truffles-spectrum__item:last-child {
  padding-right: 0;
  border-right: none;
}

.truffles-spectrum__index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--zen-tertiary);
}

.truffles-spectrum__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--zen-white);
}

.truffles-spectrum__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--zen-on-dark-soft);
}

/* Journey phases: horizontal timeline */
.truffles-journey {
  margin-top: 0.25rem;
}

.truffles-journey__title {
  margin-bottom: 1.35rem;
}

.truffles-journey__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.truffles-journey__track::before {
  content: '';
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--zen-primary) 15%, var(--zen-border)),
    var(--zen-primary),
    color-mix(in srgb, var(--zen-primary) 15%, var(--zen-border))
  );
  z-index: 0;
}

.truffles-journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0 0.65rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.truffles-journey__node {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: var(--zen-white);
  border: 2px solid var(--zen-primary);
  box-shadow: 0 6px 18px rgba(var(--zen-shadow-rgb), 0.12);
}

.truffles-journey__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--zen-primary);
}

.truffles-journey__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.truffles-journey__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

/* Benefits: unified list panel */
.truffles-benefits {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1.35rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 28%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
}

.truffles-benefits__head {
  margin-bottom: 1.1rem;
}

.truffles-benefits__lead {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  line-height: 1.65;
  color: var(--zen-text);
}

.truffles-benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 12%, transparent);
}

.truffles-benefits__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 10%, transparent);
}

.truffles-benefits__item:last-child {
  border-bottom: none;
}

.truffles-benefits__mark {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--zen-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--zen-accent-soft) 65%, transparent);
}

.truffles-benefits__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zen-primary);
}

.truffles-benefits__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

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

.truffle-legal__card {
  padding: 1.35rem 1.4rem;
  border-radius: 1.15rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
  box-shadow: 0 10px 28px rgba(var(--zen-shadow-rgb), 0.06);
}

.truffle-legal__card--legal {
  border-left: 4px solid color-mix(in srgb, #3d8f5f 75%, var(--zen-primary));
}

.truffle-legal__card--prohibited {
  border-left: 4px solid color-mix(in srgb, #9a4a4a 70%, var(--zen-primary));
}

.truffle-legal__region {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--zen-primary);
}

.truffle-legal__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--zen-text);
}

@media (max-width: 768px) {
  .truffles-page__gallery {
    grid-template-columns: 1fr;
  }

  .truffle-legal {
    grid-template-columns: 1fr;
  }

  .truffles-strain {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .truffles-spectrum__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .truffles-spectrum__item {
    padding: 0 0 1.15rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .truffles-spectrum__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .truffles-journey__track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .truffles-journey__track::before {
    display: none;
  }

  .truffles-journey__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
}

/* FAQ / accordion */
:root {
  --faq-inset-x: clamp(1.5rem, 4vw, 2.15rem);
  --faq-inset-bottom: clamp(1.25rem, 2.75vw, 1.75rem);
  --faq-summary-inset-x: clamp(1.35rem, 3.5vw, 1.95rem);
}

.faq,
.page-blocks details,
.page-blocks .e-n-accordion-item,
.prose details,
.prose .e-n-accordion-item,
.content-card .faq {
  padding: 0;
}

.page-blocks .wp-block--accordion {
  border-bottom: none;
  padding-bottom: 0;
}

.page-blocks .e-n-accordion,
.page-blocks details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.page-blocks .e-n-accordion-item,
.page-blocks details {
  border: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
  border-radius: 1rem;
  background: linear-gradient(180deg, var(--zen-white) 0%, color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-white)) 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    border-color 0.35s var(--zen-ease-out),
    box-shadow 0.35s var(--zen-ease-out),
    transform 0.35s var(--zen-ease-out);
}

.page-blocks .e-n-accordion-item:hover,
.page-blocks details:hover {
  border-color: color-mix(in srgb, var(--zen-accent) 55%, transparent);
  box-shadow: var(--shadow-md);
}

.page-blocks .e-n-accordion-item.is-visible,
.page-blocks details.reveal.is-visible {
  transform: translateY(0);
}

.page-blocks .e-n-accordion-item-title,
.page-blocks summary,
.faq summary,
.prose summary,
.prose .e-n-accordion-item-title {
  cursor: pointer;
  font-weight: 600;
  color: var(--zen-primary);
  padding: 1.05rem var(--faq-summary-inset-x);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s var(--zen-ease-out);
}

.page-blocks .e-n-accordion-item[open] .e-n-accordion-item-title,
.page-blocks details[open] summary,
.faq[open] summary,
.prose details[open] summary,
.prose .e-n-accordion-item[open] .e-n-accordion-item-title,
.content-card .faq[open] summary {
  background: color-mix(in srgb, var(--zen-accent-soft) 80%, var(--zen-white));
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 30%, transparent);
}

.page-blocks .e-n-accordion-item [role="region"],
.page-blocks details > :not(summary),
.faq > :not(summary),
.prose details > :not(summary),
.prose .e-n-accordion-item [role="region"],
.content-card .faq > :not(summary) {
  padding: 0.35rem var(--faq-inset-x) var(--faq-inset-bottom);
  margin: 0;
  color: var(--zen-text);
  line-height: 1.75;
  animation: page-accordion-open 0.45s var(--zen-ease-out);
}

.faq > :not(summary) p,
.page-blocks details > :not(summary) p,
.prose details > :not(summary) p,
.page-blocks .e-n-accordion-item [role="region"] p,
.prose .e-n-accordion-item [role="region"] p {
  margin: 0 0 0.85rem;
  color: var(--zen-text-muted);
}

.faq > :not(summary) p:last-child,
.page-blocks details > :not(summary) p:last-child,
.prose details > :not(summary) p:last-child,
.page-blocks .e-n-accordion-item [role="region"] p:last-child,
.prose .e-n-accordion-item [role="region"] p:last-child {
  margin-bottom: 0;
}

.faq > :not(summary) ul,
.faq > :not(summary) ol,
.page-blocks details > :not(summary) ul,
.page-blocks details > :not(summary) ol,
.prose details > :not(summary) ul,
.prose details > :not(summary) ol {
  margin: 0.35rem 0 0;
  padding: 0 0 0 1.2rem;
}

@keyframes page-accordion-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-blocks .e-n-accordion-item-title-icon .e-closed::before,
.page-blocks summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--zen-accent-soft);
  color: var(--zen-primary);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.35s var(--zen-ease-out), background 0.35s var(--zen-ease-out);
}

.page-blocks .e-n-accordion-item[open] .e-n-accordion-item-title-icon .e-closed::before,
.page-blocks details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--zen-accent);
}

.page-blocks .e-n-accordion-item-title-icon {
  display: none;
}

.page-blocks table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.page-blocks table th {
  background: var(--zen-accent-soft);
  color: var(--zen-primary);
}

.page-flow-section.reveal {
  margin-bottom: 0.5rem;
}

/* ── Event conversion CTAs ─────────────────────────── */

.btn--outline-light {
  background: transparent;
  color: var(--zen-white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--zen-white);
  border-color: var(--zen-white);
}

.event-cta--hero {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.event-hero .event-cta__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--zen-on-dark-soft);
}

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

.event-hero .event-cta__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--zen-on-dark-soft);
}

.event-hero .event-cta__note a {
  color: var(--zen-tertiary);
}

/* Event pages: white logo over dark hero at top; brown logo when scrolled (all viewports) */
body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-logo__img--default {
  display: none;
}

body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-logo__img--inverse {
  display: block;
}

body.page-site:has(.event-hero) .site-header.is-scrolled .site-logo__img--default {
  display: block;
}

body.page-site:has(.event-hero) .site-header.is-scrolled .site-logo__img--inverse {
  display: none;
}

@media (max-width: 1099px) {
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-header__toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-header__toggle-icon span {
    background: var(--zen-white);
  }

  /* Open drawer uses light bar — brown logo + dark menu icon */
  body.page-site:has(.event-hero) .site-header.is-menu-open .site-logo__img--default {
    display: block;
  }

  body.page-site:has(.event-hero) .site-header.is-menu-open .site-logo__img--inverse {
    display: none;
  }

  body.page-site:has(.event-hero) .site-header.is-menu-open .site-header__toggle {
    background: var(--zen-white);
    border-color: var(--zen-primary);
  }

  body.page-site:has(.event-hero) .site-header.is-menu-open .site-header__toggle-icon span {
    background: var(--zen-primary);
  }
}

/* Event pages: white nav/tools over dark hero at top (desktop only) */
@media (min-width: 1100px) {
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav > a,
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav__trigger {
    color: color-mix(in srgb, var(--zen-white) 90%, transparent);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav > a:hover,
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav a.is-active,
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav__trigger:hover,
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav__dropdown.is-open .site-nav__trigger {
    color: var(--zen-white);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav > a::after,
  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-nav__trigger::after {
    background: var(--zen-white);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-header__account {
    color: color-mix(in srgb, var(--zen-white) 88%, transparent);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-header__account:hover {
    color: var(--zen-white);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-search-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--zen-white);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .site-search-toggle:hover {
    color: var(--zen-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }

  body.page-site:has(.event-hero) .site-header:not(.is-scrolled) .lang-switcher {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
  }
}

.event-cta--inline {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--zen-accent-soft) 0%, color-mix(in srgb, var(--zen-tertiary) 22%, var(--zen-accent-soft)) 100%);
  border-radius: 1.15rem;
  border: 1px solid color-mix(in srgb, var(--zen-accent) 45%, transparent);
}

.event-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.75rem 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--zen-primary-dark) 0%, var(--zen-primary) 50%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
  box-shadow: var(--shadow-md);
}

.event-cta-band h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: var(--zen-white);
}

.event-cta-band p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--zen-on-dark-soft);
  max-width: 28rem;
}

.event-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 280;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(244, 238, 241, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid color-mix(in srgb, var(--zen-accent) 40%, transparent);
  box-shadow: 0 -8px 32px rgba(var(--zen-shadow-rgb), 0.12);
  transform: translateY(110%);
  transition: transform 0.35s var(--zen-ease, ease);
}

.event-sticky-cta.is-visible {
  display: block;
  transform: translateY(0);
}

.event-sticky-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.event-sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.event-sticky-cta__info strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--zen-primary);
}

.event-sticky-cta__seats {
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.event-sticky-cta .btn {
  flex-shrink: 0;
  min-width: 9rem;
  padding: 0.85rem 1.5rem;
}

body.has-event-sticky {
  padding-bottom: 5rem;
}

@media (min-width: 1100px) {
  .event-sticky-cta {
    display: none !important;
  }

  body.has-event-sticky {
    padding-bottom: 0;
  }
}

/* ── Checkout premium ──────────────────────────────── */

.checkout-hero {
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--zen-accent-soft) 0%, var(--zen-background) 100%);
}

.checkout-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 1.5rem;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  align-items: center;
}

.checkout-hero__visual {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}

.checkout-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  color: var(--zen-primary);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}

.checkout-hero__date {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--zen-text);
}

.checkout-hero__seats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.checkout-hero__note {
  font-size: 0.8125rem;
  color: var(--zen-text);
}

.checkout-steps {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.checkout-steps__item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--zen-white);
  color: var(--zen-text-muted);
  border: 1px solid color-mix(in srgb, var(--zen-border) 25%, transparent);
}

.checkout-steps__item.is-active {
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
  border-color: transparent;
}

.section--checkout {
  padding-top: 1.5rem;
}

.checkout-form--premium {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.checkout-panel {
  background: var(--zen-white);
  border-radius: 1.15rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  box-shadow: var(--shadow-sm);
}

.checkout-panel__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--zen-primary);
  margin-bottom: 1rem;
}

.checkout-panel__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zen-accent) 0%, var(--zen-tertiary) 100%);
  color: var(--zen-primary-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
}

.qty-row--premium {
  background: var(--zen-background);
  border-color: color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.checkout-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.checkout-summary--premium {
  border: 1px solid color-mix(in srgb, var(--zen-accent) 50%, transparent);
  background: linear-gradient(180deg, var(--zen-white) 0%, var(--zen-accent-soft) 100%);
}

.checkout-summary__retreat {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.checkout-summary__retreat img {
  width: 4rem;
  height: 4rem;
  border-radius: 0.65rem;
  object-fit: cover;
}

.checkout-summary__retreat strong {
  display: block;
  color: var(--zen-primary);
  margin-bottom: 0.15rem;
}

.checkout-summary__retreat p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
}

.checkout-summary__lines {
  font-size: 0.9rem;
  color: var(--zen-text);
}

.checkout-summary__fine {
  font-size: 0.75rem;
  color: var(--zen-text-muted);
  margin: 0.75rem 0 0;
}

/* ── Checkout confirmation ───────────────────────── */

.checkout-confirmation-hero {
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 0;
  background: linear-gradient(165deg, color-mix(in srgb, var(--zen-accent) 28%, var(--zen-white)) 0%, var(--zen-accent-soft) 42%, var(--zen-background) 100%);
}

.checkout-confirmation-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 1.5rem;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  align-items: center;
}

.checkout-confirmation-hero__visual {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}

.checkout-confirmation-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-confirmation-hero__badge {
  position: absolute;
  right: -0.35rem;
  bottom: -0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d9a62 0%, #2d7a4c 100%);
  color: var(--zen-white);
  border: 3px solid var(--zen-white);
  box-shadow: 0 8px 20px rgba(45, 120, 72, 0.28);
}

.checkout-confirmation-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  color: var(--zen-primary);
  margin: 0 0 0.85rem;
  line-height: 1.12;
}

.checkout-confirmation-hero__ref {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.85rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--zen-white) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--zen-accent) 45%, transparent);
}

.checkout-confirmation-hero__ref-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.checkout-confirmation-hero__ref-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  color: var(--zen-primary);
  word-break: break-all;
}

.checkout-confirmation-hero__date,
.checkout-confirmation-hero__location {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  color: var(--zen-text);
}

.checkout-confirmation-hero__location {
  font-size: 0.9rem;
  color: var(--zen-text-muted);
}

.checkout-steps--confirmation .checkout-steps__item.is-complete {
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
  border-color: transparent;
}

.checkout-steps--confirmation .checkout-steps__item.is-complete::before {
  content: "✓ ";
}

.section--checkout-confirmation {
  padding-top: 1.5rem;
}

.checkout-confirmation__notice {
  margin-bottom: 1.25rem;
}

.checkout-confirmation-panel__lead {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--zen-text);
}

.checkout-confirmation-panel__note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--zen-text-muted);
}

.checkout-confirmation-panel--payment {
  border-color: color-mix(in srgb, var(--zen-accent) 42%, transparent);
  background: linear-gradient(180deg, var(--zen-white) 0%, color-mix(in srgb, var(--zen-accent-soft) 65%, var(--zen-white)) 100%);
}

.checkout-confirmation-bank-ref {
  margin: 0 0 1.15rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0.95rem;
  background: var(--zen-white);
  border: 1px dashed color-mix(in srgb, var(--zen-primary) 35%, transparent);
}

.checkout-confirmation-bank-ref__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.checkout-confirmation-bank-ref__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.checkout-confirmation-bank-ref__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--zen-primary);
}

.checkout-confirmation-bank-ref__copy.is-copied {
  background: color-mix(in srgb, #3d9a62 18%, var(--zen-white));
  border-color: #7bc49a;
  color: #1f5c34;
}

.checkout-confirmation-bank-ref__deadline {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.checkout-confirmation-bank-card {
  margin-bottom: 0.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0.95rem;
  background: var(--zen-background);
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.checkout-confirmation-bank-card__beneficiary {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--zen-primary);
}

.checkout-confirmation-bank-card__bank {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
}

.checkout-confirmation-bank-card__grid {
  display: grid;
  gap: 0.85rem;
}

.checkout-confirmation-bank-card__key {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
  margin-bottom: 0.2rem;
}

.checkout-confirmation-bank-card__value {
  display: block;
  font-size: 0.95rem;
  color: var(--zen-primary);
  line-height: 1.45;
}

.checkout-confirmation-bank-card__value code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92rem;
  color: var(--zen-primary);
  background: color-mix(in srgb, var(--zen-accent-soft) 70%, var(--zen-white));
  padding: 0.12rem 0.35rem;
  border-radius: 0.3rem;
}

.checkout-confirmation__pay-btn {
  width: 100%;
  max-width: 22rem;
}

.checkout-confirmation-guests {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checkout-confirmation-guest {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  background: var(--zen-background);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.checkout-confirmation-guest__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--zen-primary-dark);
  background: linear-gradient(135deg, var(--zen-accent) 0%, var(--zen-tertiary) 100%);
}

.checkout-confirmation-guest__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.checkout-confirmation-guest__name {
  font-size: 0.98rem;
  color: var(--zen-primary);
}

.checkout-confirmation-guest__meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zen-text);
}

.checkout-confirmation-guest__email {
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
  word-break: break-word;
}

.checkout-confirmation-timeline {
  margin-top: 0.25rem;
}

.checkout-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.checkout-confirmation-trust {
  margin-top: 1.25rem;
}

.checkout-confirmation-summary {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.checkout-confirmation-summary__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.checkout-confirmation-summary__chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zen-text-muted);
}

@media (max-width: 720px) {
  .checkout-confirmation-hero__inner {
    grid-template-columns: 1fr;
  }

  .checkout-confirmation-hero__visual {
    max-width: 6.5rem;
  }

  .checkout-confirmation-actions .btn--lg {
    width: 100%;
  }

  .checkout-confirmation-actions .btn--secondary {
    width: 100%;
    text-align: center;
  }

  .checkout-confirmation-summary {
    position: static;
  }
}

.checkout-form--premium .guest-block-wrap {
  margin-top: 1.35rem;
  margin-bottom: 1rem;
  padding: 1.35rem 1.5rem;
  border-bottom: none;
  border-radius: 1rem;
  background: var(--zen-background);
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
  box-shadow: var(--shadow-sm);
}

.checkout-form--premium .guest-block__title {
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.checkout-form--premium .guest-block__self {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--zen-accent) 8%, var(--zen-background));
  border: 1px solid color-mix(in srgb, var(--zen-accent) 18%, transparent);
}

.checkout-form--premium .guest-block__email-error {
  margin: 0.35rem 0 0;
  color: var(--zen-danger, #9a1b1b);
}

.checkout-form--premium .guest-block__extras {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.guest-block__extras-title {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.guest-addon-list {
  display: grid;
  gap: 0.65rem;
}

.guest-addon-card.radio-card {
  margin-bottom: 0;
}

.guest-addon-card .radio-card__body {
  display: grid;
  gap: 0.2rem;
}

.guest-addon-card__desc {
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  line-height: 1.45;
}

.guest-addon-card__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin-top: 0.15rem;
}

.guest-addon-card__price--free {
  font-style: normal;
  font-weight: 700;
  color: var(--zen-primary);
}

/* ── Form fields (auth, contact, all checkout-form) ─ */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-text);
}

.checkout-form > label:not(.checkbox):not(.radio-card):not(.qty-control):not(.form-field__label),
.checkout-form .form-grid > label:not(.checkbox):not(.radio-card):not(.qty-control),
.checkout-form .form-stack > label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-text);
  margin-bottom: 1rem;
}

.checkout-form .form-grid > label:not(.checkbox):not(.radio-card):not(.qty-control),
.form-field--grid {
  margin-bottom: 0;
}

.form-field__input,
.checkout-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not(.qty-input):not(.visually-hidden),
.checkout-form select,
.checkout-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  border-radius: 0.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--zen-text);
  background: var(--zen-background);
  box-shadow: inset 0 1px 2px rgba(var(--zen-shadow-rgb), 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.checkout-form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2367243a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field__input::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: color-mix(in srgb, var(--zen-text-muted) 75%, transparent);
}

.form-field__input:hover:not(:disabled),
.checkout-form input:not([type="checkbox"]):not([type="radio"]):not(.qty-input):hover:not(:disabled),
.checkout-form select:hover:not(:disabled),
.checkout-form textarea:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--zen-primary) 35%, var(--zen-border));
}

.form-field__input:focus,
.checkout-form input:not([type="checkbox"]):not([type="radio"]):not(.qty-input):focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--zen-primary);
  background: var(--zen-white);
  box-shadow:
    inset 0 1px 2px rgba(var(--zen-shadow-rgb), 0.04),
    0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.form-field__input:disabled,
.checkout-form input:disabled,
.checkout-form select:disabled,
.checkout-form textarea:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ── Missing required field highlight (client-side validation) ─ */

@keyframes field-invalid-attention {
  0%,
  100% {
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--zen-primary) 38%, transparent);
  }

  50% {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--zen-primary) 58%, transparent);
  }
}

.is-field-invalid {
  animation: field-invalid-attention 0.7s ease-in-out 3;
}

.form-field.is-field-invalid,
.questionnaire-field.is-field-invalid,
.checkout-form .form-grid > label.is-field-invalid {
  padding: 0.55rem;
  margin: -0.55rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--zen-primary) 6%, var(--zen-white));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--zen-primary) 42%, transparent);
}

.checkout-form input.is-field-invalid:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.checkout-form select.is-field-invalid,
.checkout-form textarea.is-field-invalid,
.form-field__input.is-field-invalid {
  border-color: var(--zen-primary) !important;
  background: color-mix(in srgb, var(--zen-primary) 4%, var(--zen-white)) !important;
  box-shadow:
    inset 0 1px 2px rgba(var(--zen-shadow-rgb), 0.04),
    0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent) !important;
}

.phone-input.is-field-invalid .phone-input__combo {
  border-radius: 0.65rem;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.phone-input.is-field-invalid .phone-country-picker__trigger,
.phone-input.is-field-invalid .phone-input__field {
  border-color: var(--zen-primary);
  background: color-mix(in srgb, var(--zen-primary) 4%, var(--zen-white));
}

.form-field.is-field-invalid .questionnaire-pills,
.form-field.is-field-invalid .questionnaire-choice-grid,
.questionnaire-field.is-field-invalid .questionnaire-pills,
.questionnaire-field.is-field-invalid .questionnaire-choice-grid {
  padding: 0.4rem;
  margin: -0.4rem;
  border-radius: 0.85rem;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--zen-primary) 45%, transparent);
}

.checkout-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.checkout-form .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  margin: 0.25rem 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.checkout-form .checkbox input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  flex-shrink: 0;
  border: 1.5px solid color-mix(in srgb, var(--zen-border) 55%, transparent);
  border-radius: 0.3rem;
  background: var(--zen-white);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.checkout-form .checkbox input[type="checkbox"]:checked {
  border-color: var(--zen-primary);
  background: var(--zen-primary);
  box-shadow: inset 0 0 0 2px var(--zen-white);
}

.checkout-form .checkbox input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.checkout-form .btn {
  margin-top: 0.25rem;
}

.auth-form-wrap {
  max-width: 28rem;
  margin: 0 auto;
}

.auth-form-card {
  background: var(--zen-white);
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
  box-shadow: var(--shadow-sm);
}

.auth-form-card .checkout-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ── Custom event — options picker ─────────────────── */

.form-section--options {
  background: linear-gradient(
    165deg,
    var(--zen-white) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 38%, var(--zen-white)) 100%
  );
  border-color: color-mix(in srgb, var(--zen-accent) 32%, transparent);
}

.form-section--options .checkout-panel__num {
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
}

.form-section__intro {
  margin: -0.35rem 0 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

.form-subsection + .form-subsection {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.form-subsection__label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--zen-primary);
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.language-pill {
  cursor: pointer;
}

.language-pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.language-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--zen-border) 42%, transparent);
  background: var(--zen-white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--zen-text);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.language-pill:hover span {
  border-color: color-mix(in srgb, var(--zen-primary) 35%, var(--zen-border));
  transform: translateY(-1px);
}

.language-pill:has(input:checked) span {
  border-color: transparent;
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
  box-shadow: 0 8px 22px rgba(var(--zen-shadow-rgb), 0.18);
}

.language-pill:has(input:focus-visible) span {
  outline: none;
  box-shadow:
    0 8px 22px rgba(var(--zen-shadow-rgb), 0.18),
    0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.option-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.option-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem 0.85rem;
  align-items: start;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1.5px solid color-mix(in srgb, var(--zen-border) 32%, transparent);
  border-radius: 1rem;
  background: var(--zen-white);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.option-card:hover {
  border-color: color-mix(in srgb, var(--zen-primary) 28%, var(--zen-border));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.option-card:has(input:checked) {
  border-color: var(--zen-primary);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--zen-accent-soft) 75%, var(--zen-white)) 0%,
    var(--zen-white) 100%
  );
  box-shadow:
    0 10px 28px rgba(var(--zen-shadow-rgb), 0.14),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 80%, transparent);
}

.option-card:has(input:focus-visible) {
  outline: none;
  box-shadow:
    0 10px 28px rgba(var(--zen-shadow-rgb), 0.14),
    0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.option-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.option-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--zen-accent-soft) 80%, var(--zen-white)) 0%,
    color-mix(in srgb, var(--zen-tertiary) 18%, var(--zen-white)) 100%
  );
  color: var(--zen-primary);
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}

.option-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.option-card:has(input:checked) .option-card__icon {
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
}

.option-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.option-card__body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--zen-primary);
}

.option-card__hint {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--zen-text-muted);
}

.option-card__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--zen-border) 50%, transparent);
  color: transparent;
  background: var(--zen-white);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.option-card__check svg {
  width: 0.7rem;
  height: 0.7rem;
}

.option-card:has(input:checked) .option-card__check {
  border-color: var(--zen-primary);
  background: var(--zen-primary);
  color: var(--zen-white);
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .option-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Blog article CTAs ─────────────────────────────── */

.article__header--banner {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--zen-background);
}

.page-hero-banner--article {
  min-height: clamp(32rem, 88svh, 52rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.page-hero-banner--article .page-hero-banner__stage {
  height: clamp(28rem, 82svh, 46rem);
}

.page-hero-banner--article .page-hero-banner__inner {
  min-height: clamp(26rem, 78svh, 42rem);
  align-items: flex-end;
  padding-bottom: clamp(2rem, 4.5vw, 3.25rem);
}

.page-hero-banner--article .page-hero-banner__copy {
  max-width: min(54rem, 96%);
}

.page-hero-banner--article .zen-heading__line.article__title {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  line-height: 1.22;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

/* Category label — gold tertiary (matches page heroes); links must be explicit */
.page-hero-banner--article .zen-heading--light .zen-heading__category,
.page-hero-banner--article .zen-heading__category,
.page-hero-banner--article .zen-heading__category a {
  color: color-mix(in srgb, var(--zen-tertiary) 90%, var(--zen-white));
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.page-hero-banner--article .zen-heading__category a:hover,
.page-hero-banner--article .zen-heading__category a:focus-visible {
  color: var(--zen-tertiary);
}

.article__header--plain .section__label,
.article__header--plain .section__label a {
  color: color-mix(in srgb, var(--zen-tertiary) 38%, var(--zen-primary));
}

.article__header--plain .section__label a:hover,
.article__header--plain .section__label a:focus-visible {
  color: color-mix(in srgb, var(--zen-tertiary) 65%, var(--zen-primary));
}

.article__meta--hero {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-on-dark-soft) 90%, var(--zen-tertiary));
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.article__header-tools {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3rem) 0;
}

.article__header--plain + .article__header-tools {
  padding-top: 0;
}

.article__header--banner + .article__body-shell {
  padding-top: 0;
}

@media (max-width: 767px) {
  .page-hero-banner--article {
    min-height: clamp(26rem, 72svh, 38rem);
  }

  .page-hero-banner--article .page-hero-banner__stage {
    height: clamp(22rem, 68svh, 34rem);
  }

  .page-hero-banner--article .page-hero-banner__inner {
    min-height: clamp(20rem, 64svh, 30rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
  }

  .page-hero-banner--article .zen-heading__line.article__title {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    line-height: 1.26;
  }
}

.article__toc {
  margin: 1.35rem 0 1.5rem;
  padding: 1.15rem 1.35rem 1.2rem;
  border-left: 3px solid var(--zen-accent-deep);
  background: color-mix(in srgb, var(--zen-white) 62%, transparent);
  border-radius: 0 0.75rem 0.75rem 0;
}

.article__toc-label {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zen-primary);
  font-weight: 700;
}

.article__toc-list,
.article__toc-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article__toc-item + .article__toc-item {
  margin-top: 0.15rem;
}

.article__toc-sublist {
  margin-top: 0.35rem;
  padding-left: 0.85rem;
  border-left: 1px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
}

.article__toc-item a {
  display: inline-block;
  padding: 0.28rem 0;
  color: var(--zen-text);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.article__toc-item a:hover,
.article__toc-item a:focus-visible {
  color: var(--zen-primary);
}

.article__toc-item--h1 a {
  font-family: var(--font-display);
  font-size: 1rem;
}

.article__toc-item--h3 a {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--zen-text) 88%, var(--zen-text-muted));
}

.article__content.prose :is(h1, h2, h3) {
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.article__body-shell {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.article__body-shell.page-shell {
  padding-left: clamp(1.75rem, 5vw, 4rem);
  padding-right: clamp(1.75rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3.25rem);
}

.article__grid.page-shell__grid {
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18.5rem);
  gap: clamp(2.75rem, 5vw, 4.5rem);
}

.article__grid .page-shell__main.article__content {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow-x: visible;
}

.article__content.prose {
  max-width: none;
  padding: 0 clamp(0.25rem, 1.5vw, 1rem) 0 0;
  font-size: 1.125rem;
  line-height: 1.82;
  letter-spacing: 0.008em;
}

.article__content.prose > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.78;
  color: color-mix(in srgb, var(--zen-text) 88%, var(--zen-text-muted));
}

.article__content.prose h2:not(:first-child) {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 30%, transparent);
}

.article__content.prose img {
  border-radius: 0.65rem;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--zen-primary) 8%, transparent);
}

.article__footer-inner {
  max-width: var(--max-width);
}

.article__aside .page-aside-card .btn {
  width: 100%;
}

.blog-cta-sidebar.page-aside-card,
.blog-cta-sidebar__more {
  min-width: 0;
  overflow: hidden;
}

.blog-cta-sidebar__featured {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.blog-cta-sidebar__body {
  min-width: 0;
}

.blog-cta-sidebar.page-aside-card > .btn,
.blog-cta-sidebar.page-aside-card .blog-cta-sidebar__body .btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.25;
}

.blog-cta-sidebar__image {
  display: block;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-cta-sidebar__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s var(--zen-ease-out);
}

.blog-cta-sidebar__image:hover img {
  transform: scale(1.04);
}

.blog-cta-sidebar__date {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zen-primary);
}

.blog-cta-sidebar__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.25;
}

.blog-cta-sidebar__title a {
  text-decoration: none;
  color: var(--zen-primary);
}

.blog-cta-sidebar__meta,
.blog-cta-sidebar__price {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  line-height: 1.5;
}

.blog-cta-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blog-cta-sidebar__item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
  min-width: 0;
}

.blog-cta-sidebar__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-cta-sidebar__item-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  width: 100%;
}

.blog-cta-sidebar__item .retreat-card__date {
  width: 3.5rem;
  height: 3.5rem;
}

.blog-cta-sidebar__item .retreat-card__day {
  font-size: 1.35rem;
}

.blog-cta-sidebar__item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.blog-cta-sidebar__item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  color: var(--zen-primary);
  overflow-wrap: anywhere;
}

.blog-cta-sidebar__item-price {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zen-text-muted);
  line-height: 1.35;
}

.page-aside-card .blog-cta-sidebar__item-btn {
  margin: 0.35rem 0 0;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
}

.blog-cta-sidebar__all {
  display: inline-block;
  margin-top: 1rem;
}

.blog-cta-mid-wrap {
  margin: 2.5rem 0;
}

/* Inside article prose, page-shell heading colors override event-cta-band — reset */
.blog-cta-mid-wrap .blog-cta-mid.event-cta-band,
.page-shell__main.prose .blog-cta-mid.event-cta-band {
  background: linear-gradient(135deg, var(--zen-primary-dark) 0%, var(--zen-primary) 50%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
}

.blog-cta-mid-wrap .blog-cta-mid.event-cta-band h3,
.page-shell__main.prose .blog-cta-mid.event-cta-band h3 {
  color: var(--zen-white);
  margin-top: 0;
}

.blog-cta-mid-wrap .blog-cta-mid.event-cta-band p,
.page-shell__main.prose .blog-cta-mid.event-cta-band p {
  color: var(--zen-on-dark-soft);
}

.blog-cta-mid-wrap .blog-cta-mid.event-cta-band strong,
.page-shell__main.prose .blog-cta-mid.event-cta-band strong {
  color: var(--zen-white);
}

.blog-cta-mid.event-cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  overflow: hidden;
  align-items: stretch;
}

.blog-cta-mid--no-image.event-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.75rem 2rem;
}

.blog-cta-mid__visual {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border-radius: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.blog-cta-mid__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-cta-mid__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 0.35rem 0.5rem 0.35rem 0;
  min-height: 14rem;
}

.blog-cta-mid__body .event-cta-band__copy {
  flex: 1 1 auto;
}

.blog-cta-mid__body .event-cta-band__copy p {
  max-width: none;
}

.blog-cta-mid__meta {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--zen-on-dark-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.blog-cta-mid-wrap .blog-cta-mid__actions,
.page-shell__main.prose .blog-cta-mid__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.blog-cta-mid-wrap .blog-cta-mid__actions .btn,
.page-shell__main.prose .blog-cta-mid__actions .btn {
  width: auto;
  max-width: none;
  flex: 0 1 auto;
  white-space: nowrap;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
}

.blog-cta-calendar {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(
    165deg,
    var(--zen-white) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 45%, var(--zen-white)) 100%
  );
  border-radius: 1.35rem;
  border: 1px solid color-mix(in srgb, var(--zen-accent) 35%, transparent);
  box-shadow: var(--shadow-sm);
}

.blog-cta-calendar__header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.blog-cta-calendar__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: var(--zen-primary);
}

.blog-cta-calendar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.15rem;
}

.blog-cta-calendar__card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--zen-white);
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 22%, transparent);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-cta-calendar__hero {
  position: relative;
}

.blog-cta-calendar__hero .blog-cta-calendar__image {
  display: block;
}

.blog-cta-calendar__hero .blog-cta-calendar__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.blog-cta-calendar__hero .blog-cta-calendar__date {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: color-mix(in srgb, var(--zen-primary) 68%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(var(--zen-shadow-rgb), 0.22);
}

.blog-cta-calendar__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-cta-calendar__card--sold-out {
  opacity: 0.72;
}

.blog-cta-calendar__card-copy {
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
}

.blog-cta-calendar__card-copy > .badge {
  align-self: flex-start;
  width: fit-content;
}

.blog-cta-calendar__card-copy h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.blog-cta-calendar__card-copy h3 a {
  text-decoration: none;
  color: var(--zen-primary);
}

.blog-cta-calendar__when,
.blog-cta-calendar__where {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.blog-cta-calendar__price {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.blog-cta-calendar__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.btn--xs {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.blog-cta-calendar__actions .btn--xs {
  flex: 0 1 auto;
  white-space: nowrap;
}

.blog-cta-calendar__footer {
  margin: 1.75rem 0 0;
  text-align: center;
}

.blog-cta-calendar__empty {
  text-align: center;
  color: var(--zen-text-muted);
}

@media (max-width: 1099px) {
  .article__grid.page-shell__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "main"
      "aside";
  }

  .article__content.prose {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .blog-cta-mid.event-cta-band {
    grid-template-columns: 1fr;
  }

  .blog-cta-mid__visual {
    min-height: 11rem;
  }

  .blog-cta-mid__body {
    min-height: 0;
    padding: 1.35rem 1.5rem;
  }

  .blog-cta-mid-wrap .blog-cta-mid__actions,
  .page-shell__main.prose .blog-cta-mid__actions {
    flex-wrap: wrap;
  }

  .blog-cta-mid__body {
    padding: 0;
  }

  .blog-cta-calendar__actions {
    flex-wrap: wrap;
  }

}

/* ── Responsive ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .page-media-frame img,
  .page-hero--image .page-hero__bg {
    animation: none;
    transform: none;
  }

  .page-blocks .e-n-accordion-item [role="region"],
  .page-blocks details > :not(summary),
  .faq > :not(summary),
  .prose details > :not(summary) {
    animation: none;
  }
}

@media (max-width: 900px) {
  .page-shell__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "aside";
  }

  .page-shell__aside {
    position: static;
    max-width: none;
  }

  .page-blocks .wp-block--gallery {
    grid-template-columns: 1fr;
  }

  .wp-team-card--featured .wp-team-card__link {
    grid-template-columns: 1fr;
  }

  .wp-team-card--featured .wp-team-card__body {
    padding-left: 0;
    padding-top: 0;
  }

  .page-blocks--team .wp-team-card--featured .wp-team-card__photo-wrap {
    padding: 1.15rem 1.15rem 0;
  }

  .page-blocks--team .wp-team-card__photo-frame,
  .page-blocks--team .wp-team-card__photo-frame--featured {
    --team-photo-tilt: 0deg;
  }

  .page-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-cta-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .event-cta-band .btn {
    width: 100%;
  }

  .checkout-hero__inner {
    grid-template-columns: 1fr;
  }

  .checkout-hero__visual {
    max-height: 10rem;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 640px) {
  .event-cta__actions {
    flex-direction: column;
  }

  .event-cta__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Team profile page ─────────────────────────────── */

.team-profile__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.team-profile__photo {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.team-profile__name {
  font-family: var(--font-display, 'Marcellus', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 0.75rem;
}

.team-profile__excerpt {
  color: var(--color-muted, #5c4f4a);
  font-size: 1.05rem;
  line-height: 1.6;
}

.team-profile__bio {
  max-width: 68ch;
}

.team-profile__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.team-profile__events {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (max-width: 900px) {
  .team-profile__hero {
    grid-template-columns: 1fr;
  }
}

/* ── Account message thread ───────────────────────── */

.account-message-page .account-message-body p {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.7;
  color: var(--zen-text);
}

.account-message-reply__date {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.account-message-notice {
  margin-bottom: 1.25rem;
}

.account-order-page .account-order-meta {
  margin-top: 1.25rem;
}

.account-order-ref {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.account-order-event-link {
  margin: 0 0 1rem;
}

.account-order-tickets {
  margin-top: 0.5rem;
}

.account-order-ticket {
  margin-bottom: 0;
}

.account-order-notice {
  margin-bottom: 1.25rem;
}

.account-order-refund__deadline {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-accent) 22%, transparent);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

.account-order-refund__form {
  margin-top: 0;
}

.account-order-refund__details {
  margin-bottom: 0;
}

.account-order-refund__ticket-list {
  display: grid;
  gap: 0.65rem;
}

.account-order-refund__ticket.radio-card {
  margin-bottom: 0;
}

.account-order-refund__ticket-meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  line-height: 1.45;
}

.account-order-refund__details > label:not(.checkbox) {
  margin-bottom: 1rem;
}

.account-order-refund__details .checkbox {
  margin-bottom: 1.35rem;
}

.account-order-refund__details .btn {
  margin-top: 0.15rem;
}

/* ── Custom event request follow-up ───────────────── */

.custom-request-page .page-shell__grid {
  align-items: start;
}

.custom-request-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.custom-request-summary__status {
  margin: 0 0 1.25rem;
}

.custom-request-summary__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.custom-request-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.custom-request-timeline__step {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  position: relative;
  padding-bottom: 1.1rem;
}

.custom-request-timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1.1rem;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--zen-border) 35%, transparent);
}

.custom-request-timeline__step.is-complete:not(:last-child)::before,
.custom-request-timeline__step.is-active:not(:last-child)::before {
  background: linear-gradient(180deg, var(--zen-primary) 0%, color-mix(in srgb, var(--zen-border) 35%, transparent) 100%);
}

.custom-request-timeline__marker {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  background: var(--zen-white);
  position: relative;
  z-index: 1;
}

.custom-request-timeline__step.is-complete .custom-request-timeline__marker,
.custom-request-timeline__step.is-active .custom-request-timeline__marker {
  border-color: var(--zen-primary);
  background: var(--zen-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.custom-request-timeline__label {
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  line-height: 1.45;
}

.custom-request-timeline__step.is-active .custom-request-timeline__label,
.custom-request-timeline__step.is-complete .custom-request-timeline__label {
  color: var(--zen-primary);
  font-weight: 600;
}

.custom-request-quote {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, var(--zen-white) 0%, var(--zen-accent-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--zen-accent) 45%, transparent);
}

.custom-request-quote__label,
.custom-request-quote__meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.custom-request-quote__amount {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--zen-primary);
}

.custom-request-card {
  margin-bottom: 1.25rem;
}

.custom-request-card--response {
  border-color: color-mix(in srgb, var(--zen-accent) 35%, transparent);
  background: linear-gradient(180deg, var(--zen-white) 0%, color-mix(in srgb, var(--zen-accent-soft) 65%, var(--zen-white)) 100%);
}

.custom-request-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
}

.custom-request-meta__item {
  margin: 0;
}

.custom-request-meta__item--wide {
  grid-column: 1 / -1;
}

.custom-request-meta dt {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.custom-request-meta dd {
  margin: 0;
  color: var(--zen-primary);
  font-weight: 600;
}

.custom-request-meta__pre {
  white-space: pre-wrap;
  font-weight: 500;
  line-height: 1.6;
}

.custom-request-message,
.custom-request-notes {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.custom-request-message h3,
.custom-request-dates h3,
.custom-request-notes h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--zen-primary);
}

.custom-request-message p,
.custom-request-notes p {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.7;
  color: var(--zen-text);
}

.custom-request-options {
  display: grid;
  gap: 0.85rem;
}

.custom-request-option {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: var(--zen-background);
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
}

.custom-request-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  background: var(--zen-white);
  color: var(--zen-primary);
  box-shadow: var(--shadow-sm);
}

.custom-request-option__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.custom-request-option__body {
  display: grid;
  gap: 0.2rem;
}

.custom-request-option__body strong {
  color: var(--zen-primary);
}

.custom-request-option__body span {
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  line-height: 1.5;
}

.custom-request-response-quote {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}

.custom-request-response-quote strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--zen-primary);
}

.custom-request-response-quote small {
  color: var(--zen-text-muted);
}

.custom-request-dates__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-request-dates__list li {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 22%, transparent);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-primary);
}

.custom-request-notice {
  margin-bottom: 1.25rem;
}

.custom-request-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.custom-request-list {
  display: grid;
  gap: 1rem;
}

.custom-request-card--list {
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
  box-shadow: var(--shadow-sm);
}

.custom-request-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.custom-request-card__date {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.custom-request-card__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--zen-primary);
}

.custom-request-card__excerpt {
  margin: 0.45rem 0 0;
  color: var(--zen-text-muted);
  line-height: 1.55;
}

.custom-request-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.custom-request-card__chip {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--zen-accent-soft);
  font-size: 0.8125rem;
  color: var(--zen-primary);
}

.custom-request-card__link {
  display: inline-block;
  margin-top: 1rem;
}

.custom-request-empty {
  text-align: center;
  padding: 2rem 1.5rem;
}

.custom-request-empty p {
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .custom-request-meta {
    grid-template-columns: 1fr;
  }

  .custom-request-card__head {
    flex-direction: column;
  }
}

/* ── Account questionnaire ─────────────────────────── */

.account-questionnaire-page .page-shell__grid {
  align-items: start;
}

.questionnaire-summary__retreat {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--zen-primary);
  line-height: 1.35;
}

.questionnaire-summary__date {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
}

.questionnaire-progress {
  margin: 1.35rem 0 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 22%, transparent);
}

.questionnaire-progress__label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--zen-primary);
}

.questionnaire-progress__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.questionnaire-progress__item {
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--zen-text);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.questionnaire-progress__item:hover {
  background: color-mix(in srgb, var(--zen-accent-soft) 55%, transparent);
  color: var(--zen-primary);
  transform: translateX(2px);
}

.questionnaire-progress__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zen-accent) 0%, var(--zen-tertiary) 100%);
  color: var(--zen-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.questionnaire-aside-card {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--zen-accent-soft) 45%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-accent) 28%, transparent);
}

.questionnaire-aside-card h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--zen-primary);
}

.questionnaire-aside-list {
  margin: 0;
}

.questionnaire-privacy {
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: var(--zen-background);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.questionnaire-privacy p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

.questionnaire-notice {
  margin-bottom: 1.25rem;
}

.questionnaire-team-note {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.questionnaire-team-note p {
  margin: 0;
}

.questionnaire-team-note p + p {
  margin-top: 0.45rem;
}

.questionnaire-required-note {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.questionnaire-required {
  color: var(--zen-primary);
}

.questionnaire-panel {
  scroll-margin-top: 6rem;
}

.questionnaire-panel--accent {
  background: linear-gradient(
    165deg,
    var(--zen-white) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 34%, var(--zen-white)) 100%
  );
  border-color: color-mix(in srgb, var(--zen-accent) 28%, transparent);
}

.questionnaire-panel--accent .checkout-panel__num {
  background: linear-gradient(135deg, var(--zen-primary) 0%, var(--zen-primary-light) 100%);
  color: var(--zen-white);
}

.questionnaire-form-grid {
  gap: 1rem 1.25rem;
}

.questionnaire-form-grid .questionnaire-field {
  margin-bottom: 0;
}

.questionnaire-field + .questionnaire-field {
  margin-top: 0.15rem;
}

.questionnaire-field--stacked {
  margin-bottom: 0;
}

.questionnaire-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.questionnaire-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.questionnaire-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--zen-border) 32%, transparent);
  border-radius: 0.95rem;
  background: var(--zen-white);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.questionnaire-choice:hover {
  border-color: color-mix(in srgb, var(--zen-primary) 28%, var(--zen-border));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.questionnaire-choice:has(input:checked) {
  border-color: var(--zen-primary);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--zen-accent-soft) 75%, var(--zen-white)) 0%,
    var(--zen-white) 100%
  );
  box-shadow:
    0 10px 28px rgba(var(--zen-shadow-rgb), 0.12),
    inset 0 1px 0 color-mix(in srgb, var(--zen-white) 80%, transparent);
}

.questionnaire-choice:has(input:focus-visible) {
  outline: none;
  box-shadow:
    0 10px 28px rgba(var(--zen-shadow-rgb), 0.12),
    0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.questionnaire-choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.questionnaire-choice__body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-text);
  line-height: 1.35;
}

.questionnaire-choice__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  color: transparent;
  background: var(--zen-white);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.questionnaire-choice__check svg {
  width: 0.7rem;
  height: 0.7rem;
}

.questionnaire-choice:has(input:checked) .questionnaire-choice__check {
  border-color: var(--zen-primary);
  background: var(--zen-primary);
  color: var(--zen-white);
}

.questionnaire-other-explain {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  background: var(--zen-background);
  border: 1px dashed color-mix(in srgb, var(--zen-primary) 24%, var(--zen-border));
}

.questionnaire-other-explain__label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-text);
}

.questionnaire-submit {
  margin-top: 0.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-white)) 0%,
    var(--zen-white) 100%
  );
  border: 1px solid color-mix(in srgb, var(--zen-accent) 35%, transparent);
  box-shadow: var(--shadow-sm);
}

.questionnaire-retention {
  margin: 0.85rem 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .questionnaire-choice-grid {
    grid-template-columns: 1fr;
  }

  .questionnaire-progress {
    display: none;
  }
}

/* ── Account occurrence hub ────────────────────────── */

.account-occurrence-page .page-shell__grid {
  align-items: start;
}

.account-occurrence-hero__tag {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zen-accent-deep);
}

.account-occurrence-summary__visual {
  margin: -0.25rem -0.25rem 1rem;
  border-radius: 0.95rem 0.95rem 0.35rem 0.35rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.account-occurrence-summary__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-occurrence-summary__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--zen-primary);
  line-height: 1.35;
}

.account-occurrence-meta {
  margin-bottom: 1rem;
}

.account-occurrence-meta__address {
  white-space: pre-line;
}

.account-occurrence-notice {
  margin-bottom: 1.25rem;
}

.account-occurrence-updates {
  border-color: color-mix(in srgb, var(--zen-accent) 32%, transparent);
  background: linear-gradient(
    165deg,
    var(--zen-white) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 42%, var(--zen-white)) 100%
  );
}

.account-occurrence-updates__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.account-occurrence-updates__latest {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
}

.account-occurrence-empty {
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  text-align: center;
  background: color-mix(in srgb, var(--zen-background) 70%, var(--zen-white));
  border: 1px dashed color-mix(in srgb, var(--zen-border) 35%, transparent);
}

.account-occurrence-empty p {
  margin: 0;
  color: var(--zen-text-muted);
}

.account-occurrence-feed {
  display: grid;
  gap: 1rem;
}

.account-occurrence-feed__item {
  position: relative;
  padding: 1.1rem 1.15rem 1.1rem 1.35rem;
  border-radius: 1rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 22%, transparent);
  box-shadow: var(--shadow-sm);
}

.account-occurrence-feed__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--zen-primary) 0%, var(--zen-accent) 100%);
}

.account-occurrence-feed__meta time {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--zen-primary);
}

.account-occurrence-feed__body {
  margin-top: 0.55rem;
  line-height: 1.65;
  color: var(--zen-text);
}

.account-occurrence-info__body {
  line-height: 1.65;
}

.account-occurrence-guides-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.account-occurrence-guides-list li {
  display: grid;
  gap: 0.1rem;
}

.account-occurrence-guides-list li strong {
  color: var(--zen-text);
}

.account-occurrence-guides-list li span {
  color: var(--zen-text-muted);
  font-size: 0.92rem;
}

.account-occurrence-guides-card {
  border-color: color-mix(in srgb, var(--zen-accent) 28%, transparent);
  background: linear-gradient(
    165deg,
    var(--zen-white) 0%,
    color-mix(in srgb, var(--zen-accent-soft) 36%, var(--zen-white)) 100%
  );
}

.account-occurrence-guides-card__intro {
  margin: 0 0 1.25rem;
}

.account-occurrence-guides-card__grid {
  --guides-gap: 1.25rem;
  margin: 0;
  grid-template-columns: repeat(
    auto-fit,
    minmax(max(9.5rem, calc((100% - (2 * var(--guides-gap))) / 3)), 1fr)
  );
  gap: var(--guides-gap);
}

.account-occurrence-guides-card .guide-card {
  align-items: center;
  text-align: center;
}

.account-occurrence-guides-card .guide-card__media {
  width: 6.75rem;
  height: 6.75rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--zen-accent) 55%, var(--zen-white));
  box-shadow: 0 10px 24px rgba(var(--zen-shadow-rgb), 0.12);
}

.account-occurrence-guides-card .guide-card__photo-link,
.account-occurrence-guides-card .guide-card__photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.account-occurrence-guides-card .guide-card__photo-link:hover .guide-card__photo,
.account-occurrence-guides-card .guide-card__photo-link:focus-visible .guide-card__photo {
  transform: scale(1.05);
}

.account-occurrence-guides-card .guide-card__body {
  width: 100%;
}

.account-occurrence-guides-card .form-note {
  margin: 1.25rem 0 0;
}

.account-occurrence-tickets {
  display: grid;
  gap: 1rem;
}

.account-occurrence-ticket__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.account-occurrence-review__form + .account-occurrence-review__form {
  margin-top: 1.25rem;
}

.account-occurrence-review__guest {
  margin: 0 0 1rem;
  color: var(--zen-text-muted);
}

.account-occurrence-review .checkout-panel {
  margin-bottom: 0;
}

.star-rating-field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.star-rating-field__label {
  font-weight: 600;
  color: var(--zen-primary);
}

.star-rating-input {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.star-rating-input__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0.45rem;
  background: transparent;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  color: color-mix(in srgb, var(--zen-text-muted) 45%, #d1d5db);
  transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.star-rating-input__star:hover,
.star-rating-input__star.is-active {
  color: #f4b400;
}

.star-rating-input__star:hover {
  transform: scale(1.08);
}

.star-rating-input__star:focus-visible {
  outline: 2px solid color-mix(in srgb, #f4b400 70%, var(--zen-primary));
  outline-offset: 2px;
}

.star-rating-input__star.is-active {
  text-shadow: 0 1px 0 rgba(180, 120, 0, 0.25);
}

/* ── Account dashboard ───────────────────────────── */

.account-dashboard-page .page-shell__grid {
  align-items: start;
}

.account-dashboard-profile__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--zen-primary);
}

.account-dashboard-profile__email {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  word-break: break-word;
}

.account-dashboard-stats {
  margin-bottom: 0;
}

.account-dashboard-profile__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 22%, transparent);
}

.account-dashboard-profile__actions > form {
  width: 100%;
  margin: 0;
}

.account-dashboard-profile__actions .btn {
  margin: 0;
}

.account-dashboard-signout {
  margin: 0;
}

.account-dashboard-signin p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
  color: var(--zen-text-muted);
}

.account-dashboard-signin__actions {
  display: grid;
  gap: 0.65rem;
}

.account-dashboard-signin__actions--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-dashboard-links h3 {
  margin-bottom: 1rem;
}

.account-dashboard-nav {
  display: grid;
  gap: 0.55rem;
}

.account-dashboard-nav__item {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  text-decoration: none;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 22%, transparent);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.account-dashboard-nav__item:hover {
  border-color: color-mix(in srgb, var(--zen-primary) 28%, var(--zen-border));
  background: color-mix(in srgb, var(--zen-accent-soft) 40%, var(--zen-white));
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}

.account-dashboard-nav__title {
  font-weight: 600;
  color: var(--zen-primary);
}

.account-dashboard-nav__desc {
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
  line-height: 1.4;
}

.account-dashboard-notice {
  margin-bottom: 1.25rem;
}

.account-dashboard-section + .account-dashboard-section {
  margin-top: 1.25rem;
}

.account-dashboard-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.account-dashboard-section__head .content-card__title {
  margin-bottom: 0;
}

.account-dashboard-orders,
.account-dashboard-tickets {
  display: grid;
  gap: 1rem;
}

.account-dashboard-ticket__actions,
.account-dashboard-order + .account-dashboard-order {
  /* spacing via list gap */
}

.account-dashboard-ticket__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.account-dashboard-empty {
  padding: 1.35rem 1.15rem;
  border-radius: 1rem;
  text-align: center;
  background: color-mix(in srgb, var(--zen-background) 70%, var(--zen-white));
  border: 1px dashed color-mix(in srgb, var(--zen-border) 35%, transparent);
}

.account-dashboard-empty p {
  margin: 0 0 1rem;
  color: var(--zen-text-muted);
}

.account-dashboard-guest p {
  margin-bottom: 1.25rem;
  color: var(--zen-text-muted);
  line-height: 1.6;
}