/* =========================================================
   REATS · Design System
   ========================================================= */
:root {
  /* Palette – fresh forest light theme */
  --bg-0: #ffffff;
  --bg-1: #f6faf0;
  --bg-2: #ecf4dd;

  --ink-0: #0c3c1e;          /* deep green - primary text */
  --ink-1: #1f5a35;
  --ink-2: #5a7a64;
  --ink-3: #8a9a8d;

  --accent: #0c3c1e;          /* deep brand green */
  --accent-2: #2f7d3f;        /* mid green */
  --accent-3: #b4d6a0;        /* soft green */
  --accent-4: #d9e89a;        /* lime/mint */

  --gradient-warm: linear-gradient(135deg, #d9e89a 0%, #b4d6a0 55%, #2f7d3f 100%);
  --gradient-cool: linear-gradient(135deg, #b4d6a0 0%, #87bf8e 55%, #0c3c1e 100%);
  --gradient-dark: linear-gradient(180deg, rgba(12, 60, 30, 0) 0%, rgba(12, 60, 30, 0.55) 80%, rgba(12, 60, 30, 0.85) 100%);

  /* Glass surfaces — on light bg */
  --glass-bg: rgba(12, 60, 30, 0.04);
  --glass-bg-strong: rgba(12, 60, 30, 0.07);
  --glass-border: rgba(12, 60, 30, 0.10);
  --glass-border-strong: rgba(12, 60, 30, 0.18);
  --glass-shadow: 0 14px 30px -18px rgba(12, 60, 30, 0.18), 0 1px 2px rgba(12, 60, 30, 0.06);

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --selection-bg: var(--accent-3);
  --selection-color: var(--ink-0);

  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t: 320ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 600ms cubic-bezier(.2,.7,.2,1);

  --container: 1280px;
  /* ריווח אופקי עקבי מובייל→דסקטופ */
  --page-pad: clamp(14px, 4vw, 28px);

  /** ירוק עמוק (תפריט כדוריות, פס הגיבור) — טקסט לבן */
  --brand-pine: #0b301a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--ink-0);
  font-family: "Google Sans", "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "GRAD" 0;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}
::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}

/* Make sure every interactive element inherits the Google Sans family */
input, textarea, select, button, optgroup, option, label, legend, fieldset,
a, p, span, div, li, td, th, figcaption, blockquote, code, pre {
  font-family: inherit;
}

input, textarea, select, button {
  font-optical-sizing: auto;
  font-variation-settings: "GRAD" 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(217, 232, 154, 0.35), transparent 65%),
    radial-gradient(700px 560px at -5% 18%, rgba(180, 214, 160, 0.30), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f6faf0 60%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Google Sans", "Heebo", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "GRAD" 0;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink-0);
}

h1, h2 {
  font-weight: 800;
  font-synthesis: weight;
  font-variation-settings: "wght" 800, "GRAD" 0;
}

h3, h4, h5, h6 {
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.04; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* =========================================================
   Ambient lighting (lightweight)
   ========================================================= */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* ה-orbs וה-grain הוסרו משיקולי ביצועים (כל blur(90px) על אלמנט ענק יקר מאוד לציור).
   הטקסטורה של הרקע מושגת כעת דרך radial-gradients בתוך body - כמעט ללא עלות GPU. */
.orb, .grain { display: none !important; }

/* =========================================================
   Glass primitives
   ========================================================= */
/* Glass surfaces — we use solid dark fills (cheap) and only layer real backdrop-filter
   on capable devices to avoid jank on weak GPUs / mobile. */
.glass {
  background: rgba(20, 22, 31, 0.82);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}
.glass-soft {
  background: rgba(20, 22, 31, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.glass-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
}

@media (min-width: 900px) {
  @supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .glass {
      background: var(--glass-bg-strong);
      backdrop-filter: blur(10px) saturate(120%);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
    }
    .glass-soft {
      background: var(--glass-bg);
      backdrop-filter: blur(8px) saturate(115%);
      -webkit-backdrop-filter: blur(8px) saturate(115%);
    }
    .glass-chip {
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
  }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--t-fast), background var(--t), color var(--t), border var(--t), box-shadow var(--t);
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; min-height: 48px; }
.btn-primary {
  background: var(--ink-0);
  color: #14161f;
  box-shadow: 0 6px 14px -8px rgba(244, 241, 234, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 8px 20px -10px rgba(244, 241, 234, 0.45);
}
.btn-pilot-home {
  background: #f1f7e9 !important;
  border: 2px solid var(--accent-2, #2f7d3f) !important;
  color: var(--accent, #0c3c1e) !important;
  font-weight: 800 !important;
}
.btn-pilot-home:hover {
  background: var(--accent-2, #2f7d3f) !important;
  color: #fff !important;
}
@media (max-width: 639.98px) {
  .btn { white-space: normal; }
}
@media (min-width: 980px) {
  .btn { white-space: nowrap; }
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--ink-0);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
.icon-btn {
  width: 44px; height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink-0);
  transition: background var(--t), transform var(--t-fast);
}
.icon-btn:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding var(--t), background var(--t), border var(--t);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 20, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
@supports ((backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px))) {
  .site-header::before {
    background: rgba(11, 13, 20, 0.55);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
  }
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled { padding: 10px 0; }

.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 28px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  position: relative;
}
.logo-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gradient-warm);
  color: #14161f;
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: 1.25rem;
}
.logo-text { font-size: 1.15rem; letter-spacing: 0.22em; }
.logo-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  gap: 26px;
  margin-inline-start: auto;
}
.main-nav a {
  position: relative;
  padding: 8px 2px;
  font-size: 0.95rem;
  color: var(--ink-1);
  transition: color var(--t-fast);
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px; right: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--t);
  border-radius: 2px;
}
.main-nav a:hover { color: var(--ink-0); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 3;
}
.header-actions .icon-btn {
  position: relative;
  z-index: 4;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 44px; height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-0);
  border-radius: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  /* גובה קומפקטי - מאפשר לראות את החיפוש מיד בלי גלילה על מסך רגיל. */
  min-height: min(58vh, 520px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
@media (max-width: 720px) {
  .hero { min-height: min(66vh, 540px); }
  .hero-content {
    padding: clamp(48px, 12vw, 80px) var(--page-pad) 48px;
    gap: 12px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1200ms ease, transform 8000ms ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 20, 0.9) 0%, rgba(11, 13, 20, 0.55) 45%, rgba(11, 13, 20, 0.2) 80%),
    linear-gradient(180deg, rgba(11, 13, 20, 0.1) 0%, rgba(11, 13, 20, 0.35) 60%, var(--bg-0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 900px) {
  .hero-content {
    max-width: var(--container);
    padding: 90px 28px 70px;
  }
  .hero-content > * { max-width: 720px; }
}

.hero-kicker {
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 185, 118, 0.7);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 185, 118, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(232, 185, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 185, 118, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-1);
  max-width: 640px;
}

.hero-main-desc__more {
  color: var(--ink-0);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.bz-inner-hero .hero-main-desc__more:hover,
.bz-inner-hero .hero-main-desc__more:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--ink-1);
  font-size: 0.95rem;
}
.meta-item strong { color: var(--accent); }
.meta-item.price { color: var(--ink-0); font-weight: 700; }
.meta-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-dots {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 38px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--t), width var(--t);
  position: relative;
  overflow: hidden;
}
.hero-dot.active {
  background: rgba(255,255,255,0.2);
  width: 64px;
}
.hero-dot.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: right center;
  animation: dotFill 6s linear forwards;
}
@keyframes dotFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(20, 22, 31, 0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink-0);
  transition: background var(--t), transform var(--t-fast);
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }
.hero-arrow svg { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .hero-arrow { display: none; }
}

/* =========================================================
   SEARCH
   ========================================================= */
.search-section {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  padding-bottom: 30px;
}
.search-card {
  padding: 22px 24px;
}
.search-header h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 6px;
}
.search-header p { color: var(--ink-2); margin: 0 0 22px; }

.search-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 14px;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 10px;
}
.search-field {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--t);
  min-width: 0;
}
.search-field:hover { background: rgba(255,255,255,0.04); }
.search-field label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-2);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-1);
}
.field-wrap svg { width: 18px; height: 18px; opacity: 0.7; flex-shrink: 0; }
.field-wrap input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--ink-0);
  font-size: 1rem;
  padding: 4px 0;
  outline: none;
}
.field-wrap input::placeholder { color: var(--ink-3); }

.search-submit {
  justify-self: stretch;
  align-self: stretch;
  justify-content: center;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.tags-label {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 6px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink-1);
  font-size: 0.88rem;
  transition: background var(--t), color var(--t), border var(--t), transform var(--t-fast);
}
a.tag.tag--link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.tag:hover {
  background: rgba(232, 185, 118, 0.12);
  border-color: rgba(232, 185, 118, 0.45);
  color: var(--accent);
  transform: translateY(-1px);
}
.tag.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Overlay חיפוש מהכותרת — מעל כל האתר (כולל כותרת דביקה) */
.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 5vh, 48px) var(--page-pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
  pointer-events: none;
}
.site-search-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: clamp(18px, 4vw, 26px);
  border-radius: var(--radius-lg);
  margin-top: 8vh;
  -webkit-overflow-scrolling: touch;
}
.site-search-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.site-search-modal__title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
.site-search-modal__close {
  flex-shrink: 0;
}
.site-search-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-search-modal__field label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-2);
  margin-bottom: 4px;
  font-weight: 600;
}
.site-search-modal__field input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--ink-0);
}
.site-search-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .site-search-modal__row { grid-template-columns: 1fr; }
}
.site-search-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.site-search-modal__hint {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.45;
}
body.site-search-modal-open {
  overflow: hidden;
}

/* עמוד תוצאות חיפוש */
.search-form--page {
  margin-top: 8px;
}
.search-results-summary {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.search-results-subhead {
  margin-top: 28px;
}
.search-results-subhead:first-of-type {
  margin-top: 0;
}
.search-page-empty {
  margin-top: 8px;
}
.search-page-results {
  padding-bottom: 48px;
}

@media (max-width: 900px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
  .search-submit { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .search-form { grid-template-columns: 1fr; }
}

/* =========================================================
   Section head
   ========================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-1);
  font-weight: 600;
  padding: 10px 0;
  transition: color var(--t-fast), gap var(--t);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.link-arrow:hover { color: var(--accent); gap: 12px; }

.section-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink-1);
  font-size: 0.9rem;
  transition: background var(--t), color var(--t), border var(--t);
}
.chip.active, .chip:hover {
  background: rgba(255,255,255,0.1);
  color: var(--ink-0);
  border-color: rgba(255,255,255,0.22);
}
.chip.active { background: var(--ink-0); color: #14161f; border-color: var(--ink-0); }

/* =========================================================
   ARTICLE + BENTO
   ========================================================= */
.article-section { padding: 70px 0 30px; }
.article-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}
.article-side {
  padding: 32px;
  position: sticky;
  top: 110px;
}
.side-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-side h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
.article-side p { color: var(--ink-1); margin: 0 0 18px; }

.article-main {
  padding: 10px 0;
  max-width: 760px;
}
.article-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232, 185, 118, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(232, 185, 118, 0.25);
}
.article-meta { color: var(--ink-2); font-size: 0.9rem; }
.article-main h2 { margin-bottom: 18px; }
.article-lead {
  font-size: 1.1rem;
  color: var(--ink-1);
  line-height: 1.7;
  margin: 0 0 28px;
}
.article-main > p { color: var(--ink-1); line-height: 1.8; margin: 0 0 20px; }

