/* css/style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:          #FAF3EC;
  --cream2:         #F3E9DC;
  --cream3:         #EDE0D0;
  --purple:         #7B5EA7;
  --purple-mid:     #9B7EC8;
  --purple-light:   #C4AEDE;
  --purple-pale:    #EDE7F6;
  --coral:          #E8836A;
  --coral-light:    #F2B5A3;
  --gold:           #C89A3A;
  --gold-light:     #E8C97A;
  --text:           #2D2228;
  --text-soft:      #7A6B62;
  --text-xsoft:     #A89890;
  --white:          #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Varela Round', sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  direction: rtl;
}

/* ── Shared utilities ── */
.sec { padding: 110px 32px; }
.sec-inner { max-width: 1140px; margin: 0 auto; }

.sec-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--coral);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-title--center { text-align: center; }

.sec-body {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text-soft);
  max-width: 600px;
}

.bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold-light));
  border-radius: 4px;
  margin-bottom: 40px;
}

.bar--center { margin-left: auto; margin-right: auto; }

.sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,94,167,0.15), transparent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Varela Round', sans-serif;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(123,94,167,0.30);
}

.btn--primary:hover {
  background: #6A4F92;
  box-shadow: 0 12px 40px rgba(123,94,167,0.38);
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple-light);
}

.btn--outline:hover { background: var(--purple-pale); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,0.28);
}

.btn--whatsapp:hover {
  box-shadow: 0 14px 36px rgba(37,211,102,0.35);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 56px;
  height: 72px;
  background: rgba(250,243,236,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,94,167,0.10);
  transition: box-shadow 0.3s;
}

.nav--scrolled { box-shadow: 0 4px 24px rgba(123,94,167,0.08); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav__brand-name {
  font-size: 22px;
  color: var(--purple);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--purple); }

.nav__cta {
  padding: 9px 24px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  transition: background 0.2s, transform 0.15s;
}

.nav__cta:hover { background: #6A4F92; transform: translateY(-1px); }

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav open state */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; right: 0; left: 0;
  background: var(--cream);
  padding: 32px;
  gap: 24px;
  border-bottom: 1px solid var(--cream3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -200px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,174,222,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -100px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,131,106,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

.hero__deco--tl {
  top: 120px; right: 80px;
  width: 180px;
  animation: floatA 8s ease-in-out infinite;
}

.hero__deco--br {
  bottom: 80px; left: 60px;
  width: 140px;
  animation: floatB 10s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(10px) rotate(-2deg); }
}

.hero__content { position: relative; z-index: 2; }

.hero__logo {
  width: 200px;
  margin: 0 auto 36px;
  display: block;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--coral);
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(64px, 10vw, 110px);
  color: var(--purple);
  line-height: 0.95;
  margin-bottom: 14px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--coral);
  letter-spacing: 0.22em;
  margin-bottom: 32px;
}

.hero__tagline {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 2.1;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-xsoft);
  font-size: 11px;
  letter-spacing: 0.15em;
  animation: scrollHint 2.5s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ── ABOUT ── */
.about__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 96px;
  align-items: center;
}

.about__img-wrap { position: relative; }

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 56% 44% 52% 48% / 52% 48% 56% 44%;
  background: linear-gradient(145deg, var(--purple-light) 0%, var(--cream3) 60%, var(--coral-light) 100%);
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 56% 44% 52% 48% / 52% 48% 56% 44%;
  display: block;
}

.about__badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: 0 16px 48px rgba(123,94,167,0.14);
  min-width: 190px;
}

.about__badge-label { font-size: 13px; color: var(--text-xsoft); letter-spacing: 0.05em; margin-bottom: 4px; }
.about__badge-name  { font-size: 18px; color: var(--purple); margin-bottom: 4px; }
.about__badge-role  { font-size: 12px; color: var(--coral); letter-spacing: 0.08em; }

.about__dots {
  position: absolute;
  top: 24px;
  right: -24px;
  opacity: 0.22;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.philosophy__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.philosophy__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}

.philosophy__quote {
  font-size: clamp(20px, 2.8vw, 32px);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.93;
}

.philosophy__quote em {
  color: var(--coral-light);
  font-style: normal;
}

.philosophy__author {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
}

/* ── SERVICES ── */
.services { background: var(--cream2); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  border-radius: 0 28px 0 100%;
  background: linear-gradient(225deg, var(--purple-pale), transparent);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(123,94,167,0.13);
}

