:root {
  /* Rosewood Sunset — Zen Retreat luxury palette */
  --zen-primary: #67243a;
  --zen-primary-dark: #4a1a2a;
  --zen-primary-light: #8d3552;
  --zen-background: #f4eef1;
  --zen-background-alt: #ebe3e8;
  --zen-surface: #ffffff;
  --zen-accent: #e9b3cb;
  --zen-accent-soft: #f8e6ef;
  --zen-accent-deep: #a86b7f;
  --zen-tertiary: #ffd086;
  --zen-warm: #ffd086;
  --zen-glow: #fcf591;
  --zen-text: #434a4a;
  --zen-text-muted: #564f53;
  --zen-on-dark: #ffffff;
  --zen-on-dark-soft: #f5edf2;
  --zen-secondary: #151515;
  --zen-border: #d4c8ce;
  --zen-white: #ffffff;
  --zen-shadow-rgb: 103, 36, 58;
  --font-display: "Marcellus", Georgia, serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-body: "Lato", system-ui, sans-serif;
  --space-section: clamp(3.5rem, 8vw, 6.5rem);
  --max-width: 76rem;
  --radius: 1rem;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(var(--zen-shadow-rgb), 0.07);
  --shadow-md: 0 8px 32px rgba(var(--zen-shadow-rgb), 0.11);
  --shadow-lg: 0 16px 48px rgba(var(--zen-shadow-rgb), 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--zen-text);
  background: var(--zen-background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--zen-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--zen-primary-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--zen-primary);
  line-height: 1.2;
}

/* ── Header ─────────────────────────────────────────── */

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo__img {
  height: 2.75rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 0.25rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav > a,
.site-nav__trigger {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--zen-text);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav__trigger:hover,
.site-nav__dropdown.is-open .site-nav__trigger {
  color: var(--zen-primary);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.25rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 14rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 25%, transparent);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  z-index: 120;
}

.site-nav__dropdown.is-open .site-nav__menu {
  display: flex;
  flex-direction: column;
}

.site-nav__menu a {
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--zen-text);
}

.site-nav__menu a:hover,
.site-nav__menu a.is-active {
  background: var(--zen-accent-soft);
  color: var(--zen-primary);
}

.site-header__account {
  text-decoration: none;
  color: var(--zen-primary);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid color-mix(in srgb, var(--zen-white) 15%, transparent);
  padding-top: 1.5rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1.25rem;
  margin: 0;
}

.site-footer__social a {
  display: inline;
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
}

.event-meta {
  margin: 0 0 1rem;
}

.event-meta div {
  margin-bottom: 0.75rem;
}

.event-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zen-text-muted);
  margin-bottom: 0.15rem;
}

.event-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--zen-primary);
}

.event-booking__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.event-booking__select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.event-booking__from {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.event-booking__cta {
  width: 100%;
  text-align: center;
}

.sales-countdown {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--zen-accent, #c45c26) 10%, white);
  border: 1px solid color-mix(in srgb, var(--zen-accent, #c45c26) 25%, transparent);
}

.sales-countdown__heading {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zen-primary);
}

.sales-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.sales-countdown__unit {
  text-align: center;
  padding: 0.5rem 0.35rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
}

.sales-countdown__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--zen-accent, #c45c26);
  font-variant-numeric: tabular-nums;
}

.sales-countdown__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zen-primary) 70%, transparent);
}

.sales-countdown__note {
  margin: 0.75rem 0 0;
}

.sales-closed-notice {
  display: inline-block;
  margin: 0 0 1rem;
}

.event-cta--hero .sales-countdown {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.event-cta--hero .sales-countdown__heading,
.event-cta--hero .sales-countdown__label {
  color: rgba(255, 255, 255, 0.92);
}

.event-cta--hero .sales-countdown__value {
  color: #fff;
}

.event-cta--hero .sales-countdown__unit {
  background: rgba(0, 0, 0, 0.18);
}

.event-cta--hero .sales-countdown__note {
  color: rgba(255, 255, 255, 0.82);
}

.event-description.prose h2,
.event-description.prose h3 {
  font-size: 1.15rem;
  margin-top: 1.25rem;
}

.event-description.prose {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.event-description.prose :is(table, pre, iframe, video) {
  max-width: 100%;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1.25rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.guide-card__media {
  overflow: hidden;
}

.guide-card__photo-link {
  display: block;
  text-decoration: none;
}

.guide-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s var(--zen-ease-out);
}

.guide-card__photo-link:hover .guide-card__photo,
.guide-card__photo-link:focus-visible .guide-card__photo {
  transform: scale(1.03);
}

.guide-card__body {
  text-align: center;
}

.guide-card__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.2;
}

.guide-card__name a {
  color: var(--zen-primary);
  text-decoration: none;
}

.guide-card__name a:hover {
  text-decoration: underline;
}

.guide-card__role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--zen-text-muted);
  line-height: 1.45;
}