.article-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.bento {
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), border var(--t);
}
.bento::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  /* radial-gradient במקום filter:blur - אפקט זהה, עלות ציור כמעט אפס. */
  opacity: 0.5;
  pointer-events: none;
  transition: opacity var(--t);
  mask: radial-gradient(circle at center, #000 30%, transparent 70%);
  -webkit-mask: radial-gradient(circle at center, #000 30%, transparent 70%);
}
.bento:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.bento-1 { grid-column: span 7; }
.bento-1::before { background: var(--accent); }
.bento-2 { grid-column: span 5; }
.bento-2::before { background: var(--accent-3); }
.bento-3 { grid-column: span 5; }
.bento-3::before { background: var(--accent-4); }
.bento-4 { grid-column: span 7; }
.bento-4::before { background: var(--accent-2); }

.bento-num {
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.85;
}
.bento h4 {
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.bento p { color: var(--ink-1); margin: 0; font-size: 0.95rem; }

.article-cta { margin-top: 16px; }

@media (max-width: 960px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .article-bento > .bento { grid-column: span 12 !important; }
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.categories-section { padding: 70px 0 40px; }
/* ברירת מחדל: גריד אחיד ורספונסיבי שמסתדר גם עם מאות קטגוריות (עמוד /categories). */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 160px;
  gap: 16px;
}
.category {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a1f33;
  cursor: pointer;
  transition: transform var(--t), border-color var(--t);
}
.category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg, var(--gradient-warm));
  filter: saturate(0.9);
  transition: transform var(--t-slow);
}
.category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,20,0) 30%, rgba(11,13,20,0.75) 100%);
}
.category:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.category:hover::before { transform: scale(1.08); }

.category-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.category-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 1.6rem;
}
.category-title {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: "Google Sans", "Heebo", sans-serif;
}
.category-count {
  font-size: 0.82rem;
  color: var(--ink-1);
  opacity: 0.85;
}

@media (max-width: 520px) {
  .categories-grid { grid-template-columns: 1fr; grid-auto-rows: 140px; }
}

/* =========================================================
   RETREATS
   ========================================================= */
.retreats-section { padding: 60px 0 40px; }
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.retreat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #141826;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.retreat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 14px 28px -18px rgba(0,0,0,0.55);
}
.retreat-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.retreat-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}
.retreat-card:hover .retreat-media::before { transform: scale(1.06); }
.retreat-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,20,0) 55%, rgba(11,13,20,0.7) 100%);
}

.retreat-chips {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.retreat-badge {
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(20, 22, 31, 0.78);
  color: var(--ink-0);
  border: 1px solid rgba(255,255,255,0.18);
}
.retreat-badge.accent {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.retreat-save {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(20, 22, 31, 0.78);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink-0);
  transition: background var(--t), color var(--t);
}
.retreat-save:hover { background: var(--ink-0); color: #14161f; }
.retreat-save svg { width: 16px; height: 16px; }

.retreat-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.retreat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.retreat-title {
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}
.retreat-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--ink-0);
  font-weight: 600;
  white-space: nowrap;
}
.retreat-rating svg { width: 14px; height: 14px; color: var(--accent); fill: var(--accent); }

.retreat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.retreat-meta span { display: inline-flex; align-items: center; gap: 6px; }

.retreat-facts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(10px, 2.5vw, 12px);
  border-radius: var(--radius-sm);
  background: rgba(12, 60, 30, 0.04);
  border: 1px solid rgba(12, 60, 30, 0.12);
}

.retreat-facts__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px 14px;
}

.retreat-facts__row .retreat-fact {
  flex: 1 1 auto;
  min-width: min(100%, 9.5rem);
}

.retreat-fact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(0.84rem, 2.2vw, 0.88rem);
  color: var(--ink-2);
  line-height: 1.35;
}

.retreat-fact--location {
  margin-top: 0;
  padding-top: 0;
}

.retreat-fact__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--accent-2);
  margin-top: 1px;
}

.retreat-fact__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

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

.retreat-desc {
  color: var(--ink-1);
  font-size: 0.92rem;
  margin: 0;
}

.retreat-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.retreat-host {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-2);
  min-width: 0;
  flex: 1;
}
.retreat-host__name {
  min-width: 0;
  line-height: 1.35;
}
.host-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: grid; place-items: center;
  color: #14161f;
  font-weight: 800;
  font-size: 0.75rem;
  border: 2px solid #1a1f33;
  flex-shrink: 0;
  overflow: hidden;
}
.host-avatar.host-avatar-has-photo {
  padding: 0;
  border: 2px solid #1a1f33;
  background: var(--glass-bg, #eef0e8);
}
.host-avatar.host-avatar-has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.retreat-price {
  text-align: end;
  flex-shrink: 0;
}
.retreat-price .amount {
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  color: var(--ink-0);
  font-weight: 700;
  line-height: 1.2;
}
.retreat-price .per {
  font-size: 0.75rem;
  color: var(--ink-2);
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) { .retreats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .retreats-grid { grid-template-columns: 1fr; } }

.search-submit {
  min-height: 44px;
}

@media (max-width: 520px) {
  .search-card {
    padding: clamp(14px, 3.5vw, 22px) clamp(12px, 3vw, 20px);
    max-width: 100%;
    box-sizing: border-box;
  }

  .search-header h2 {
    font-size: clamp(1.15rem, 4.2vw, 1.6rem);
  }

  .popular-tags .tag,
  .popular-tags .tag.tag--link {
    min-height: 44px;
    padding: 10px 14px;
    align-items: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (pointer: coarse) {
  .retreat-save {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .retreat-title {
    font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  }
}

/* =========================================================
   WORKSHOPS RAIL
   ========================================================= */
.workshops-section { padding: 60px 0; }
.workshops-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-y: none;
  touch-action: pan-x;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(12,60,30,0.25) transparent;
}
.workshops-rail::-webkit-scrollbar { height: 8px; }
.workshops-rail::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
}

.workshop-card {
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #141826;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
  isolation: isolate;
  transition: transform var(--t), border-color var(--t);
}
.workshop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.05);
  transition: transform var(--t-slow), filter var(--t);
}
.workshop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11,13,20,0.2) 0%, rgba(11,13,20,0.85) 100%);
}
.workshop-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.workshop-card:hover::before { transform: scale(1.06); filter: brightness(0.65) saturate(1.15); }

.workshop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.workshop-date {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  min-width: 54px;
}
.workshop-date .day {
  display: block;
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}
.workshop-date .month {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.workshop-pill {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}
.workshop-body { margin-top: auto; }
.workshop-body h4 {
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
.workshop-body p {
  color: var(--ink-1);
  font-size: 0.88rem;
  margin: 0 0 10px;
}
.workshop-meta {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-1);
  align-items: center;
}
.workshop-meta .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

/* =========================================================
   COMMUNITY BANNER
   ========================================================= */
.community-banner { padding: 50px 0 90px; }
.community-card {
  padding: 42px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.community-card::before {
  content: "";
  position: absolute;
  inset: -60% -30% auto auto;
  width: 500px; height: 500px;
  border-radius: 50%;
  /* במקום filter: blur(100px) שיקר לגבי ציור - משתמשים ב-radial gradient שכבר "דוהה" לקצוות,
     אפקט דומה עם אפס עלות GPU. */
  background: radial-gradient(circle at center, rgba(232,185,118,0.35) 0%, rgba(232,185,118,0) 65%);
  opacity: 1;
  pointer-events: none;
}
.community-text { position: relative; }
.community-text h2 { margin: 4px 0 10px; }
.community-text p { color: var(--ink-1); margin: 0; max-width: 520px; }

.community-form {
  display: flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
}
.community-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink-0);
  padding: 10px 18px;
  font-size: 1rem;
  min-width: 0;
}
.community-form input::placeholder { color: var(--ink-3); }

@media (max-width: 860px) {
  .community-card { grid-template-columns: 1fr; padding: clamp(22px, 6vw, 30px); }
  .community-banner { padding: 36px 0 56px; }
}
@media (max-width: 520px) {
  .community-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-md);
    padding: 12px;
    gap: 10px;
  }
  .community-form input {
    min-height: 48px;
    font-size: 1rem;
    width: 100%;
  }
  .community-form .btn {
    width: 100%;
    min-height: 48px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(11,13,20,0) 0%, rgba(11,13,20,0.8) 40%, #07080e 100%);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: var(--ink-2);
  margin: 16px 0 24px;
  max-width: 420px;
}
.logo-footer { margin-bottom: 12px; }

.community-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink-0);
  transition: background var(--t), border var(--t), transform var(--t-fast), color var(--t);
}
.social-btn:hover {
  background: rgba(232,185,118,0.12);
  border-color: rgba(232,185,118,0.45);
  color: var(--accent);
  transform: translateY(-1px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-links h5 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-0);
  margin: 0 0 18px;
}
.footer-links__col {
  min-width: 0;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--ink-2);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--ink-0); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  color: var(--ink-3);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--ink-2); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--ink-0); }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-links { grid-template-columns: 1fr; }
}

/* =========================================================
   Responsive: Header / Nav
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions {
    flex-shrink: 1;
    gap: 8px;
  }
  .header-actions .btn-primary {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding: 10px 12px;
    font-size: clamp(0.86rem, 3.6vw, 0.94rem);
  }
  .site-header { z-index: 52; }
}
@media (min-width: 981px) {
  .main-nav .main-nav-mobile-search {
    display: none;
  }
}
@media (max-width: 560px) {
  .site-header:not(.site-header--v2) .logo-text--brand { display: none; }
  .site-header:not(.site-header--v2) .logo-text--user { display: block !important; }
}


/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Archive / Single / Magazine / Community / 404
   (additional templates)
   ========================================================= */

.glass-section {
  position: relative;
  padding: 120px 0 60px;
  text-align: center;
}
.glass-section h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 10px auto 14px;
  max-width: 900px;
}
.archive-lead {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--ink-1);
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .glass-section {
    padding: clamp(52px, 13vw, 88px) 0 36px;
  }
  .glass-section h1 {
    font-size: clamp(1.65rem, 5.5vw + 0.75rem, 2.6rem);
    margin-inline: auto;
    padding: 0 2px;
  }
  .archive-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    padding: 0 2px;
  }
}
.archive-filters { justify-content: center; }

.main-nav a.is-active,
.main-nav a.is-active:visited {
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
}
.main-nav a.is-active::after { width: 100%; }

body.bz-listing-retreats .main-nav a[href*="/retreats"],
body.bz-listing-workshops .main-nav a[href*="/workshops"] {
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
}
body.bz-listing-retreats .main-nav a[href*="/retreats"]::after,
body.bz-listing-workshops .main-nav a[href*="/workshops"]::after {
  width: 100%;
}

.cat-rich-body {
  padding: 32px 0 16px;
}
.cat-rich-body .category-page-content {
  max-width: 860px;
  margin-inline: auto;
}

.archive-list {
  padding: 40px 0 80px;
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.empty-state {
  padding: 60px 32px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--ink-2); margin-bottom: 20px; }

/* -------- Single post page -------- */
.single-hero {
  padding: 160px 0 60px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-bottom: 40px;
  position: relative;
}
.single-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin: 14px 0 14px;
  max-width: 900px;
}
@media (max-width: 768px) {
  .single-hero {
    padding: clamp(88px, 20vw, 130px) 0 36px;
    margin-bottom: 28px;
  }
}
.single-lead {
  font-size: 1.15rem;
  color: var(--ink-1);
  max-width: 720px;
  margin: 0 0 20px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-2);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.breadcrumbs a { color: var(--ink-1); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { opacity: 0.6; }

.single-head { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; }

.single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--ink-1);
  font-size: 0.95rem;
}
.single-meta strong { color: var(--accent); }

.single-body { padding: 40px 0 60px; }
.single-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.single-content { min-width: 0; }