.service-card__num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 20px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card__title {
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-soft);
}

/* ── VALUES ── */
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(123,94,167,0.08);
  transition: box-shadow 0.2s;
}

.value-card:hover { box-shadow: 0 12px 40px rgba(123,94,167,0.08); }

.value-card__icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.value-card__title {
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-soft);
}

/* ── RETREATS ── */
.retreats { background: var(--cream2); }

.retreats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 60px;
}

.retreat-card {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/11;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.retreat-card:hover {
  transform: scale(1.025) translateY(-4px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.retreat-card__bg {
  position: absolute;
  inset: 0;
}

.retreat-card__bg--purple {
  background: linear-gradient(165deg, #8B6CBF 0%, #4A2F7A 55%, #2E1A52 100%);
}

.retreat-card__bg--earth {
  background: linear-gradient(165deg, #C49268 0%, #8B5E38 55%, #4A2E18 100%);
}

.retreat-card__gradient {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  z-index: 2;
}

.retreat-card__deco {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 3;
  opacity: 0.3;
}

.retreat-card__content {
  position: relative;
  z-index: 4;
  padding: 48px 44px;
  color: var(--white);
  width: 100%;
}

.retreat-card__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.retreat-card__title {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.retreat-card__date {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.retreat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white);
  opacity: 0.8;
  letter-spacing: 0.08em;
  transition: opacity 0.2s, gap 0.2s;
}

.retreat-card:hover .retreat-card__link {
  opacity: 1;
  gap: 14px;
}

/* ── CONTACT ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact__title {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--purple);
  line-height: 1.25;
  margin-bottom: 24px;
}

.contact__body {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 400px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(123,94,167,0.15);
  border-radius: 16px;
  padding: 16px 20px;
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: right;
  direction: rtl;
}

.input:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 4px rgba(123,94,167,0.08);
}

.input::placeholder { color: var(--text-xsoft); }

textarea.input {
  height: 150px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 20px 28px;
  background: var(--purple-pale);
  border-radius: 16px;
  color: var(--purple);
  font-size: 15px;
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 64px 32px;
}

.footer__logo {
  display: block;
  font-size: 28px;
  color: var(--purple-light);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer__tagline {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--coral);
  margin-bottom: 28px;
}

.footer__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.footer__links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--purple-light); }

.footer__email {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__email:hover { color: var(--purple-light); }

.footer__copy {
  font-size: 12px;
  opacity: 0.28;
  margin-top: 24px;
}

/* ── RETREAT PAGES ── */
.retreat-page {
  --retreat-bg-start: #8B6CBF;
  --retreat-bg-mid: #4A2F7A;
  --retreat-bg-end: #2E1A52;
  --retreat-accent: var(--coral-light);
  --retreat-surface: var(--purple-pale);
  --retreat-surface-strong: var(--purple);
  --retreat-surface-ink: rgba(255,255,255,0.82);
}

.retreat-page--ani-ve-at {
  --retreat-bg-start: #C49268;
  --retreat-bg-mid: #8B5E38;
  --retreat-bg-end: #4A2E18;
  --retreat-accent: #F2B5A3;
  --retreat-surface: #F5E6D8;
  --retreat-surface-strong: #4A2E18;
  --retreat-surface-ink: rgba(255,255,255,0.84);
}

.retreat-page .nav {
  background: rgba(250,243,236,0.82);
}

.retreat-page section[id],
.retreat-page footer[id] {
  scroll-margin-top: 96px;
}

.retreat-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 136px 32px 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 26%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.12) 0%, transparent 24%),
    linear-gradient(160deg, var(--retreat-bg-start) 0%, var(--retreat-bg-mid) 55%, var(--retreat-bg-end) 100%);
}

.retreat-hero::before,
.retreat-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.retreat-hero::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 68%);
}

.retreat-hero::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(232,131,106,0.2) 0%, transparent 68%);
}

.retreat-hero__back {
  position: absolute;
  top: 96px;
  right: 56px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}

.retreat-hero__back:hover {
  color: var(--white);
  transform: translateX(4px);
}

.retreat-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: var(--white);
}

.retreat-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  opacity: 0.88;
}

.retreat-hero__title {
  font-size: clamp(52px, 8vw, 90px);
  line-height: 0.98;
  margin-bottom: 18px;
}