.event-main .guides-grid .guide-card {
  align-items: center;
}

.event-main .guides-grid .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);
}

.event-main .guides-grid .guide-card__photo-link,
.event-main .guides-grid .guide-card__photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.event-main .guides-grid .guide-card__photo-link:hover .guide-card__photo,
.event-main .guides-grid .guide-card__photo-link:focus-visible .guide-card__photo {
  transform: scale(1.05);
}

.related-retreats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.related-retreat-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--zen-ease-out);
}

.related-retreat-card:hover {
  transform: translateY(-2px);
}

.related-retreat-card__media {
  overflow: hidden;
}

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

.related-retreat-card:hover .related-retreat-card__media img {
  transform: scale(1.03);
}

.related-retreat-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.9rem;
}

.related-retreat-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--zen-primary);
}

.related-retreat-card__summary {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--zen-text-muted);
}

.related-retreat-card__price {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--zen-text);
}

/* Header responsive rules live in zen-surface.css */

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem;
  background: var(--zen-white);
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--zen-border) 30%, transparent);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.15rem;
  border-radius: 50%;
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher a:hover {
  transform: translateY(-1px);
}

.lang-switcher__flag {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.lang-switcher a.is-active .lang-switcher__flag {
  border-color: var(--zen-primary);
  box-shadow: 0 0 0 1px var(--zen-white), 0 2px 8px rgba(0, 0, 0, 0.18);
}

.locale-flags {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  vertical-align: middle;
}

.locale-flags__mark {
  color: var(--zen-primary-light);
  font-weight: 700;
}

.locale-flags__set {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.locale-flags__icon {
  display: block;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.locale-flags--xs .locale-flags__icon {
  width: 1rem;
  height: 1rem;
}

.locale-flags--sm .locale-flags__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.locale-flags--md .locale-flags__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.locale-flags--inline {
  margin-left: 0.35rem;
}

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
  background: var(--zen-primary);
  color: color-mix(in srgb, var(--zen-white) 85%, var(--zen-accent));
  padding: var(--space-section) 1.5rem 2rem;
  margin-top: var(--space-section);
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 {
  color: var(--zen-white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.site-footer a {
  display: block;
  color: color-mix(in srgb, var(--zen-white) 75%, transparent);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: var(--zen-white);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.site-footer__logo img {
  height: 2.5rem;
  width: auto;
  max-width: 10rem;
}

.site-footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  margin: 0.5rem 0;
  color: var(--zen-accent);
}

.site-footer__small {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--zen-on-dark) 88%, var(--zen-accent));
  margin: 0;
}

.site-footer__copy {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--zen-on-dark) 82%, var(--zen-accent));
  margin: 0;
}

/* ── Sections ───────────────────────────────────────── */

.section {
  padding: var(--space-section) 1.5rem;
}

.section--tight {
  padding-top: calc(var(--space-section) * 0.6);
}

.section--alt {
  background: var(--zen-background-alt);
}

.section--dark {
  background: linear-gradient(160deg, var(--zen-primary-dark) 0%, var(--zen-primary) 55%, var(--zen-primary-light) 100%);
  color: color-mix(in srgb, var(--zen-white) 88%, var(--zen-accent));
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zen-accent-deep);
  margin: 0 0 0.5rem;
}

.section__title {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  margin: 0 0 0.75rem;
}

.section__title--light {
  color: var(--zen-white);
}

.section__lead {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--zen-text);
}

.section__lead--light {
  color: var(--zen-on-dark-soft);
}

.section__cta {
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
}

.section__cta a {
  text-decoration: none;
}

/* ── Hero (Home) ────────────────────────────────────── */

.hero--home {
  position: relative;
  min-height: clamp(28rem, 85vh, 42rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(103, 36, 58, 0.72) 0%, rgba(103, 36, 58, 0.35) 45%, rgba(244, 238, 241, 0.15) 100%),
    url("/assets/media/2025/12/04retreat-scaled.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(244, 238, 241, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 46rem;
}

.hero__eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zen-accent-deep);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--zen-primary);
  margin: 0 0 1.25rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--zen-primary-dark);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--zen-text);
}

.hero__trust {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  letter-spacing: 0.02em;
}

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

/* ── Page hero (inner pages) ────────────────────────── */

.page-hero {
  padding: calc(var(--space-section) * 0.75) 1.5rem calc(var(--space-section) * 0.5);
  background: linear-gradient(180deg, var(--zen-accent-soft) 0%, var(--zen-background) 100%);
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.page-hero--image {
  position: relative;
  color: var(--zen-white);
  background: var(--zen-primary-dark);
  border-bottom: none;
  overflow: hidden;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(103, 36, 58, 0.5), rgba(74, 26, 42, 0.88));
  z-index: 1;
}