.post-gallery-section {
  margin-top: clamp(24px, 5vw, 44px);
  padding-top: clamp(16px, 4vw, 28px);
  border-top: 1px solid var(--glass-border);
}
.post-gallery-head { margin-bottom: clamp(12px, 3vw, 18px); }
.post-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 2.5vw, 14px);
}
@media (min-width: 720px) {
  .post-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.post-gallery-item {
  display: block;
  border-radius: clamp(10px, 2vw, 14px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--glass-bg);
  outline: none;
}
.post-gallery-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 185, 118, 0.5);
}
.post-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .post-gallery-item:hover img { transform: scale(1.03); }
  .post-gallery-item img { transition: transform 0.25s ease; }
}

.prose {
  color: var(--ink-1);
  line-height: 1.85;
  font-size: 1.05rem;
}
.prose p { margin: 0 0 18px; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: var(--ink-0); margin: 28px 0 12px; }
.prose h1, .prose h2 { font-weight: 800; }
.prose h1 { font-size: clamp(1.75rem, 4vw, 2.2rem); line-height: 1.15; }
.prose h2 { font-size: 1.6rem; }
.prose h3 { font-size: 1.3rem; }
.prose h4 { font-size: 1.1rem; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(232,185,118,0.35); }
.prose a:hover { color: var(--ink-0); border-color: var(--ink-0); }
.prose ul, .prose ol { margin: 0 0 18px; padding-inline-start: 22px; }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  border-inline-start: 3px solid var(--accent);
  padding: 8px 18px;
  margin: 20px 0;
  color: var(--ink-0);
  font-style: italic;
  background: rgba(232,185,118,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.prose img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 20px 0; }
.prose code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}

/* FAQ */
.faq-section { margin: 50px 0; }
.faq-section h2 { margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink-0);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { transition: transform var(--t); color: var(--accent); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 22px;
  color: var(--ink-1);
  line-height: 1.75;
}

/* Booking sidebar */
.single-side {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-card { padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.booking-price .amount {
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: 2.2rem;
  color: var(--ink-0);
  font-weight: 700;
  display: block;
}
.booking-price .per {
  color: var(--ink-2);
  font-size: 0.9rem;
}
.booking-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.booking-meta > div { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 0.93rem; }
.booking-meta dt { color: var(--ink-2); margin: 0; }
.booking-meta dd { color: var(--ink-0); margin: 0; font-weight: 500; text-align: end; }
.booking-cta { justify-content: center; }

.host-card { padding: 22px; }
.host-row { display: flex; align-items: center; gap: 14px; }
.host-avatar.lg {
  width: 52px; height: 52px;
  font-size: 1.2rem;
  border: 2px solid rgba(255,255,255,0.1);
}
.host-avatar.host-avatar-photo {
  padding: 0;
  overflow: hidden;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
}
.host-avatar.host-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.host-label { color: var(--ink-2); font-size: 0.82rem; }
.host-name { color: var(--ink-0); font-weight: 700; font-size: 1.05rem; font-family: "Google Sans", "Heebo", sans-serif; }

.retreat-card h3 a { color: inherit; }
.retreat-card h3 a:hover { color: var(--accent); }
.retreat-media-link { display: block; }

.related-section { padding: 40px 0; }

@media (max-width: 960px) {
  .single-grid { grid-template-columns: 1fr; }
  .single-side { position: static; }
}

/* -------- Category page -------- */
.category-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-icon.xl {
  width: 86px; height: 86px;
  border-radius: 24px;
  font-size: 2.6rem;
  background: var(--cat-bg, rgba(255,255,255,0.1));
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 20px;
  display: grid;
  place-items: center;
}

/* -------- Magazine / Blog -------- */
.magazine-section {
  padding: clamp(20px, 4vw, 36px) 0 clamp(28px, 5vw, 44px);
}

.blog-hub-about {
  margin: 0 calc(-1 * var(--page-pad));
  width: calc(100% + 2 * var(--page-pad));
  max-width: none;
  box-sizing: border-box;
}

.blog-hub-about__band {
  padding: clamp(36px, 7vw, 72px) var(--page-pad);
  background:
    linear-gradient(165deg, rgba(212, 165, 116, 0.14) 0%, rgba(163, 122, 76, 0.09) 42%, rgba(12, 60, 30, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-hub-about__panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 40px);
  border-radius: clamp(16px, 3vw, 24px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 64px -32px rgba(0, 0, 0, 0.45);
}

.blog-hub-about__head {
  text-align: center;
  margin-bottom: clamp(22px, 4vw, 36px);
  max-width: 48rem;
  margin-inline: auto;
}

.blog-hub-about__head .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.blog-hub-about__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-0, #fff);
}

.blog-hub-about__grid {
  display: grid;
  gap: clamp(16px, 3vw, 22px);
  width: 100%;
}

@media (min-width: 768px) {
  .blog-hub-about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 26px) clamp(28px, 4vw, 44px);
  }
}

.blog-hub-about__para {
  margin: 0;
  font-size: clamp(1rem, 2.6vw, 1.06rem);
  line-height: 1.72;
  color: var(--ink-1, rgba(255, 255, 255, 0.9));
  text-align: start;
}

@media (min-width: 1100px) {
  .blog-hub-about__para {
    font-size: 1.08rem;
  }
}
.magazine-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), border-color var(--t);
}
.magazine-feature:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.mf-media {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}
.mf-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.mf-body h2 { margin: 8px 0; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.mf-body p { color: var(--ink-1); }

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.magazine-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), border-color var(--t);
}
.magazine-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.mc-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.mc-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.mc-body h3 { font-family: "Google Sans", "Heebo", sans-serif; font-size: 1.2rem; margin: 0; }
.mc-body p { color: var(--ink-1); margin: 0; font-size: 0.95rem; }

@media (max-width: 800px) {
  .magazine-feature { grid-template-columns: 1fr; }
}

/* -------- Community page -------- */
.supplier-hub-section {
  padding: 0 0 40px;
  margin-top: -10px;
}
@media (min-width: 900px) {
  .supplier-hub-section { padding: 8px 0 56px; margin-top: -16px; }
}
.supplier-hub-card {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 22px;
  align-items: start;
}
@media (min-width: 720px) {
  .supplier-hub-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.95fr);
  }
}
.supplier-hub-intro .section-kicker { margin-bottom: 8px; display: inline-block; }
.supplier-hub-intro h2 {
  margin: 0 0 10px;
  font-family: "Google Sans", "Heebo", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
}
.supplier-hub-lead { margin: 0; color: var(--ink-1); max-width: 520px; line-height: 1.55; font-size: 0.97rem; }
.supplier-hub-notice {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(12, 60, 30, 0.07);
  border: 1px solid rgba(12, 60, 30, 0.14);
  color: var(--ink-0);
  font-size: 0.94rem;
  line-height: 1.5;
}
.supplier-hub-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.supplier-hub-actions .btn {
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.supplier-hub-soft {
  font-size: 0.92rem;
  color: var(--ink-2);
  text-decoration: underline;
  text-align: center;
  margin-top: 2px;
}
.supplier-hub-soft:hover { color: var(--ink-1); }

.community-section { padding: 40px 0 80px; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.community-tile {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), border-color var(--t);
}
.community-tile:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.community-tile h3 { font-family: "Google Sans", "Heebo", sans-serif; font-size: 1.4rem; margin: 6px 0 2px; }
.community-tile p { color: var(--ink-1); margin: 0 0 10px; }
.community-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.community-icon.whatsapp { color: #25d366; background: rgba(37, 211, 102, 0.08); border-color: rgba(37,211,102,0.3); }
.community-icon.facebook { color: #1877f2; background: rgba(24, 119, 242, 0.1); border-color: rgba(24,119,242,0.35); }
.community-icon.instagram { color: #e1306c; background: rgba(225, 48, 108, 0.08); border-color: rgba(225,48,108,0.3); }
.community-icon.mail { color: var(--accent); background: rgba(232, 185, 118, 0.08); border-color: rgba(232,185,118,0.3); }
.newsletter-tile .community-form { margin-top: auto; }

/* -------- 404 -------- */
.notfound-section { padding: 160px 0; display: grid; place-items: center; }
.notfound-card { padding: 60px; text-align: center; max-width: 600px; }
.notfound-card h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 10px 0 14px; }
.notfound-card p { color: var(--ink-1); margin: 0 0 24px; }
.notfound-card .hero-cta { justify-content: center; }

/* -------- Mobile nav -------- */
@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--brand-pine);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
    border-top: 1px solid rgba(255,255,255,0.12);
    z-index: 55;
    max-height: min(72vh, calc(100dvh - 70px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; display: flex; }
  .main-nav a {
    padding: 16px 22px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.06rem;
    font-weight: 600;
    min-height: 48px;
    align-items: center;
    display: flex;
    color: #ffffff !important;
    background: transparent;
    border-radius: 0;
  }
  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255,255,255,0.1);
    color: #ffffff !important;
    outline: none;
  }
  .main-nav a.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff !important;
    font-weight: 700;
  }
  .main-nav a::after { display: none; }
  .main-nav .main-nav-mobile-search {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 22px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.06rem;
    font-weight: 600;
    min-height: 48px;
    color: #ffffff !important;
    background: transparent;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: start;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    flex-shrink: 0;
  }
  .main-nav .main-nav-mobile-search:hover,
  .main-nav .main-nav-mobile-search:focus-visible {
    background: rgba(255,255,255,0.1);
    color: #ffffff !important;
    outline: none;
  }
}

/* -------- Saved state -------- */
.retreat-save.saved {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* ensure hero-slides container has stacked slides */
.hero-slides { display: block; }

/* =========================================================
   CATEGORIES STORIES (home rail — Instagram-style)
   ========================================================= */
.cat-stories-section { padding: 56px 0 24px; }
.cat-stories {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to left, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(to left, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.cat-stories::-webkit-scrollbar { height: 6px; }
.cat-stories::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
}

.cat-story {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-0);
  transition: transform var(--t-fast);
}
.cat-story:hover { transform: translateY(-2px); }
.cat-story:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 12px; }