.retreat-hero__sub {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--retreat-accent);
  margin-bottom: 12px;
}

.retreat-hero__date {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.74);
  margin-bottom: 18px;
}

.retreat-hero__lede {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.82);
}

.btn--earth {
  background: #8B5E38;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(139,94,56,0.35);
}

.btn--earth:hover {
  background: #774B2D;
  box-shadow: 0 12px 38px rgba(139,94,56,0.42);
}

.retreat-section {
  padding: 96px 32px;
}

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

.retreat-section--theme {
  background: var(--retreat-surface-strong);
  color: var(--white);
}

.retreat-section--theme .sec-title {
  color: var(--white);
}

.retreat-section--theme .sec-eyebrow {
  color: var(--retreat-accent);
}

.retreat-section--theme .retreat-copy,
.retreat-section--theme .retreat-program__desc,
.retreat-section--theme .retreat-host-card__body {
  color: var(--retreat-surface-ink);
}

.retreat-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.retreat-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.retreat-copy {
  font-size: 16px;
  line-height: 2;
  color: var(--text-soft);
  max-width: 640px;
}

.retreat-panel {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(123,94,167,0.08);
  box-shadow: 0 24px 50px rgba(45,34,40,0.06);
}

.retreat-panel__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 10px;
}

.retreat-panel__title {
  font-size: 24px;
  color: var(--purple);
  margin-bottom: 16px;
}

.retreat-panel__list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.retreat-panel__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
}

.retreat-panel__list li::before {
  content: '';
  width: 9px;
  min-width: 9px;
  height: 9px;
  margin-top: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--coral), var(--gold-light));
}

.retreat-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.retreat-highlight {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 26px;
  border: 1px solid rgba(123,94,167,0.08);
}

.retreat-highlight__title {
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 10px;
}

.retreat-highlight__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-soft);
}

.retreat-program {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.retreat-program__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.retreat-section--alt .retreat-program__item,
.retreat-section:not(.retreat-section--theme) .retreat-program__item {
  background: var(--white);
  border-color: rgba(123,94,167,0.08);
}

.retreat-program__num {
  font-size: 30px;
  line-height: 1;
  color: var(--retreat-accent);
  opacity: 0.95;
}

.retreat-section:not(.retreat-section--theme) .retreat-program__num {
  color: var(--purple-light);
}

.retreat-program__title {
  font-size: 18px;
  margin-bottom: 8px;
}

.retreat-section:not(.retreat-section--theme) .retreat-program__title {
  color: var(--purple);
}

.retreat-program__desc {
  font-size: 14px;
  line-height: 1.9;
}

.retreat-hosts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.retreat-host-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(123,94,167,0.08);
}

.retreat-host-card__role {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 10px;
}

.retreat-host-card__name {
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 12px;
}

.retreat-host-card__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-soft);
}

.retreat-cta {
  background: linear-gradient(180deg, var(--cream2) 0%, var(--cream) 100%);
  text-align: center;
}

.retreat-cta__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.retreat-cta__meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-xsoft);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__img-wrap { max-width: 400px; margin: 0 auto; }
  .about__badge { left: 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .retreat-stack { grid-template-columns: 1fr; }
  .retreat-highlights { grid-template-columns: 1fr 1fr; }
  .retreat-hosts { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .sec,
  .retreat-section { padding: 80px 20px; }

  .hero__deco--tl,
  .hero__deco--br { display: none; }

  .services__grid,
  .values__grid,
  .retreats__grid,
  .retreat-highlights { grid-template-columns: 1fr; }

  .retreat-card { aspect-ratio: 4/3; }
  .contact__form-row,
  .retreat-hosts { grid-template-columns: 1fr; }

  .footer__links { gap: 20px; }

  .retreat-hero {
    min-height: auto;
    padding: 128px 20px 72px;
  }

  .retreat-hero__back {
    top: 86px;
    right: 24px;
  }

  .retreat-hero__lede {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .retreat-panel,
  .retreat-highlight,
  .retreat-program__item,
  .retreat-host-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 52px; }
  .hero__actions,
  .retreat-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .about__badge {
    position: static;
    margin-top: 20px;
    box-shadow: none;
    border: 1px solid var(--cream3);
  }

  .retreat-hero__tag {
    line-height: 1.6;
    padding: 8px 14px;
  }

  .retreat-program__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .retreat-program__num {
    font-size: 24px;
  }
}