.page-hero--image .section__inner {
  position: relative;
  z-index: 2;
}

.page-hero--image .page-hero__title,
.page-hero--image .section__label {
  color: var(--zen-white);
}

.page-hero--image .page-hero__lead {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero--compact {
  padding-bottom: 2rem;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 0.75rem;
}

.page-hero__lead {
  font-size: 1.125rem;
  color: var(--zen-text);
  margin: 0;
  max-width: 40rem;
}

.page-content {
  padding: var(--space-section) 0;
}

.page-content .prose {
  max-width: 46rem;
}

.content-card {
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.content-card__title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

/* ── Event hero ─────────────────────────────────────── */

.event-hero {
  position: relative;
  padding: calc(var(--space-section) * 0.85) 1.5rem;
  background:
    linear-gradient(160deg, rgba(103, 36, 58, 0.9) 0%, rgba(74, 26, 42, 0.96) 100%);
  color: var(--zen-white);
  overflow: hidden;
}

.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.event-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  min-width: 0;
}

.event-hero .section__label {
  color: var(--zen-accent);
}

.event-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--zen-white);
  margin: 0 0 1rem;
}

.event-hero__lead {
  font-size: 1.2rem;
  color: var(--zen-on-dark-soft);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.event-hero__pricing .event-hero-rating {
  align-self: stretch;
  margin: 0;
  min-width: min(100%, 14rem);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
}

.event-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--zen-white);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.event-hero-rating:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
  color: var(--zen-white);
}

.event-hero-rating__stars {
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #f4b400 0%,
    #f4b400 var(--rating-fill, 100%),
    rgba(255, 255, 255, 0.35) var(--rating-fill, 100%),
    rgba(255, 255, 255, 0.35) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.event-hero-rating__copy {
  display: grid;
  gap: 0.1rem;
  line-height: 1.25;
}

.event-hero-rating__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.event-hero-rating__summary,
.event-hero-rating__link {
  font-size: 0.8125rem;
}

.event-hero-rating__summary {
  color: color-mix(in srgb, var(--zen-on-dark-soft) 92%, white);
}

.event-hero-rating__link {
  color: var(--zen-accent);
  font-weight: 600;
}

#retreat-reviews {
  scroll-margin-top: 6rem;
}

.event-hero__pricing {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 0.25rem;
}

.price-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(8px);
}

.price-box__label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zen-on-dark-soft);
  margin-bottom: 0.35rem;
}

.price-box__compare {
  display: block;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--zen-on-dark) 78%, transparent);
  text-decoration: line-through;
}

.price-box__price {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--zen-white);
}

.price-box__price--promo,
.price-promo {
  font-size: 2.35rem;
  font-weight: 700;
}

.qty-row__price .price-compare {
  margin-right: 0.35rem;
  opacity: 0.75;
}

.qty-row__price .price-promo {
  font-size: 1.15rem;
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--zen-primary);
  color: var(--zen-white);
}

.btn--primary:hover {
  background: var(--zen-primary-dark);
  color: var(--zen-white);
}

.btn--secondary {
  background: transparent;
  color: var(--zen-primary);
  border-color: var(--zen-primary);
}

.btn--secondary:hover {
  background: var(--zen-primary);
  color: var(--zen-white);
}

.btn--light {
  background: var(--zen-white);
  color: var(--zen-primary);
}

.btn--light:hover {
  background: var(--zen-accent);
  color: var(--zen-primary-dark);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Badges ─────────────────────────────────────────── */

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--zen-accent-soft);
  color: var(--zen-primary);
}

.badge--urgent {
  background: #fde8ef;
  color: #8d2f4a;
}

.badge--muted {
  background: color-mix(in srgb, var(--zen-border) 25%, transparent);
  color: var(--zen-text-muted);
}

.badge--success {
  background: #fff4e0;
  color: #8a5a20;
}

/* ── Retreat cards (homepage grid) ──────────────────── */

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.retreat-card {
  display: flex;
  gap: 1.25rem;
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
  transition: box-shadow 0.2s, transform 0.2s;
}

.retreat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.retreat-card__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background: var(--zen-primary);
  color: var(--zen-white);
  border-radius: 0.75rem;
  text-align: center;
}

.retreat-card__date--lg {
  width: 5.5rem;
  height: 5.5rem;
}

.retreat-card__month {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.retreat-card__day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.retreat-card__title {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.retreat-card__meta,
.retreat-card__price {
  font-size: 0.9rem;
  margin: 0 0 0.35rem;
  color: var(--zen-text-muted);
}

.retreat-card__price {
  font-weight: 700;
  color: var(--zen-primary);
}

.retreat-card__seats {
  margin: 0.75rem 0;
}

.retreat-card__body {
  flex: 1;
  min-width: 0;
}

/* ── Retreat list (upcoming page) ───────────────────── */

.filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--zen-border) 40%, transparent);
  background: var(--zen-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--zen-text);
  transition: all 0.15s;
}