.cat-story-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 3px;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 210deg, #e8b976, #c8876b, #b79fd1, #8fb7a3, #e8b976);
  position: relative;
  isolation: isolate;
}
.cat-story-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: var(--story-bg, linear-gradient(135deg,#8fb7a3,#5a8878));
  opacity: 0.9;
  z-index: 0;
}
.cat-story-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  border: 2px solid var(--bg-0);
  display: grid;
  place-items: center;
}
.cat-story-avatar--gradient {
  background-image: var(--story-bg, linear-gradient(135deg,#8fb7a3,#5a8878));
}
.cat-story-icon {
  font-size: 1.9rem;
  color: var(--ink-0);
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.cat-story-label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--ink-1);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 92px;
  word-break: break-word;
}

@media (max-width: 720px) {
  .cat-story { width: 82px; }
  .cat-story-ring { width: 74px; height: 74px; }
  .cat-story-label { max-width: 82px; font-size: 0.78rem; }
}

/* WordPress / Elementor imported content (migration) */
.wp-import.static-page-content,
.static-page-content.wp-import { overflow-x: auto; }
.wp-import img, .static-page-content img { max-width: 100% !important; height: auto !important; }
.wp-import .elementor-section, .wp-import .elementor-container { max-width: 100% !important; }
.single-content .prose .wp-import iframe { max-width: 100%; }

/* =========================================================
   LIGHT THEME OVERRIDES (greens) — added 2026-05
   Light backgrounds, dark-green text, soft green accents.
   Keep this block at the end — high source order = wins.
   ========================================================= */

/* Body fallback color */
html, body { background: #ffffff; color: var(--ink-0); }

/* Buttons on accent — text must read on light green */
.btn-primary { background: var(--accent); color: #ffffff; box-shadow: 0 8px 18px -10px rgba(12,60,30,0.35); }
.btn-primary:hover { background: #0a3018; color: #ffffff; }
.btn-ghost {
  background: rgba(12,60,30,0.04);
  border-color: rgba(12,60,30,0.18);
  color: var(--ink-0);
}
.btn-ghost:hover { background: rgba(12,60,30,0.08); border-color: rgba(12,60,30,0.32); }
.icon-btn {
  background: rgba(12,60,30,0.04);
  border-color: rgba(12,60,30,0.14);
  color: var(--ink-0);
}
.icon-btn:hover { background: rgba(12,60,30,0.10); }

/* Site header — translucent white */
.site-header::before {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(12,60,30,0.08);
}
@supports ((backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px))) {
  .site-header::before { background: rgba(255,255,255,0.65); }
}

/* Logo mark text */
.logo-mark { color: #ffffff; }

/* Nav links */
.main-nav a { color: var(--ink-1); }
.main-nav a:hover { color: var(--ink-0); }

/* Menu toggle */
.menu-toggle {
  background: rgba(12,60,30,0.05);
  border-color: rgba(12,60,30,0.16);
}
.menu-toggle span { background: var(--ink-0); }

/* Hero overlay still darkens image (image areas need white text). Keep. */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 60, 30, 0.78) 0%, rgba(12, 60, 30, 0.4) 45%, rgba(12, 60, 30, 0.1) 80%),
    linear-gradient(180deg, rgba(12, 60, 30, 0.05) 0%, rgba(12, 60, 30, 0.18) 60%, var(--bg-0) 100%);
}
.hero-content, .hero-content h1, .hero-content p, .hero-content .meta-item { color: #ffffff; }
.hero-content .glass-chip { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); color: #fff; }
.hero-arrow {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-dot { background: rgba(255,255,255,0.4); }
.hero-dot.active { background: #ffffff; }
.meta-divider { background: rgba(255,255,255,0.4); }

/* Search form */
.search-field {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.12);
}
.search-field:hover { background: #fafdf3; }

/* Filter chips */
.chip {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.14);
  color: var(--ink-1);
}
.chip:hover {
  background: rgba(180,214,160,0.25);
  border-color: rgba(12,60,30,0.28);
}
.chip.active { background: var(--accent); color: #ffffff; border-color: var(--accent); }

/* Bento, category cards */
.bento, .category {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.10);
  color: var(--ink-0);
}
.bento:hover, .category:hover { border-color: rgba(12,60,30,0.22); box-shadow: 0 12px 30px -16px rgba(12,60,30,0.18); }

/* Category dark image overlay — keep dark for legibility on photos */
.category::after,
.workshop-card::after {
  background: linear-gradient(180deg, rgba(12,60,30,0) 30%, rgba(12,60,30,0.65) 100%);
}

/* Retreat / workshop cards */
.retreat-card {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.10);
  color: var(--ink-0);
}
.retreat-card:hover { border-color: rgba(12,60,30,0.22); box-shadow: 0 14px 30px -16px rgba(12,60,30,0.20); }
.retreat-facts {
  background: rgba(12, 60, 30, 0.05);
  border-color: rgba(12, 60, 30, 0.14);
}

.workshop-card {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.10);
}
.workshop-card:hover { border-color: rgba(12,60,30,0.25); }

/* Workshop card text reads on dark image, keep readable */
.workshop-card, .workshop-card h3, .workshop-card p { color: #ffffff; }
.workshop-date { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.32); color: #fff; }
.workshop-pill { background: var(--accent); color: #ffffff; }

/* Magazine cards */
.magazine-feature, .magazine-card {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.10);
  color: var(--ink-0);
}
.magazine-feature:hover, .magazine-card:hover { border-color: rgba(12,60,30,0.22); }

/* Community */
.community-tile {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.10);
  color: var(--ink-0);
}
.community-tile:hover { border-color: rgba(12,60,30,0.22); }
.community-icon, .community-icon.mail {
  background: rgba(180,214,160,0.25);
  border: 1px solid rgba(12,60,30,0.14);
  color: var(--accent);
}

/* FAQs */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(12,60,30,0.10);
}
.faq-icon { color: var(--accent); }

/* Glass primitives */
.glass {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(12,60,30,0.10);
  box-shadow: var(--glass-shadow);
  color: var(--ink-0);
}
.glass-soft {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(12,60,30,0.10);
  color: var(--ink-0);
}
.glass-chip {
  background: rgba(180,214,160,0.35);
  border: 1px solid rgba(12,60,30,0.14);
  color: var(--ink-0);
}
@media (min-width: 900px) {
  @supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .glass { background: rgba(255,255,255,0.7); backdrop-filter: blur(10px) saturate(120%); }
    .glass-soft { background: rgba(255,255,255,0.55); }
    .glass-chip { backdrop-filter: blur(8px); }
  }
}

/* Footer */
.site-footer {
  background:
    linear-gradient(180deg, rgba(12,60,30,0) 0%, rgba(12,60,30,0.05) 40%, #f6faf0 100%);
  border-top: 1px solid rgba(12,60,30,0.08);
  color: var(--ink-1);
}

/* Single post / prose */
.prose, .prose p, .prose li { color: var(--ink-1); }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(12,60,30,0.35); }
.prose blockquote { border-inline-start: 3px solid var(--accent); color: var(--ink-0); }
.breadcrumbs { color: var(--ink-2); }
.breadcrumbs a:hover { color: var(--accent); }
.single-meta { color: var(--ink-1); }
.single-meta strong { color: var(--accent); }

/* Categories rail story labels */
.cat-story-label { color: var(--ink-1); }

/* Save / wishlist buttons */
.retreat-save {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(12,60,30,0.18);
  color: var(--ink-0);
}
.retreat-save:hover { background: var(--accent); color: #ffffff; }

/* Section heads */
.section-kicker { color: var(--accent-2); }
.link-arrow { color: var(--ink-1); }
.link-arrow:hover { color: var(--accent); }

/* Inputs / forms */
input[type="text"], input[type="email"], input[type="search"], input[type="url"],
input[type="number"], input[type="date"], textarea, select {
  background: #ffffff;
  color: var(--ink-0);
  border-color: rgba(12,60,30,0.18);
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }

/* שדות טקסט במובייל: מניעת זום אוטומטי ב‑iOS והקלדה נוחה */
@media (max-width: 519.98px) {
  input[type="text"], input[type="email"], input[type="search"], input[type="url"],
  input[type="number"], input[type="tel"], input[type="date"], input[type="password"],
  textarea, select {
    font-size: 16px !important;
  }
}

/* Workshop rail — track */
.workshops-rail::-webkit-scrollbar-thumb { background: rgba(12,60,30,0.18); }

/* Pulse / accent dots */
.pulse { background: var(--accent-4); box-shadow: 0 0 0 0 rgba(217,232,154,0.6); }
.logo-dot { background: var(--accent); }

/* === Late fixes: white text on dark imagery + center 404 === */

/* Workshop card text — image is darkened, must be white */
.workshop-card,
.workshop-card h3,
.workshop-card h4,
.workshop-card p,
.workshop-card .workshop-meta,
.workshop-card .workshop-meta span,
.workshop-card .workshop-date .day,
.workshop-card .workshop-date .month { color: #ffffff !important; }

/* Hero CTA buttons live on dark imagery — ghost text must be white */
.hero-cta .btn-ghost,
.hero .btn-ghost {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.32);
}
.hero-cta .btn-ghost:hover,
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}

/* 404 — really center the card horizontally */
.notfound-section {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notfound-inner { display: flex; justify-content: center; }
.notfound-card { margin: 0 auto; }

/* === Imported WP content: cap inline SVG icons to text size === */
.wp-import svg,
.static-page-content svg,
.prose svg,
.single-content svg,
.article-content svg {
  width: 1em;
  height: 1em;
  max-width: 1em;
  max-height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
  flex: 0 0 auto;
}
/* Slightly larger when used as a standalone block (e.g. centered badge) */
.wp-import p > svg:only-child,
.wp-import .icon-block svg,
.static-page-content p > svg:only-child {
  width: 1.25em;
  height: 1.25em;
}

/* ============================================================
   STAR RATINGS · shared component
   ============================================================ */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 1rem;
  line-height: 1;
  color: #e6c068;
  letter-spacing: 1px;
}
.stars.sm { font-size: 0.95rem; }
.stars.md { font-size: 1.4rem; }
.stars.lg { font-size: 1.8rem; }
.stars .star { display: inline-block; }
.stars .star.off { color: rgba(12, 60, 30, 0.18); }
.stars .star.half {
  background: linear-gradient(90deg, #e6c068 50%, rgba(12, 60, 30, 0.18) 50%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
[dir="rtl"] .stars .star.half {
  background: linear-gradient(270deg, #e6c068 50%, rgba(12, 60, 30, 0.18) 50%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(230, 192, 104, 0.12);
  border: 1px solid rgba(230, 192, 104, 0.4);
  font-size: 0.95rem;
  color: var(--ink-0);
}
.rating-pill .muted { color: var(--ink-2); }
.rating-pill strong { font-weight: 700; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(47, 125, 63, 0.13);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  margin-inline-start: 6px;
  border: 1px solid rgba(47, 125, 63, 0.3);
}

/* ============================================================
   SESSIONS / CALENDAR (single page)
   ============================================================ */
.sessions-section { margin-top: 48px; }
.sessions-head { margin-bottom: 18px; }

.sessions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.session-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  transition: transform 200ms, box-shadow 200ms;
}
.session-item:hover:not(.is-full):not(.is-cancel) {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(12, 60, 30, 0.25);
}
.session-item.is-full { opacity: 0.85; }
.session-item.is-cancel { opacity: 0.6; }
.session-item.is-cancel .session-title { text-decoration: line-through; }

.session-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(12, 60, 30, 0.06);
  border: 1px solid rgba(12, 60, 30, 0.1);
  text-align: center;
  line-height: 1;
}
.session-date strong { font-size: 1.5rem; color: var(--ink-0); font-weight: 800; }
.session-date span { font-size: 0.78rem; color: var(--ink-2); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

.session-body { min-width: 0; }
.session-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-0);
  margin-bottom: 6px;
}
.session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.session-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.session-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.session-pill.sm { font-size: 0.72rem; padding: 2px 9px; margin-inline-start: 6px; }
.session-pill.open      { background: rgba(47, 125, 63, 0.14); color: var(--accent-2); }
.session-pill.seats     { background: rgba(47, 125, 63, 0.14); color: var(--accent-2); }
.session-pill.seats.few { background: rgba(232, 152, 76, 0.18); color: #b56918; }
.session-pill.sold-out  { background: rgba(176, 30, 30, 0.12); color: #b01e1e; letter-spacing: 0.06em; }
.session-pill.cancelled { background: rgba(0,0,0,0.06); color: var(--ink-3); }

@media (max-width: 700px) {
  .session-item {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 14px;
  }
  .session-status {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(12, 60, 30, 0.07);
    padding-top: 12px;
    margin-top: 4px;
  }
  .session-date { min-width: 56px; padding: 8px; }
  .session-date strong { font-size: 1.25rem; }
}

/* ============================================================
   REVIEWS · single page block
   ============================================================ */
.reviews-section { margin-top: 56px; padding-top: 8px; }
.reviews-head { margin-bottom: 18px; align-items: center; }
.reviews-write-link { white-space: nowrap; }

.reviews-summary {
  padding: 22px 24px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}
.reviews-summary-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.big-score {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink-0);
  letter-spacing: -0.02em;
}
.verified-summary {
  margin-top: 4px;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 700;
}

.reviews-breakdown {
  display: grid;
  gap: 6px;
}
.rb-row {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-2);
}
.rb-label { text-align: start; font-weight: 600; color: var(--ink-1); }
.rb-bar {
  background: rgba(12, 60, 30, 0.08);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.rb-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #e6c068, #c8a058);
  border-radius: 999px;
  transition: width 400ms ease-out;
}
.rb-count { text-align: end; }

.reviews-empty {
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.reviews-empty a { color: var(--accent-2); font-weight: 700; }

.review-flash {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}
.review-flash.success { background: rgba(47, 125, 63, 0.1); color: var(--accent-2); border: 1px solid rgba(47, 125, 63, 0.25); }
.review-flash.error   { background: rgba(176, 30, 30, 0.08); color: #b01e1e; border: 1px solid rgba(176, 30, 30, 0.2); }

.reviews-list {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.review-item {
  padding: 18px 20px;
  border-radius: 16px;
  position: relative;
}
.review-item.is-verified {
  border-color: rgba(47, 125, 63, 0.3);
  box-shadow: 0 1px 0 rgba(47, 125, 63, 0.15) inset;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.review-author { color: var(--ink-0); font-weight: 700; }
.review-title {
  font-size: 1.1rem;
  margin: 6px 0 4px;
  color: var(--ink-0);
  font-weight: 700;
}
.review-body {
  margin: 0 0 8px;
  color: var(--ink-1);
  line-height: 1.65;
  white-space: pre-line;
}
.review-foot {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-3);
}
.review-foot a { color: var(--ink-1); }

.review-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin: 10px 0 4px;
}
.review-photo {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: transform 200ms;
}
.review-photo:hover { transform: scale(1.04); }
.review-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Review form */
.review-form {
  padding: 24px;
  border-radius: 20px;
  scroll-margin-top: 100px;
}
.review-form h3 { margin: 0 0 6px; color: var(--ink-0); }
.review-form .muted { color: var(--ink-2); margin: 0 0 18px; font-size: 0.9rem; }
.review-form .form-field { display: block; margin-bottom: 14px; }
.review-form .field-label { display: block; font-weight: 600; color: var(--ink-1); margin-bottom: 6px; font-size: 0.92rem; }
.review-file__control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border-strong);
  box-sizing: border-box;
  cursor: pointer;
}

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

.review-file__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2, #2f7d3f), var(--accent, #0c3c1e));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-file__name {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ink-2, #335a44);
  font-size: 0.9rem;
  line-height: 1.4;
}

.review-photos-hint {
  display: block;
  margin-top: 6px;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--glass-border-strong);
  color: var(--ink-0);
  font: inherit;
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(47, 125, 63, 0.12);
}
.review-form textarea { resize: vertical; min-height: 120px; }
.review-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Star rating input */
.star-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.star-radio {
  cursor: pointer;
  display: inline-flex;
}
.star-radio input { position: absolute; opacity: 0; pointer-events: none; }
.star-radio .star-glyph {
  font-size: 2rem;
  line-height: 1;
  color: rgba(12, 60, 30, 0.18);
  transition: transform 120ms, color 120ms;
  display: inline-block;
}
.star-radio:hover .star-glyph,
.star-radio:hover ~ .star-radio .star-glyph,
.star-radio input:checked ~ .star-glyph,
.star-radio input:focus-visible ~ .star-glyph,
.star-input:has(input:checked) .star-radio:has(input:checked) .star-glyph,
.star-input:has(input:checked) .star-radio:has(input:checked) ~ .star-radio .star-glyph {
  color: #e6c068;
}
.star-radio:hover .star-glyph { transform: scale(1.12); }

@media (max-width: 720px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    text-align: start;
  }
  .review-row-2 { grid-template-columns: 1fr; }
  .review-form { padding: 18px; }
}

/* Hero rating link */
.single-meta .rating-link,
.single-meta .dates-link {
  color: var(--ink-0);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms;
}
.single-meta .rating-link:hover,
.single-meta .dates-link:hover { border-color: rgba(255,255,255,0.5); }

/* ============================================================
   INSTRUCTOR PAGE
   ============================================================ */
.instructor-hero {
  padding: 110px 0 32px;
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(180, 214, 160, 0.25), transparent 60%),
    radial-gradient(700px 500px at 90% 10%, rgba(232, 192, 104, 0.18), transparent 60%);
}
.instructor-hero-inner .breadcrumbs { margin-bottom: 18px; }

.instructor-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
}
.instructor-photo-wrap { display: grid; place-items: center; }
.instructor-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 40px -16px rgba(12, 60, 30, 0.3);
  background: rgba(255,255,255,0.5);
}
.instructor-photo.placeholder {
  display: grid;
  place-items: center;
  font-size: 5rem;
  color: var(--accent-2);
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
  font-weight: 800;
}
.instructor-info h1 { margin: 6px 0 6px; }
.instructor-title { color: var(--ink-2); font-size: 1.05rem; margin: 0 0 14px; }
.instructor-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.instructor-body { padding: 40px 0 80px; }
.instructor-grid { display: block; }
.instructor-content { max-width: 920px; margin: 0 auto; }
.instr-section { margin-top: 36px; }
.instr-section:first-child { margin-top: 8px; }
.instr-section > h2 {
  margin: 0 0 12px;
  color: var(--ink-0);
}

@media (max-width: 720px) {
  .instructor-hero { padding: 92px 0 16px; }
  .instructor-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px;
    gap: 16px;
  }
  .instructor-photo, .instructor-photo.placeholder {
    width: 140px; height: 140px; margin: 0 auto;
    font-size: 3.5rem;
  }
  .instructor-meta { justify-content: center; }
}

/* Instructor mini-card (used on single + index) */
.instructor-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.instructor-card-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms, box-shadow 180ms;
}
.instructor-card-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -22px rgba(12, 60, 30, 0.28);
}
.instructor-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.instructor-thumb img { width: 100%; height: 100%; object-fit: cover; }
.instructor-thumb .thumb-initial { color: var(--accent-2); font-weight: 800; font-size: 1.4rem; }
.instructor-mini-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.instructor-mini-body strong { color: var(--ink-0); font-weight: 700; }
.instructor-mini-body .muted { color: var(--ink-2); font-size: 0.85rem; }
.instructor-mini-body .mini-rating { color: #b56918; font-weight: 700; font-size: 0.85rem; margin-top: 2px; }

.single-instructors { margin-top: 40px; }

/* ============================================================
   תפריט ראשי — כדוריות ירוק כהה + טקסט לבד | גיבור עמוד פריט — כותרת לבנה
   ============================================================ */

@media (min-width: 981px) {
  .site-header .main-nav {
    gap: 8px 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .site-header .main-nav a {
    color: #ffffff !important;
    background: var(--brand-pine);
    padding: 9px 16px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.14);
    font-weight: 600;
    font-size: 0.92rem !important;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(11,48,26,0.18);
    transition:
      transform var(--t-fast),
      background var(--t-fast),
      color var(--t-fast),
      filter var(--t-fast);
  }
  .site-header .main-nav a:hover {
    background: #082314;
    color: #ffffff !important;
    transform: translateY(-1px);
  }
  .site-header .main-nav a:focus-visible {
    outline: 2px solid var(--accent-4);
    outline-offset: 3px;
  }
  .site-header .main-nav a::after { display: none !important; }
  .site-header .main-nav a.is-active {
    background: var(--accent-2);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2);
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(11, 48, 26, 0.22);
  }
}

.single-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.42);
}

.single-hero .breadcrumbs {
  color: rgba(255,255,255, 0.9);
}

.single-hero .breadcrumbs span {
  color: rgba(255,255,255, 0.42);
  opacity: 1;
}

.single-hero .breadcrumbs a {
  display: inline-flex;
  align-items: center;
  color: #ffffff !important;
  background: var(--brand-pine);
  padding: 7px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}

.single-hero .breadcrumbs a:hover {
  background: #082314;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.single-hero .single-head.glass-chip,
.single-hero .single-head {
  background: var(--brand-pine) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.single-hero .single-head .pulse {
  background: var(--accent-4);
  box-shadow: 0 0 0 0 rgba(217,232,154, 0.5);
}

.single-hero .single-lead {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.38);
}

.single-hero .single-meta,
.single-hero .single-meta .meta-item {
  color: rgba(255, 255, 255, 0.9) !important;
}

.single-hero .single-meta strong {
  color: #ffffff !important;
}

.single-hero .single-meta .rating-link,
.single-hero .single-meta .dates-link {
  color: #ffffff !important;
  border-bottom-color: rgba(255,255,255, 0.4);
}

.single-hero .meta-divider {
  background: rgba(255,255,255, 0.4) !important;
}

/* =============================================================================
   Experience page v2 — premium, modular layout (BookRetreats-inspired)
   Mobile-first. שמות מחלקות תחת `exp-*` כדי לא להתנגש עם הסגנונות הקיימים.
   ========================================================================== */

:root {
  --exp-card-bg: #ffffff;
  --exp-card-border: rgba(12, 60, 30, 0.10);
  --exp-card-border-strong: rgba(12, 60, 30, 0.16);
  --exp-card-shadow: 0 1px 2px rgba(12,60,30,0.04), 0 12px 32px rgba(12,60,30,0.06);
  --exp-radius: 18px;
  --exp-radius-sm: 12px;
  --exp-radius-lg: 24px;
  --exp-pad: clamp(16px, 4vw, 28px);
  --exp-gap: clamp(14px, 3.5vw, 22px);
  --exp-section-gap: clamp(28px, 6vw, 56px);
  --exp-ink: #0c3c1e;
  --exp-ink-soft: #335a44;
  --exp-ink-muted: #5a7a64;
  --exp-accent: #0c3c1e;
  --exp-accent-soft: #f1f7e9;
  --exp-success: #2f7d3f;
  --exp-warn: #b14a1f;
}

/* --- HERO -------------------------------------------------------------------- */
.exp-hero {
  /* Header is in-flow (sticky), not fixed — no large offset needed */
  padding: clamp(12px, 2.5vw, 24px) 0 clamp(20px, 5vw, 40px);
  background: linear-gradient(180deg, rgba(241,247,233,0.6) 0%, rgba(255,255,255,1) 100%);
}
.exp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--exp-ink-muted);
  margin: 0 0 clamp(10px, 2vw, 14px);
}
.exp-breadcrumbs a {
  color: var(--exp-ink-soft);
  text-decoration: none;
  border-radius: 6px;
  padding: 4px 6px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.exp-breadcrumbs a:hover { color: var(--exp-accent); background: var(--exp-accent-soft); }
.exp-breadcrumbs span { opacity: 0.5; }

/* --- Hero gallery — ריבועים (בנטו: גדול + רשת), מובייל ראשון ---------------- */
.exp-hero-gallery {
  --hg-gap: clamp(10px, 1.8vw, 14px);
  --hg-radius: clamp(12px, 2vw, 16px);
  direction: ltr;
  display: grid;
  gap: var(--hg-gap);
  margin: 0;
  width: 100%;
  min-width: 0;
}
.exp-hg__cell {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--hg-radius);
  overflow: hidden;
  background: var(--exp-accent-soft, #f1f7e9);
  outline: none;
  text-decoration: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  aspect-ratio: 1 / 1;
}
.exp-hg__cell:focus-visible {
  outline: 3px solid var(--exp-accent-2, #2f7d3f);
  outline-offset: 2px;
  z-index: 2;
}
.exp-hg__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.2, 1);
}
.exp-hg__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 62%
  );
  transform: translateX(110%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .exp-hg__cell:hover img {
    transform: scale(1.04);
  }
  .exp-hg__cell:hover .exp-hg__shine {
    transform: translateX(-110%);
  }
}
.exp-hg__cell--video .exp-hg__video-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(145deg, #2a3d2a 0%, #1a261a 100%);
}
.exp-hg__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 32, 18, 0.28);
  pointer-events: none;
}
.exp-hg__play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.exp-hg__stack,
.exp-hg__matrix,
.exp-hg__quad {
  display: grid;
  gap: var(--hg-gap);
  min-width: 0;
  min-height: 0;
}
.exp-hg__more {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 32, 18, 0.42) 0%, rgba(8, 32, 18, 0.72) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}
.exp-hg__more-count {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
}
.exp-hg__more-icon {
  opacity: 0.95;
}
.exp-hg__more-label {
  font-size: clamp(0.72rem, 2.8vw, 0.88rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 9em;
}
.exp-hero-gallery--empty {
  aspect-ratio: 1 / 1;
  max-height: min(360px, 88vw);
  border-radius: var(--hg-radius);
  background: linear-gradient(135deg, #f1f7e9, #d9e89a);
  display: grid;
  place-items: center;
}
.exp-hg__fallback {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--exp-ink-muted);
}

/* מובייל — ריבועים, ראשית למעלה */
.exp-hero-gallery--1 {
  grid-template-columns: 1fr;
  max-width: min(420px, 100%);
  margin-inline: auto;
}
.exp-hero-gallery--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.exp-hero-gallery--3 {
  grid-template-columns: 1fr;
}
.exp-hero-gallery--3 > .exp-hg__cell:first-child {
  max-width: 100%;
}
.exp-hero-gallery--3 .exp-hg__stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.exp-hero-gallery--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.exp-hero-gallery--4 .exp-hg__stack--three {
  display: contents;
}
.exp-hero-gallery--5plus {
  grid-template-columns: 1fr;
}
.exp-hero-gallery--5plus .exp-hg__matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* דסקטופ — בנטו ריבועי (גדול משמאל + 2×2 מימין) */
@media (min-width: 768px) {
  .exp-hero-gallery--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(440px, 42vw);
  }
  .exp-hero-gallery--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    aspect-ratio: 3 / 2;
    max-height: min(480px, 44vw);
  }
  .exp-hero-gallery--3 > .exp-hg__cell:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
  .exp-hero-gallery--3 .exp-hg__stack {
    display: contents;
  }
  .exp-hero-gallery--3 .exp-hg__stack .exp-hg__cell:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
  }
  .exp-hero-gallery--3 .exp-hg__stack .exp-hg__cell:nth-child(2) {
    grid-column: 3;
    grid-row: 2;
  }
  .exp-hero-gallery--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(480px, 44vw);
  }
  .exp-hero-gallery--4 .exp-hg__stack--three {
    display: contents;
  }
  .exp-hero-gallery--5plus {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    aspect-ratio: 2 / 1;
    max-height: min(520px, 46vw);
  }
  .exp-hero-gallery--5plus > .exp-hg__cell:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
  .exp-hero-gallery--5plus .exp-hg__matrix {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: var(--hg-gap);
    height: 100%;
    min-height: 0;
  }
  .exp-hero-gallery--5plus .exp-hg__matrix .exp-hg__cell {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }
}