.filter.is-active,
.filter:hover {
  background: var(--zen-primary);
  color: var(--zen-white);
  border-color: var(--zen-primary);
}

.retreat-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.retreat-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.retreat-list__content h2 {
  font-size: 1.35rem;
  margin: 0.35rem 0;
}

.retreat-list__content h2 a {
  text-decoration: none;
  color: var(--zen-primary);
}

.retreat-list__content p {
  margin: 0.2rem 0;
  font-size: 0.9375rem;
  color: var(--zen-text-muted);
}

.retreat-list__price {
  font-weight: 700;
  color: var(--zen-primary) !important;
  font-size: 1rem !important;
}

.retreat-list__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

/* ── Event layout ───────────────────────────────────── */

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 3rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.event-sidebar {
  position: sticky;
  top: calc(var(--header-height, 5.25rem) + 1.25rem);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - var(--header-height, 5.25rem) - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  min-width: 0;
}

.event-sidebar .sidebar-card {
  position: static;
  top: auto;
}

.event-main .section__title {
  font-size: 1.65rem;
  margin-top: 2rem;
}

.event-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.event-main .content-card {
  margin-bottom: 0;
}

.event-main .section__title:first-child {
  margin-top: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--zen-primary);
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline--accordion {
  gap: 0.75rem;
}

.timeline__item {
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.timeline--accordion .timeline__item {
  padding: 0;
  overflow: hidden;
}

.timeline__summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  padding: 1.15rem 1.75rem;
  cursor: pointer;
  list-style: none;
}

.timeline__summary::-webkit-details-marker {
  display: none;
}

.timeline__summary::marker {
  content: '';
}

.timeline__summary::after {
  content: '';
  flex-shrink: 0;
  align-self: center;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  border-right: 2px solid var(--zen-primary);
  border-bottom: 2px solid var(--zen-primary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.timeline__item[open] > .timeline__summary::after {
  transform: rotate(-135deg);
}

.timeline__summary:focus-visible {
  outline: 2px solid var(--zen-accent);
  outline-offset: -2px;
}

.timeline__summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.timeline__panel {
  padding: 0 1.75rem 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.timeline__header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.timeline__day {
  display: block;
  flex: 0 0 auto;
  min-width: 4.5rem;
  font-weight: 700;
  color: var(--zen-accent-deep);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline__title {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  color: var(--zen-primary);
  line-height: 1.3;
}

.timeline__time {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-text-muted);
}

.schedule-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-entry {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 15%, transparent);
}

.schedule-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-entry__time {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--zen-primary);
  letter-spacing: 0.01em;
}

.schedule-entry__body {
  min-width: 0;
}

.schedule-entry__label {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: var(--zen-text);
  line-height: 1.55;
}

.schedule-entry__items {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: var(--zen-text-muted);
  font-size: 0.925rem;
}

.schedule-entry__items li {
  margin-bottom: 0.25rem;
}

.timeline__body {
  font-size: 0.95rem;
  color: var(--zen-text);
  line-height: 1.65;
}

.timeline__body strong {
  color: var(--zen-primary);
}

@media (max-width: 640px) {
  .timeline__summary {
    flex-wrap: wrap;
    padding: 1rem 1.15rem;
  }

  .timeline__panel {
    padding: 0 1.15rem 1.15rem;
  }

  .schedule-entry {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .schedule-entry__time {
    font-size: 0.875rem;
  }
}

.price-box__desc {
  display: block;
  font-size: 0.85rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--zen-on-dark-soft) 92%, var(--zen-tertiary));
  margin-top: 0.35rem;
}

.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.addon-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.addon-list__price {
  font-weight: 700;
  color: var(--zen-primary);
}

.addon-list s {
  color: var(--zen-text-muted);
  font-size: 0.875rem;
}

.ticket-comparison__lead {
  margin: 0 0 1.25rem;
  color: var(--zen-text-muted);
  line-height: 1.6;
}

.ticket-comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  contain: inline-size;
}

.ticket-comparison__table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
}

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

.ticket-comparison__table thead th {
  border-bottom-width: 2px;
}

.ticket-comparison__feature-head {
  width: 42%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

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

.ticket-comparison__tier {
  width: 29%;
  background: color-mix(in srgb, var(--zen-surface) 70%, transparent);
}

.ticket-comparison__tier--vip {
  background: color-mix(in srgb, var(--zen-accent) 8%, var(--zen-white));
}

.ticket-comparison__tier-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zen-primary);
}

.ticket-comparison__tier--vip .ticket-comparison__tier-label {
  color: var(--zen-accent-deep);
}

.ticket-comparison__tier-compare {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--zen-text-muted);
}