@media (min-width: 1200px) {
  .exp-hero-gallery {
    --hg-gap: 10px;
    --hg-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exp-hg__cell img,
  .exp-hg__shine {
    transition: none;
  }
  .exp-hg__cell:hover img,
  .exp-hg__cell:hover .exp-hg__shine {
    transform: none;
  }
}

.exp-hero-head { max-width: 920px; }
.exp-hero-head__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.exp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--exp-ink);
  background: var(--exp-accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--exp-card-border);
  min-height: 28px;
}
.exp-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--exp-success);
  box-shadow: 0 0 0 3px rgba(47,125,63,0.18);
}
.exp-pill--sold { background: rgba(177,74,31,0.12); color: var(--exp-warn); border-color: rgba(177,74,31,0.25); }
.exp-pill--few { background: rgba(232,185,118,0.18); color: #8a5a1a; border-color: rgba(232,185,118,0.35); }
.exp-pill.sm { font-size: 0.72rem; padding: 3px 8px; min-height: 22px; }

.exp-rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--exp-ink);
  background: #fff8e8;
  border: 1px solid rgba(232,185,118,0.45);
  border-radius: 999px;
  padding: 5px 12px;
  text-decoration: none;
  min-height: 30px;
}
.exp-rating-chip svg { color: #e8b976; }
.exp-rating-chip strong { font-weight: 700; }
.exp-rating-chip__count { color: var(--exp-ink-muted); }

.exp-hero h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--exp-ink);
  letter-spacing: -0.01em;
}
.exp-hero-lead {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--exp-ink-soft);
  margin: 0 0 18px;
  line-height: 1.55;
  max-width: 720px;
}
.exp-hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0 0 14px;
  padding: 0;
  color: var(--exp-ink-soft);
  font-size: 0.95rem;
}
.exp-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.exp-hero-meta svg { color: var(--exp-accent-2, var(--exp-accent)); flex-shrink: 0; }
.exp-hero-meta a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.exp-hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.exp-hero-tags a {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  color: var(--exp-ink-soft);
  background: var(--exp-accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  min-height: 28px;
}
.exp-hero-tags a:hover { background: var(--exp-accent); color: #fff; }

/* --- Anchor nav -------------------------------------------------------------- */
.exp-section-nav {
  position: sticky;
  top: 64px;
  z-index: 5;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--exp-card-border);
  border-bottom: 1px solid var(--exp-card-border);
}
.exp-section-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.exp-section-nav ul::-webkit-scrollbar { display: none; }
.exp-section-nav a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--exp-ink-soft);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  min-height: 44px;
}
.exp-section-nav a:hover { color: var(--exp-accent); border-bottom-color: var(--exp-accent); }

/* --- Body grid (sticky sidebar on desktop) ----------------------------------- */
.exp-body {
  padding: clamp(20px, 5vw, 40px) 0 clamp(40px, 8vw, 80px);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--exp-section-gap);
  align-items: start;
}
.exp-content { min-width: 0; }
.exp-side {
  position: static;
  display: contents;
}
@media (min-width: 960px) {
  .exp-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(28px, 4vw, 48px);
  }
  .exp-side {
    display: block;
    position: sticky;
    top: 124px;
  }
}
@media (min-width: 1200px) {
  .exp-grid { grid-template-columns: minmax(0, 1fr) 400px; }
}

/* --- Sections ---------------------------------------------------------------- */
.exp-section {
  background: var(--exp-card-bg);
  border: 1px solid var(--exp-card-border);
  border-radius: var(--exp-radius);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: var(--exp-card-shadow);
  margin-bottom: clamp(16px, 3.5vw, 26px);
  scroll-margin-top: 120px;
}
.exp-section:last-child { margin-bottom: 0; }
.exp-section__head { margin: 0 0 clamp(14px, 3vw, 20px); }
.exp-section__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--exp-success);
  background: var(--exp-accent-soft);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.exp-section h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3.2vw, 1.7rem);
  font-weight: 800;
  color: var(--exp-ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.exp-section__sub {
  margin: clamp(20px, 4vw, 28px) 0 12px;
  font-size: 1.02rem;
  color: var(--exp-ink-soft);
  font-weight: 600;
}

/* Prose (overview) */
.exp-section .exp-prose,
.exp-section .prose {
  color: var(--exp-ink-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}
.exp-section .exp-prose p,
.exp-section .prose p { margin: 0 0 14px; }
.exp-section .exp-prose h1,
.exp-section .exp-prose h2,
.exp-section .prose h1,
.exp-section .prose h2 { font-size: 1.2rem; font-weight: 700; color: var(--exp-ink); margin: 22px 0 10px; }
.exp-section .exp-prose h3,
.exp-section .prose h3 { font-size: 1.05rem; color: var(--exp-ink); margin: 20px 0 8px; }

/* בלוק לכל כותרת H2 בתוכן (עד ה-H2 הבא) — פוסטים + קטגוריות */
.exp-prose .exp-prose-block,
body.page-category-hub .category-page-content .exp-prose-block,
body.page-category-hub .bz-listing-hub-legacy__content .exp-prose-block {
  background: var(--exp-accent-soft, #f1f7e9);
  border: 1px solid rgba(180, 214, 160, 0.45);
  border-radius: var(--exp-radius-sm, 12px);
  padding: clamp(14px, 3.5vw, 20px);
  margin: 0 0 clamp(12px, 2.5vw, 16px);
  box-sizing: border-box;
}
.exp-prose .exp-prose-block:last-child,
body.page-category-hub .category-page-content .exp-prose-block:last-child,
body.page-category-hub .bz-listing-hub-legacy__content .exp-prose-block:last-child {
  margin-bottom: 0;
}
.exp-prose .exp-prose-block > h2,
body.page-category-hub .category-page-content .exp-prose-block > h2,
body.page-category-hub .bz-listing-hub-legacy__content .exp-prose-block > h2 {
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-size: clamp(1.05rem, 2.9vw, 1.15rem);
  color: var(--exp-ink, var(--ink-0, #0c3c1e));
  line-height: 1.35;
}
.exp-prose .exp-prose-block > :last-child,
body.page-category-hub .category-page-content .exp-prose-block > :last-child,
body.page-category-hub .bz-listing-hub-legacy__content .exp-prose-block > :last-child {
  margin-bottom: 0;
}
body.page-category-hub .exp-prose-block p,
body.page-category-hub .exp-prose-block ul,
body.page-category-hub .exp-prose-block ol {
  color: var(--ink-2, #4a5f52);
  line-height: 1.75;
}
.exp-section .exp-prose ul,
.exp-section .prose ul,
.exp-section .exp-prose ol,
.exp-section .prose ol { margin: 0 0 14px; padding-inline-start: 22px; }
.exp-section .exp-prose blockquote,
.exp-section .prose blockquote {
  border-inline-start: 3px solid var(--exp-success);
  background: var(--exp-accent-soft);
  padding: 10px 16px;
  border-radius: 0 var(--exp-radius-sm) var(--exp-radius-sm) 0;
}
/* הסתרת טפסי ליד ישנים בתוכן (גיבוי אם נשאר שארית HTML) */
.exp-prose form,
.exp-prose input,
.exp-prose textarea,
.exp-prose select,
.exp-prose label,
.exp-prose fieldset,
.exp-prose .wpcf7,
.exp-prose [class*="contact-form"],
.exp-prose [class*="lead-form"] {
  display: none !important;
}

/* Highlights */
.exp-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) { .exp-highlights { grid-template-columns: repeat(2, 1fr); } }
.exp-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--exp-accent-soft);
  border: 1px solid rgba(180,214,160,0.45);
  border-radius: var(--exp-radius-sm);
  padding: 12px 14px;
  color: var(--exp-ink);
  font-size: 0.97rem;
  line-height: 1.5;
}
.exp-highlights svg { color: var(--exp-success); flex-shrink: 0; margin-top: 2px; }

/* Generic bullets (who_for) */
.exp-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) { .exp-bullets { grid-template-columns: repeat(2, 1fr); } }
.exp-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 4px;
  font-size: 0.97rem;
  color: var(--exp-ink-soft);
  line-height: 1.5;
}
.exp-bullets svg { color: var(--exp-success); flex-shrink: 0; margin-top: 3px; }

/* Included / Not included */
.exp-incgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .exp-incgrid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.exp-incgrid__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--exp-ink);
}
.exp-incgrid__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-incgrid__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--exp-ink-soft);
  line-height: 1.5;
}
.exp-incgrid__col--in .exp-incgrid__list svg { color: var(--exp-success); flex-shrink: 0; margin-top: 2px; }
.exp-incgrid__col--out .exp-incgrid__list svg { color: var(--exp-warn); flex-shrink: 0; margin-top: 2px; }