.ticket-comparison__tier-price {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--zen-primary);
}

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

.ticket-comparison__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

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

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

.ticket-comparison__badge--muted {
  color: var(--zen-text-muted);
  background: color-mix(in srgb, var(--zen-border) 20%, transparent);
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  padding: 0;
}

.ticket-comparison__addon-price {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--zen-primary);
}

.ticket-comparison__addon-compare {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--zen-text-muted);
}

.ticket-comparison__note {
  margin-top: 1rem;
  margin-bottom: 0;
}

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

.ticket-comparison--accordion {
  padding: 0;
  overflow: hidden;
}

.ticket-comparison__summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

.ticket-comparison__summary::-webkit-details-marker {
  display: none;
}

.ticket-comparison__summary::marker {
  content: '';
}

.ticket-comparison__summary::after {
  content: '';
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  border-right: 2px solid var(--zen-primary);
  border-bottom: 2px solid var(--zen-primary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.ticket-comparison--accordion[open] > .ticket-comparison__summary::after {
  transform: rotate(-135deg);
}

.ticket-comparison__summary:focus-visible {
  outline: 2px solid var(--zen-accent);
  outline-offset: -2px;
}

.ticket-comparison__panel {
  padding: 0 1.15rem 1rem;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 14%, transparent);
}

.ticket-comparison__compact-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zen-primary);
}

.ticket-comparison--compact .ticket-comparison__table {
  min-width: 0;
}

.ticket-comparison--compact .ticket-comparison__table th,
.ticket-comparison--compact .ticket-comparison__table td {
  padding: 0.5rem 0.65rem;
}

.ticket-comparison--compact .ticket-comparison__feature-head {
  font-size: 0.68rem;
}

.ticket-comparison--compact .ticket-comparison__feature {
  font-size: 0.82rem;
  font-weight: 500;
}

.ticket-comparison--compact .ticket-comparison__tier-label {
  font-size: 0.68rem;
}

.ticket-comparison--compact .ticket-comparison__badge {
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
}

.ticket-comparison--compact .ticket-comparison__addon-price,
.ticket-comparison--compact .ticket-comparison__addon-compare {
  margin-top: 0.2rem;
  font-size: 0.78rem;
}

.ticket-comparison--compact .ticket-comparison__cell {
  font-size: 0.8rem;
}

.faq {
  border: 1px solid color-mix(in srgb, var(--zen-border) 25%, transparent);
  border-radius: 0.75rem;
  padding: 0;
  margin-bottom: 0.75rem;
  background: var(--zen-white);
  overflow: hidden;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--zen-primary);
}

.sidebar-card {
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
  position: sticky;
  top: 5.5rem;
}

.sidebar-card h3 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}

.sidebar-date {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.sidebar-date:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-date.is-sold-out {
  opacity: 0.55;
}

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

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

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 2.5rem;
  align-items: start;
}

.checkout-form {
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.form-section {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

.form-section legend {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--zen-primary);
  margin-bottom: 1rem;
  padding: 0;
}

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

.form-field--full {
  grid-column: 1 / -1;
}

.phone-input {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.phone-input__combo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  overflow: visible;
}

.phone-input__number {
  display: flex;
  align-items: stretch;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.phone-input__field {
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  border-radius: 0 0.65rem 0.65rem 0;
  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;
}

.phone-input__field::placeholder {
  color: color-mix(in srgb, var(--zen-text-muted) 75%, transparent);
}

.phone-input__field:focus {
  outline: none;
}

.phone-input__combo:hover .phone-country-picker__trigger:not(:disabled),
.phone-input__combo:hover .phone-input__field:not(:disabled) {
  border-color: color-mix(in srgb, var(--zen-primary) 35%, var(--zen-border));
}

.phone-input__combo:focus-within {
  border-radius: 0.65rem;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zen-accent) 55%, transparent);
}

.phone-input__combo:focus-within .phone-country-picker__trigger,
.phone-input__combo:focus-within .phone-input__field {
  border-color: var(--zen-primary);
  background: var(--zen-white);
  box-shadow: inset 0 1px 2px rgba(var(--zen-shadow-rgb), 0.04);
}

.phone-country-picker {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.phone-country-picker.is-open {
  z-index: 40;
}

.phone-country-picker__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 100%;
  min-height: 0;
  padding: 0.8rem 0.35rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  border-right: none;
  border-radius: 0.65rem 0 0 0.65rem;
  background: var(--zen-background);
  box-shadow: inset 0 1px 2px rgba(var(--zen-shadow-rgb), 0.04);
  cursor: pointer;
  flex: 1 1 auto;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.phone-country-picker__trigger:focus-visible {
  outline: none;
}

.phone-country-picker__flag {
  display: block;
  font-size: 1rem;
  line-height: 1;
  max-height: 1.4rem;
  overflow: hidden;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.phone-country-picker__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(18rem, 50vh);
  border: 1px solid color-mix(in srgb, var(--zen-border) 55%, transparent);
  border-radius: 0.75rem;
  background: var(--zen-white);
  box-shadow:
    0 12px 28px rgba(var(--zen-shadow-rgb), 0.14),
    0 2px 8px rgba(var(--zen-shadow-rgb), 0.08);
  overflow: hidden;
}

.phone-country-picker__panel[hidden] {
  display: none !important;
}

.phone-country-picker__search-wrap {
  display: block;
  margin: 0;
  padding: 0.55rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
  background: color-mix(in srgb, var(--zen-accent-soft) 25%, var(--zen-white));
}

.phone-country-picker__search {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 45%, transparent);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--zen-text);
  background: var(--zen-white);
}

.phone-country-picker__search:focus {
  outline: none;
  border-color: var(--zen-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--zen-accent) 45%, transparent);
}

.phone-country-picker__list {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.phone-country-picker__option {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: background 0.12s ease;
}

.phone-country-picker__option:hover,
.phone-country-picker__option.is-highlighted {
  background: color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-white));
}

.phone-country-picker__option.is-selected {
  background: color-mix(in srgb, var(--zen-accent) 18%, var(--zen-white));
}

.phone-country-picker__option-flag {
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.phone-country-picker__option-name {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--zen-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-country-picker__option-code {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--zen-primary);
  font-variant-numeric: tabular-nums;
}

.phone-country-picker__empty {
  padding: 0.85rem 0.75rem;
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  text-align: center;
}

@media (max-width: 520px) {
  .phone-country-picker__panel {
    width: min(22rem, calc(100vw - 2.5rem));
  }
}

.form-grid label,
.checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 0;
  cursor: pointer;
}

.questionnaire-other-explain {
  margin-top: 0.75rem;
  padding-left: 0.25rem;
}

.questionnaire-other-explain label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.questionnaire-other-explain input[type="text"] {
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 40%, transparent);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--zen-background);
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"] {
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 40%, transparent);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--zen-background);
}

.form-grid input:focus {
  outline: 2px solid var(--zen-accent);
  border-color: var(--zen-primary);
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 30%, transparent);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.radio-card:has(input:checked) {
  border-color: var(--zen-primary);
  background: var(--zen-accent-soft);
}

.radio-card input {
  margin-top: 0.25rem;
}

.radio-card__body {
  flex: 1;
}

.radio-card__body strong {
  display: block;
  color: var(--zen-primary);
}

.radio-card__body s {
  color: var(--zen-text-muted);
  margin-right: 0.5rem;
}

.radio-card__body em {
  font-style: normal;
  font-weight: 700;
  color: var(--zen-primary);
}

.form-hint {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--zen-text);
}

.form-note {
  font-size: 0.875rem;
  color: var(--zen-text);
  margin-top: 1rem;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  margin: 0;
}

.checkout-summary hr {
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--zen-border) 25%, transparent);
  margin: 1rem 0;
}

.qty-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 25%, transparent);
  border-radius: 0.75rem;
  background: var(--zen-background);
}

.qty-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.qty-row__desc {
  font-size: 0.85rem;
  color: var(--zen-text-muted);
}

.qty-row__price {
  font-weight: 700;
  color: var(--zen-primary);
}

.qty-row__price s {
  color: var(--zen-text-muted);
  font-weight: 400;
  margin-right: 0.35rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
  border-radius: 0.5rem;
  background: var(--zen-white);
  color: var(--zen-primary);
  font-size: 1.1rem;
  cursor: pointer;
}

.qty-input {
  width: 3rem;
  text-align: center;
  padding: 0.45rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
  border-radius: 0.5rem;
  font-family: var(--font-body);
}

.guest-block-wrap {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
}

.guest-block__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--zen-primary);
}

.form-errors {
  background: #fdecec;
  border: 1px solid #efb4b4;
  color: #7a1f1f;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.form-grid label.is-field-invalid,
.form-field.is-field-invalid,
.questionnaire-field.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);
}

.form-grid input.is-field-invalid:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.form-grid textarea.is-field-invalid,
.form-grid select.is-field-invalid {
  border-color: var(--zen-primary) !important;
  background: color-mix(in srgb, var(--zen-primary) 4%, var(--zen-white)) !important;
  outline: 2px solid color-mix(in srgb, var(--zen-accent) 55%, transparent);
  outline-offset: 0;
}

.form-errors p {
  margin: 0.25rem 0;
}

.confirmation-ref {
  font-family: monospace;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--zen-primary);
  margin: 1rem 0;
}

.bank-details code {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  color: var(--zen-primary);
  background: var(--zen-accent-soft);
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
}

.bank-details p {
  margin: 0.35rem 0;
}

.confirmation-steps {
  margin-bottom: 1.5rem;
}

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