/* Schedule */
.exp-schedule {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.exp-schedule__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--exp-card-border);
}
.exp-schedule__item:last-child { border-bottom: none; padding-bottom: 0; }
.exp-schedule__time {
  font-weight: 700;
  color: var(--exp-success);
  font-size: 0.92rem;
  padding-top: 2px;
}
.exp-schedule__title {
  display: block;
  color: var(--exp-ink);
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.exp-schedule__note {
  margin: 0;
  color: var(--exp-ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .exp-schedule__item { grid-template-columns: 64px 1fr; gap: 10px; }
}

/* Lodging */
.exp-lodging {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .exp-lodging { grid-template-columns: 1fr 1fr; } }
.exp-lodging__card {
  background: #fafdf5;
  border: 1px solid var(--exp-card-border);
  border-radius: var(--exp-radius-sm);
  padding: 14px 16px;
}
.exp-lodging__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.exp-lodging__head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--exp-ink);
}
.exp-lodging__price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--exp-success);
}
.exp-lodging__note {
  margin: 0;
  color: var(--exp-ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Facilitator */
.exp-facilitator {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.exp-facilitator__photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--exp-accent-soft);
  border: 2px solid var(--exp-card-border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--exp-success);
  font-weight: 700;
  font-size: 1.6rem;
}
.exp-facilitator__photo img { width: 100%; height: 100%; object-fit: cover; }
.exp-facilitator__name {
  display: block;
  font-size: 1.1rem;
  color: var(--exp-ink);
}
.exp-facilitator__title {
  display: block;
  color: var(--exp-ink-muted);
  font-size: 0.9rem;
  margin-top: 2px;
}
.exp-facilitator__bio {
  margin: 8px 0 0;
  color: var(--exp-ink-soft);
  line-height: 1.6;
  font-size: 0.96rem;
}
.exp-facilitator__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  color: var(--exp-success);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 36px;
}
.exp-facilitator__link:hover { color: var(--exp-accent); }
.exp-facilitator__more { margin-top: 20px; }
.exp-facilitator__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 540px) { .exp-facilitator__row { grid-template-columns: 1fr 1fr; } }
.exp-facilitator__mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--exp-radius-sm);
  background: #fafdf5;
  text-decoration: none;
  color: var(--exp-ink);
  transition: background 180ms;
  min-height: 56px;
}
.exp-facilitator__mini:hover { background: var(--exp-accent-soft); }
.exp-facilitator__mini-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--exp-accent-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--exp-success);
  flex-shrink: 0;
}
.exp-facilitator__mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.exp-facilitator__mini-body { display: flex; flex-direction: column; min-width: 0; }
.exp-facilitator__mini-body small { color: var(--exp-ink-muted); font-size: 0.82rem; }

/* Location */
.exp-location {
  display: grid;
  gap: clamp(14px, 3.5vw, 22px);
  min-width: 0;
}
.exp-location--has-map {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .exp-location--has-map {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: stretch;
  }
}
.exp-location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.exp-location__name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--exp-ink);
}
.exp-location__name svg { color: var(--exp-success); flex-shrink: 0; }
.exp-location__details {
  margin: 0;
  color: var(--exp-ink-soft);
  line-height: 1.65;
}
.exp-location__name-link {
  color: inherit;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.exp-location__name-link:hover strong { text-decoration: underline; }
.exp-location-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.exp-location-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--exp-card-border);
  background: #fff;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.exp-location-nav .exp-location-nav__icon {
  display: block;
  width: 17px !important;
  height: 17px !important;
  min-width: 17px;
  min-height: 17px;
  max-width: 17px !important;
  max-height: 17px !important;
  flex: 0 0 auto;
  aspect-ratio: 1;
  vertical-align: unset;
}
.exp-location-nav__link:hover {
  background: var(--exp-accent-soft);
  text-decoration: none;
}
.exp-booking__fact--location .exp-booking__fact-body {
  gap: 2px;
}
.exp-booking__fact--location .exp-booking__location-link {
  color: var(--exp-ink);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  min-height: 0;
  display: block;
  padding: 0;
}
.exp-booking__fact--location .exp-booking__location-link:hover {
  color: var(--exp-success);
  text-decoration: underline;
}
.exp-booking__fact--location .exp-location-nav {
  margin: 6px 0 0;
  gap: 6px;
}
@media (pointer: coarse) {
  .exp-location-nav__link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
  .exp-location-nav .exp-location-nav__icon {
    width: 19px;
    height: 19px;
    min-width: 19px;
    min-height: 19px;
    max-width: 19px;
    max-height: 19px;
  }
}
.exp-location__map {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: clamp(200px, 52vw, 280px);
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  border: 1px solid var(--exp-card-border);
  background: var(--exp-accent-soft);
}
.exp-location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Gallery (section) */
.exp-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 2vw, 10px);
}
.exp-gallery__item {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  background: var(--exp-accent-soft);
  min-width: 0;
}
.exp-gallery__item--lead {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
@media (min-width: 640px) {
  .exp-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(72px, 1fr);
    gap: 10px;
  }
  .exp-gallery__item--lead {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    min-height: 0;
  }
}
.exp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.exp-gallery__item:hover img { transform: scale(1.04); }
.exp-gallery__item--video {
  display: block;
  aspect-ratio: 16 / 9;
  background: #0f1a12;
  min-width: 0;
}
.exp-gallery__item--video.exp-gallery__item--lead {
  aspect-ratio: auto;
  min-height: 0;
}
.exp-gallery__embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(180px, 45vw, 320px);
  background: #000;
}
.exp-gallery__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.exp-gallery__video {
  width: 100%;
  height: 100%;
  min-height: clamp(180px, 45vw, 280px);
  display: block;
  object-fit: cover;
  background: #000;
}

/* FAQ */
.exp-faq { display: flex; flex-direction: column; gap: 8px; }
.exp-faq__item {
  background: #fafdf5;
  border: 1px solid var(--exp-card-border);
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
}
.exp-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--exp-ink);
  font-size: 1rem;
  min-height: 52px;
}
.exp-faq__item summary::-webkit-details-marker { display: none; }
.exp-faq__item svg { transition: transform 200ms; color: var(--exp-success); }
.exp-faq__item[open] svg { transform: rotate(180deg); }
.exp-faq__answer {
  padding: 0 16px 16px;
  color: var(--exp-ink-soft);
  line-height: 1.7;
}
.exp-faq__answer a {
  color: var(--exp-success);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.exp-faq__answer a:hover {
  color: var(--exp-ink);
}

/* --- Sidebar booking card (premium) ----------------------------------------- */
.exp-booking {
  background: linear-gradient(165deg, #ffffff 0%, #f9fcf4 55%, #f4f9ee 100%);
  border: 1px solid var(--exp-card-border-strong);
  border-radius: var(--exp-radius);
  padding: clamp(18px, 4vw, 28px);
  box-shadow: 0 8px 32px rgba(12, 60, 30, 0.1), 0 2px 8px rgba(12, 60, 30, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exp-booking__head { display: flex; flex-direction: column; gap: 6px; }
.exp-booking__kicker {
  display: inline-block;
  width: max-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--exp-success);
  background: var(--exp-accent-soft);
  padding: 4px 11px;
  border-radius: 999px;
}
.exp-booking__tagline {
  margin: 0;
  font-size: 0.92rem;
  color: var(--exp-ink-muted);
  line-height: 1.45;
}
.exp-booking__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.exp-booking__from {
  font-size: 0.86rem;
  color: var(--exp-ink-muted);
}
.exp-booking__amount {
  font-size: clamp(1.7rem, 5vw, 2.1rem);
  font-weight: 800;
  color: var(--exp-ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: "Google Sans", "Heebo", sans-serif;
}
.exp-booking__per {
  font-size: 0.92rem;
  color: var(--exp-ink-muted);
}
.exp-booking__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--exp-ink);
  text-decoration: none;
  width: max-content;
  min-height: 24px;
}
.exp-booking__rating svg { color: #e8b976; }
.exp-booking__rating span { color: var(--exp-ink-muted); }

.exp-booking__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--exp-card-border);
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}
.exp-booking__fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--exp-card-border);
  font-size: 0.92rem;
}
.exp-booking__fact:last-child { border-bottom: none; }
.exp-booking__fact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--exp-accent-soft);
  color: var(--exp-success);
}
.exp-booking__fact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.exp-booking__fact-body strong {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--exp-ink-muted);
}
.exp-booking__fact-body > span,
.exp-booking__fact-body > a {
  color: var(--exp-ink);
  font-weight: 600;
  line-height: 1.4;
}
.exp-booking__fact-body a {
  color: var(--exp-success);
  text-decoration: none;
}
.exp-booking__fact-body a:hover { text-decoration: underline; }

.exp-booking__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-booking__cta {
  justify-content: center;
  min-height: 52px;
  font-weight: 700;
  font-size: 1rem;
}
.exp-booking__contact {
  justify-content: center;
  min-height: 48px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.exp-booking__trust {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--exp-card-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-booking__trust li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--exp-ink-muted);
  line-height: 1.4;
}
.exp-booking__trust svg { color: var(--exp-success); flex-shrink: 0; margin-top: 2px; }

/* --- Mobile sticky bottom bar ----------------------------------------------- */
.exp-bottombar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--exp-card-border);
  padding: 10px clamp(12px, 4vw, 18px) calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 32px rgba(12, 60, 30, 0.10);
  animation: expBottomBarIn 280ms cubic-bezier(.2,.7,.2,1);
}
@keyframes expBottomBarIn {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
.exp-bottombar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.exp-bottombar__price {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  line-height: 1.15;
}
.exp-bottombar__price strong {
  font-size: 1.05rem;
  color: var(--exp-ink);
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.exp-bottombar__price small {
  color: var(--exp-ink-muted);
  font-size: 0.82rem;
  margin-top: 2px;
}
.exp-bottombar__cta {
  min-height: 48px;
  font-weight: 700;
  padding-inline: 18px;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .exp-bottombar { display: none; }
}

/* פוסט גוף — מרווח מתחת ל-sticky bottom (שלא יחתוך לקטעים) */
@media (max-width: 959px) {
  body { padding-bottom: 88px; }
}

/* Related section spacing */
.exp-related {
  padding: clamp(28px, 6vw, 56px) 0;
  border-top: 1px solid var(--exp-card-border);
  margin-top: clamp(28px, 6vw, 56px);
}

/* Reviews wrapper — שואב סגנון מ-`.reviews-*` הקיים, מקדם רק padding */
.exp-section--reviews { padding: 0; background: transparent; border: none; box-shadow: none; }
.exp-section--reviews .reviews-section { margin: 0; }

/* Hide legacy host-card outside sidebar context (if accidentally rendered) */
.exp-side .booking-card,
.exp-side .host-card { display: none; }

/* =============================================================================
   Experience modals — Booking iframe + Ask-a-question lead
   ========================================================================== */

.exp-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: clamp(8px, 3vw, 24px);
}
.exp-modal.is-open { display: flex; }

html.exp-modal-open,
html.exp-modal-open body {
  overflow: hidden;
}

.exp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 18, 0.55);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  animation: expModalFade 280ms cubic-bezier(.2,.7,.2,1);
}
@keyframes expModalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.exp-modal__shell {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: var(--exp-radius);
  box-shadow: 0 30px 80px rgba(12,60,30,0.32), 0 4px 12px rgba(12,60,30,0.18);
  width: 100%;
  max-width: 460px;
  max-height: min(92vh, 760px);
  display: flex;
  flex-direction: column;
  margin: auto;
  overflow: hidden;
  animation: expModalIn 320ms cubic-bezier(.2,.7,.2,1);
}
.exp-modal__shell--wide {
  max-width: min(1100px, 96vw);
  max-height: 94vh;
  height: 94vh;
}
@keyframes expModalIn {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.exp-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(14px, 3vw, 20px) clamp(16px, 4vw, 24px);
  border-bottom: 1px solid var(--exp-card-border);
  background: linear-gradient(180deg, #fafdf5, #ffffff);
}
.exp-modal__head-text { min-width: 0; flex: 1; }
.exp-modal__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--exp-success);
  background: var(--exp-accent-soft);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.exp-modal__title {
  margin: 0;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--exp-ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.exp-modal__close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--exp-ink-soft);
  border: 1px solid var(--exp-card-border);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.exp-modal__close:hover {
  background: var(--exp-accent-soft);
  color: var(--exp-accent);
  border-color: var(--exp-card-border-strong);
}

.exp-modal__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(16px, 4vw, 24px);
}
/* (.exp-modal__body--iframe is defined fully below in the iframe block) */