/* ── Account ────────────────────────────────────────── */

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.account-item {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--zen-border) 20%, transparent);
}

.account-item:last-child {
  border-bottom: none;
}

.account-item p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--zen-text-muted);
}

.notice {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.notice--info {
  background: var(--zen-accent-soft);
  border: 1px solid var(--zen-accent);
}

.notice--success {
  background: #e8f6ec;
  border: 1px solid #7bc49a;
  border-left: 4px solid #3d9a62;
  box-shadow: 0 4px 16px rgba(45, 120, 72, 0.12);
  color: #1f5c34;
}

.notice--success p {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Feature grid & packages ────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.feature {
  background: var(--zen-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.feature p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--zen-text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.package-card--vip {
  border-color: color-mix(in srgb, var(--zen-primary) 25%, transparent);
  background: linear-gradient(180deg, var(--zen-white) 0%, var(--zen-accent-soft) 100%);
}

.package-card {
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid color-mix(in srgb, var(--zen-border) 15%, transparent);
  transition: transform 0.2s;
}

.package-card:hover {
  transform: translateY(-3px);
}

.package-card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.package-card__duration {
  font-size: 0.875rem;
  color: var(--zen-accent-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.package-card__price {
  font-size: 1.125rem;
  margin: 1.25rem 0;
}

.package-card__price s {
  color: var(--zen-text-muted);
  margin-right: 0.5rem;
}

.package-card__price strong {
  color: var(--zen-primary);
  font-size: 1.5rem;
}

.cta-band {
  text-align: center;
}

.cta-band .section__lead {
  margin-bottom: 2rem;
}

/* ── Testimonials ───────────────────────────────────── */

.retreat-testimonials__header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.retreat-testimonials__summary {
  margin: 0.35rem 0 0;
  color: var(--zen-text-muted);
}

.retreat-testimonials__grid {
  margin-top: 1.25rem;
}

.testimonial-filters {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--zen-white);
  border: 1px solid color-mix(in srgb, var(--zen-border) 16%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

.testimonial-filters__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.testimonial-filters__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
}

.testimonial-filters__select {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--zen-border) 28%, transparent);
  border-radius: 0.65rem;
  background: var(--zen-white);
  color: var(--zen-text);
  font: inherit;
}

.testimonial-filters__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.testimonial-filters__clear {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-primary);
  text-decoration: none;
}

.testimonial-filters__clear:hover {
  text-decoration: underline;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial {
  background: var(--zen-white);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--zen-accent);
}

.testimonial__stars {
  color: var(--zen-primary);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial__verified {
  margin: -0.35rem 0 1rem;
}

.testimonial__source-label {
  margin: -0.35rem 0 1rem;
}

.testimonial__verified-badge,
.testimonial__source-label-badge {
  background: color-mix(in srgb, var(--zen-accent-soft) 55%, var(--zen-white));
  border: 1px solid color-mix(in srgb, var(--zen-accent) 35%, transparent);
  border-radius: 999px;
  color: var(--zen-primary-dark);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  text-transform: uppercase;
}

.testimonial__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--zen-primary-dark);
}

.testimonial p,
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  color: var(--zen-text);
}

.testimonial footer {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zen-primary);
}

/* ── Responsive ─────────────────────────────────────── */

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

@media (max-width: 1099px) {
  .event-layout,
  .checkout-layout,
  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .section:has(.event-layout) {
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
  }

  .section__inner.event-layout {
    width: 100%;
    max-width: 100%;
  }

  .event-main,
  .event-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .event-main > *,
  .event-sidebar > * {
    max-width: 100%;
  }

  .sidebar-card {
    position: static;
  }

  .event-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .retreat-list__item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .retreat-list__actions {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .section:has(.event-layout) {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .event-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .event-hero__inner {
    width: 100%;
    max-width: 100%;
  }

  .event-hero__title,
  .event-hero__lead {
    overflow-wrap: anywhere;
  }

  .event-hero__lead {
    max-width: none;
  }

  .event-hero__pricing {
    flex-direction: column;
  }

  .event-hero__pricing .price-box,
  .event-hero__pricing .event-hero-rating {
    width: 100%;
    min-width: 0;
  }

  .event-main .content-card,
  .event-sidebar .sidebar-card {
    padding: 1.25rem;
  }

  .ticket-comparison__table {
    min-width: 30rem;
  }

  .retreat-testimonials__header {
    flex-direction: column;
    align-items: stretch;
  }

  .retreat-testimonials__header .btn {
    width: 100%;
    text-align: center;
  }

  .testimonial-grid,
  .retreat-testimonials__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline__summary {
    padding: 1rem 1rem;
    gap: 0.75rem;
  }

  .timeline__panel {
    padding: 0 1rem 1.15rem;
  }

  .timeline__title {
    overflow-wrap: anywhere;
  }

  .sidebar-date {
    flex-direction: column;
    align-items: stretch;
  }

  .sidebar-date .btn {
    width: 100%;
    text-align: center;
  }

  .event-cta-band {
    padding: 1.25rem 1rem;
  }

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

  .hero--home {
    min-height: auto;
    padding: 3rem 1.25rem;
  }
}

/* ── Blog listing ───────────────────────────────────── */

.blog-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

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

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

.blog-card {
  background: var(--zen-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--zen-border) 18%, transparent);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--zen-accent-soft);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__image--placeholder {
  background: linear-gradient(135deg, var(--zen-accent-soft), var(--zen-background-alt));
}

.blog-card__body {
  padding: clamp(1.25rem, 2vw, 1.65rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--zen-text-muted);
}

.blog-card__title {
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.blog-card__title a {
  text-decoration: none;
  color: var(--zen-primary);
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--zen-text-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.blog-card__link {
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}

/* ── Article (single post) ──────────────────────────── */

.article__header--plain {
  padding: calc(var(--space-section) * 0.75) 1.5rem 2rem;
  background: linear-gradient(180deg, var(--zen-accent-soft) 0%, var(--zen-background) 100%);
}

.article__header-inner {
  max-width: 46rem;
}

.article__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.article__lead {
  font-size: 1.2rem;
  color: var(--zen-text-muted);
  margin: 0 0 1rem;
}

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

.article__content:not(.page-shell__main) {
  max-width: 46rem;
  padding: var(--space-section) 1.5rem;
}

.article__footer {
  padding-top: 0;
}

.article__cta {
  max-width: 46rem;
  text-align: center;
}

/* ── Prose (imported HTML body) ─────────────────────── */

.prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--zen-text);
}

.prose p,
.prose li,
.prose td {
  color: inherit;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose h2 { font-size: 1.65rem; }
.prose h3 { font-size: 1.35rem; }
.prose h4 { font-size: 1.15rem; }

.prose p {
  margin: 0 0 1.25rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a:not(.btn) {
  color: var(--zen-primary);
  font-weight: 600;
}

.prose .btn,
.prose a.btn {
  text-decoration: none;
}

.prose .btn--primary,
.prose a.btn--primary {
  color: var(--zen-white);
}

.prose .btn--primary:hover,
.prose a.btn--primary:hover {
  color: var(--zen-white);
}

.prose .btn--light,
.prose a.btn--light {
  color: var(--zen-primary);
}

.prose .btn--light:hover,
.prose a.btn--light:hover {
  color: var(--zen-primary-dark);
}

.prose .btn--secondary,
.prose a.btn--secondary {
  color: var(--zen-primary);
}

.prose .btn--secondary:hover,
.prose a.btn--secondary:hover {
  color: var(--zen-white);
}

.prose .btn--outline,
.prose a.btn--outline {
  color: var(--zen-primary);
}

.prose .btn--outline:hover,
.prose a.btn--outline:hover {
  color: var(--zen-white);
}

.prose-cta {
  margin-top: 2rem;
}

.prose-cta__note {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--zen-text);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--zen-primary);
  background: var(--zen-accent-soft);
  font-family: var(--font-serif);
  font-style: italic;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.prose th,
.prose td {
  border: 1px solid color-mix(in srgb, var(--zen-border) 35%, transparent);
  padding: 0.65rem 0.85rem;
  text-align: left;
}

.prose th {
  background: var(--zen-accent-soft);
  font-weight: 700;
}

.prose figure {
  margin: 1.5rem 0;
}

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

/* Imported WP accordions (FAQ pages) */
.prose details,
.prose .e-n-accordion-item {
  border: 1px solid color-mix(in srgb, var(--zen-border) 50%, transparent);
  border-radius: calc(var(--radius) * 0.75);
  margin-bottom: 0.75rem;
  background: var(--zen-surface);
  overflow: hidden;
}

.prose summary,
.prose .e-n-accordion-item-title {
  cursor: pointer;
  font-weight: 600;
  color: var(--zen-primary);
  padding: 1rem var(--faq-summary-inset-x, clamp(1.35rem, 3.5vw, 1.95rem));
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.prose summary::-webkit-details-marker {
  display: none;
}

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

.prose details > :not(summary),
.prose .e-n-accordion-item [role="region"] {
  padding: 0.35rem var(--faq-inset-x, clamp(1.5rem, 4vw, 2.15rem)) var(--faq-inset-bottom, clamp(1.25rem, 2.75vw, 1.75rem));
}

.prose hr {
  border: none;
  border-top: 1px solid var(--zen-border);
  margin: 2rem 0;
}

/* Hide broken Elementor widget remnants in imported pages */
.prose .filter_item,
.prose .mep-event-list-loop,
.prose .bwp-testimonial,
.prose .slick-carousel {
  display: none;
}