.exp-modal__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px clamp(16px, 4vw, 24px);
  border-top: 1px solid var(--exp-card-border);
  background: #fbfdf7;
  font-size: 0.86rem;
  color: var(--exp-ink-muted);
}
.exp-modal__foot--actions { padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 24px); }
.exp-modal__foot-link {
  color: var(--exp-success);
  text-decoration: none;
  font-weight: 600;
}
.exp-modal__foot-link:hover { text-decoration: underline; }

/* --- Booking iframe --------------------------------------------------------- */
/* The body is the flex-item INSIDE the shell (which is display:flex column).
   Use flex:1 to fill all remaining space between header & footer, and use
   `position:relative` + an absolutely-positioned iframe inset:0 so the iframe
   reliably fills 100% of the body regardless of flex height resolution. */
.exp-modal__body--iframe {
  display: block;
  flex: 1 1 auto;
  min-height: min(70vh, 640px);
  padding: 0;
  background: #f6faf0;
  position: relative;
  overflow: hidden;
}
.exp-iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  z-index: 0;
}
.exp-iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--exp-ink-soft);
  font-size: 0.95rem;
  background: linear-gradient(180deg, #fafdf5, #ffffff);
  z-index: 2;
  transition: opacity 260ms;
  pointer-events: none;
}
.exp-iframe-loader.is-hidden { opacity: 0; }
.exp-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(47,125,63,0.18);
  border-top-color: var(--exp-success);
  animation: expSpin 0.9s linear infinite;
}
@keyframes expSpin { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
  .exp-modal__shell--wide {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .exp-modal__body--iframe { min-height: calc(100vh - 130px); }
}

/* --- Ask-a-question (lead) form -------------------------------------------- */
.exp-lead-form { display: contents; }
.exp-lead-form[hidden] { display: none !important; }
.exp-lead-form__success[hidden] { display: none !important; }
.exp-lead-form__intro {
  margin: 0 0 16px;
  color: var(--exp-ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  background: var(--exp-accent-soft);
  border: 1px solid rgba(180,214,160,0.4);
  padding: 12px 14px;
  border-radius: var(--exp-radius-sm);
}
.exp-lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.exp-lead-form__field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--exp-ink);
}
.exp-lead-form__field span small {
  font-weight: 400;
  color: var(--exp-ink-muted);
  margin-inline-start: 4px;
}
.exp-lead-form__field input,
.exp-lead-form__field textarea {
  width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 16px;
  color: var(--exp-ink);
  padding: 12px 14px;
  border: 1px solid var(--exp-card-border-strong);
  border-radius: var(--exp-radius-sm);
  background: #fff;
  min-height: 48px;
  transition: border-color 180ms, box-shadow 180ms;
}
.exp-lead-form__field textarea { min-height: 96px; resize: vertical; }
.exp-lead-form__field input:focus,
.exp-lead-form__field textarea:focus {
  outline: none;
  border-color: var(--exp-success);
  box-shadow: 0 0 0 4px rgba(47,125,63,0.12);
}
.exp-lead-form__error {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: var(--exp-radius-sm);
  background: rgba(177,74,31,0.08);
  border: 1px solid rgba(177,74,31,0.22);
  color: #8a3215;
  font-size: 0.92rem;
}

.exp-lead-form__submit {
  width: 100%;
  min-height: 54px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
}
.exp-lead-form__submit-loading { display: none; }
.exp-lead-form.is-loading .exp-lead-form__submit-label { opacity: 0; }
.exp-lead-form.is-loading .exp-lead-form__submit-loading {
  display: inline-block;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.exp-lead-form.is-loading .exp-lead-form__submit { pointer-events: none; }

.exp-lead-form__success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 6vw, 40px);
  gap: 8px;
}
.exp-lead-form__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--exp-accent-soft);
  color: var(--exp-success);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.exp-lead-form__success h3 {
  margin: 0 0 4px;
  color: var(--exp-ink);
  font-size: 1.25rem;
}
.exp-lead-form__success p {
  margin: 0 0 14px;
  color: var(--exp-ink-soft);
}

@media (max-width: 480px) {
  .exp-modal { padding: 0; align-items: flex-end; }
  .exp-modal__shell {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 18px 18px 0 0;
    animation: expModalInUp 320ms cubic-bezier(.2,.7,.2,1);
  }
  @keyframes expModalInUp {
    from { transform: translateY(60px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
}

/* H1/H2 — bold בכל האתר (גובר על inline מעורך / רכיבים) */
:is(h1, h2),
.prose :is(h1, h2),
.exp-prose :is(h1, h2),
.exp-section :is(h1, h2),
.single-content :is(h1, h2),
.page-experience :is(h1, h2),
.bz-pilot-layout :is(h1, h2),
.bz-main :is(h1, h2) {
  font-weight: 800 !important;
  font-synthesis: weight !important;
  font-variation-settings: "wght" 800, "GRAD" 0 !important;
}

/* ============================================================
   REATS fix-1 · עמודי קטגוריה — הסתרת רשימת ניווט ישנה
   (ריטריטים · מומלץ · יוגה · מדיטציה · מיינדפולנס · נשים)
   ============================================================ */
body.page-category-hub .bz-category-legacy .elementor-widget-icon-list,
body.page-category-hub .bz-listing-hub-legacy__content .elementor-widget-icon-list,
body.page-category-hub .bz-category-legacy ul.elementor-icon-list-items,
body.page-category-hub .bz-listing-hub-legacy__content ul.elementor-icon-list-items,
body.page-category-hub .bz-category-legacy .elementor-icon-list,
body.page-category-hub .bz-listing-hub-legacy__content .elementor-icon-list,
body.page-category-hub .category-page-content .elementor-widget-icon-list,
body.page-category-hub .category-page-content ul.elementor-icon-list-items {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* הסתרת שורת «קטגוריות» הצבעונית (pills) — הוסר מהממשק */
.bz-block--cats,
.bz-cat-row,
.bz-cat-pill {
  display: none !important;
}

.btn__icon {
  flex-shrink: 0;
}

/* ============================================================
   REATS fix-3 · פורטל «קטגוריות דומות» (תחתית עמוד קטגוריה)
   ============================================================ */
.bz-page-content--category .cat-similar-portal,
.bz-page-content--category .cat-portal,
.cat-similar-portal,
.cat-portal {
  --exp-portal-card-w: min(280px, 78vw);
  --exp-portal-gap: clamp(12px, 2.5vw, 18px);
  width: 95%;
  max-width: min(1216px, 95%);
  margin: clamp(28px, 5vw, 48px) auto clamp(20px, 4vw, 32px);
  padding: clamp(20px, 4vw, 28px) 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(232, 245, 228, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px;
}

.cat-similar-portal__inner,
.cat-portal__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.cat-similar-portal .exp-portal__kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(47, 125, 63, 0.12);
  color: #2f7d3f;
  font-size: 0.78rem;
  font-weight: 800;
}

.cat-similar-portal .exp-portal__title {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 4.2vw, 2rem);
  font-weight: 800;
  color: #0c3c1e;
}

.cat-similar-portal .exp-portal__sub {
  margin: 0;
  color: #5a7a64;
  font-size: 0.95rem;
}

.cat-similar-portal .exp-portal__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: clamp(16px, 3vw, 24px);
}

.cat-similar-portal .exp-portal__all {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(12, 60, 30, 0.14);
  background: #fff;
  color: #0c3c1e;
  font-weight: 700;
  text-decoration: none;
}

.cat-similar-portal .exp-portal__track {
  display: flex;
  gap: var(--exp-portal-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
}

.cat-similar-portal .exp-portal-card {
  flex: 0 0 var(--exp-portal-card-w);
  scroll-snap-align: start;
  min-width: 0;
}

.cat-similar-portal .exp-portal-card__shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.09);
  box-shadow: 0 12px 36px rgba(12, 60, 30, 0.09);
  overflow: hidden;
}

.cat-similar-portal .exp-portal-card__media {
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f3e0, #d4e8c8);
}

.cat-similar-portal .exp-portal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-similar-portal .exp-portal-card__type--category {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(12, 60, 30, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.cat-similar-portal .exp-portal-card__media {
  position: relative;
}

.cat-similar-portal .exp-portal-card__body {
  padding: 14px 16px;
}

.cat-similar-portal .exp-portal-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.cat-similar-portal .exp-portal-card__title a {
  color: #0c3c1e;
  text-decoration: none;
}

.cat-similar-portal .exp-portal-card__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(12, 60, 30, 0.14);
  background: #fff;
  color: #0c3c1e;
  font-weight: 700;
  text-decoration: none;
}

/* REATS fix-5 · פורטל Discovery — שורה מלאה, 4 כרטיסים בדסקטופ */
:is(body.page-category-hub, body.bz-listing-retreats, body.bz-listing-workshops) .cat-discovery-portal__track {
  width: 100%;
}
@media (min-width: 900px) {
  :is(body.page-category-hub, body.bz-listing-retreats, body.bz-listing-workshops) .cat-discovery-portal__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
  :is(body.page-category-hub, body.bz-listing-retreats, body.bz-listing-workshops) .cat-discovery-portal__carousel .exp-portal__nav {
    display: none !important;
  }
}
body.page-category-hub[data-related-portal="1"] .bz-category-legacy > :is(p:has(> a), ul:has(li a), ol:has(li a)) {
  display: none !important;
}
body.page-category-hub[data-related-portal="1"] .bz-category-legacy .exp-prose-block {
  display: block !important;
}
body.page-category-hub[data-related-portal="1"] .bz-category-legacy .exp-prose-block :is(h2, h3, h4, p, ul, ol, li) {
  display: revert !important;
  visibility: visible !important;
  height: auto !important;
}

/* REATS fix-4 · הסתרת שאריות «מה עוד אנשים מחפשים» כשהפורטל פעיל */
body.page-category-hub[data-related-portal="1"] .bz-category-legacy p:has(> a:only-child),
body.page-category-hub .bz-listing-hub-page[data-related-portal="1"] .bz-category-legacy p:has(> a:only-child),
body.page-category-hub[data-related-portal="1"] .bz-listing-hub-legacy__content p:has(> a:only-child),
body.page-category-hub .bz-listing-hub-page[data-related-portal="1"] .bz-listing-hub-legacy__content p:has(> a:only-child),
body.page-category-hub[data-related-portal="1"] .bz-category-legacy ul:has(li a),
body.page-category-hub .bz-listing-hub-page[data-related-portal="1"] .bz-category-legacy ul:has(li a) {
  display: none !important;
}

/* REATS · פירורי לחם + קישור חזרה ב-Hero — לבן (גובר על .breadcrumbs ירוק) */
.bz-inner-hero .bz-inner-hero__crumbs,
.bz-inner-hero .bz-inner-hero__crumbs a,
.bz-inner-hero .bz-inner-hero__crumbs span {
  color: #fff;
}
.bz-inner-hero .bz-inner-hero__crumbs a:hover,
.bz-inner-hero .bz-inner-hero__crumbs a:focus-visible {
  color: rgba(255, 255, 255, 0.88);
}

/* REATS · שוברי מתנה — כותרת Hero לבנה (גובר על h1 { color: ink }) */
.page-gift-vouchers .gv-hero .gv-hero__title,
.page-gift-vouchers .gv-hero .gv-hero__lead,
.page-gift-vouchers .gv-hero .gv-kicker,
.page-gift-vouchers .gv-hero .gv-hero__trust {
  color: #fff;
}

/* REATS · הוספה לאתר — כותרת Hero לבנה */
.page-add-to-site .ats-hero .ats-hero__title,
.page-add-to-site .ats-hero .ats-hero__lead,
.page-add-to-site .ats-hero .ats-hero__kicker,
.page-add-to-site .ats-hero .ats-hero__crumbs,
.page-add-to-site .ats-hero .ats-hero__crumbs a,
.page-add-to-site .ats-hero .ats-hero__crumbs span {
  color: #ffffff;
}
