/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --purple:     #2A1040;
  --purple-mid: #3d1a5c;
  --gold:       #C9973A;
  --gold-light: #d9ae62;
  --parchment:  #E7CDB4;
  --cream:      #F4E3C9;
  --green:      #1E4035;
  --amber:      #8D5C2F;
  --white:      #FAF6F0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Josefin Sans', sans-serif;
  --font-body:    'Lato', sans-serif;
  --max-w:  1120px;
  --side:   clamp(1.25rem, 5vw, 4rem);
  --section-gap: clamp(4rem, 10vw, 8rem);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--purple); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--side); }
.container--narrow { max-width: 760px; margin-inline: auto; padding-inline: var(--side); }

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.eyebrow--light { color: var(--parchment); opacity: 0.7; }
.eyebrow--center { text-align: center; }

/* ── SECTION TITLES ──────────────────────────────────────── */
.section-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; color: var(--purple); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--parchment); }
.section-title--center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-block; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: 1px; transition: all 0.25s ease; cursor: pointer; border: none; text-align: center; }
.btn--gold { background: var(--gold); color: var(--purple); }
.btn--gold:hover { background: var(--gold-light); }
.btn--gold-dark { background: var(--gold); color: var(--purple); }
.btn--gold-dark:hover { background: var(--gold-light); }
.btn--outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--purple); }
.btn--outline-light { background: transparent; border: 1px solid var(--parchment); color: var(--parchment); }
.btn--outline-light:hover { background: var(--parchment); color: var(--purple); }
.btn--purple-outline { background: transparent; border: 2px solid var(--purple); color: var(--purple); font-weight: 600; }
.btn--purple-outline:hover { background: var(--purple); color: var(--gold); }
.btn--large { padding: 1rem 2.5rem; font-size: 0.78rem; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem var(--side); transition: background 0.3s ease, box-shadow 0.3s ease; }
.nav.scrolled { background: rgba(42,16,64,0.97); backdrop-filter: blur(8px); box-shadow: 0 1px 20px rgba(0,0,0,0.3); }
.nav__inner { max-width: var(--max-w); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.nav__logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; letter-spacing: 0.05em; color: var(--parchment); }
.nav__logo-img { height: 52px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3)); }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--parchment); opacity: 0.85; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }
.nav__active { color: var(--gold) !important; opacity: 1 !important; }
.nav__cta { border: 1px solid var(--gold) !important; padding: 0.5rem 1.2rem; border-radius: 1px; opacity: 1 !important; color: var(--gold) !important; }
.nav__cta:hover { background: var(--gold) !important; color: var(--purple) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 1px; background: var(--parchment); transition: all 0.3s; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero__image-wrap { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.55); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(42,16,64,0.2) 0%, rgba(42,16,64,0.0) 40%, rgba(42,16,64,0.6) 80%, rgba(42,16,64,0.85) 100%); }
.hero__content { position: relative; z-index: 2; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--side); width: 100%; }
.hero__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.1; color: var(--parchment); margin-bottom: 1.25rem; max-width: 700px; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 2vw, 1.3rem); color: var(--parchment); opacity: 0.85; margin-bottom: 2.5rem; max-width: 520px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); margin-inline: auto; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.15); } }

/* ── PROMISE ──────────────────────────────────────────────── */
.promise { background: var(--cream); padding: var(--section-gap) 0; text-align: center; }
.promise__text { font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.85; color: var(--purple); margin-bottom: 1.5rem; }
.promise__text--gold { color: var(--amber); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.4rem); }

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--purple); padding: var(--section-gap) var(--side); }
.about__inner { max-width: var(--max-w); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.about__image-wrap { position: relative; aspect-ratio: 3/4; max-height: 600px; }
.about__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 2px; filter: brightness(0.9) sepia(0.1); }
.about__image-ornament { position: absolute; inset: -12px; border: 1px solid rgba(201,151,58,0.3); border-radius: 2px; pointer-events: none; }
.about__body { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.85; color: var(--parchment); opacity: 0.9; margin-bottom: 1rem; }
.about__body--italic {
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 1;
  background: none;
  border: none;
  padding: 0;
}
.about__signature { height: 56px; width: auto; display: block; object-fit: contain; margin-bottom: 2rem; filter: brightness(0) invert(1) opacity(0.55); }

/* ── PILLARS ──────────────────────────────────────────────── */
.pillars { background: var(--cream); padding: var(--section-gap) 0; }
.pillars__intro { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--amber); text-align: center; max-width: 480px; margin-inline: auto; margin-bottom: 3.5rem; line-height: 1.7; }
.pillars__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pillar-card { background: var(--gold); padding: clamp(2rem, 4vw, 3rem); transition: background 0.3s ease, transform 0.25s ease; border-radius: 2px; box-shadow: 0 4px 20px rgba(42,16,64,0.1); }
.pillar-card:hover { background: var(--gold-light); transform: translateY(-3px); }
.pillar-card__img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 2px; margin-bottom: 1.5rem; }
.pillar-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; filter: brightness(0.92); }
.pillar-card:hover .pillar-card__img { transform: scale(1.04); }
.pillar-card__number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--purple); opacity: 0.3; line-height: 1; margin-bottom: 0.75rem; }
.pillar-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; color: var(--purple); margin-bottom: 0.75rem; }
.pillar-card__hook { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--purple); opacity: 0.75; margin-bottom: 1rem; line-height: 1.6; }
.pillar-card__body { font-size: 0.9rem; line-height: 1.8; color: var(--purple); opacity: 0.8; margin-bottom: 1rem; }
.pillar-card__close { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--purple); line-height: 1.6; border-top: 1px solid rgba(42,16,64,0.15); padding-top: 1rem; }
.pillars__cta { text-align: center; padding-top: clamp(2.5rem, 5vw, 4rem); }
.pillars__cta-title { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--purple); max-width: 520px; margin-inline: auto; margin-bottom: 1.75rem; line-height: 1.6; }

/* ── CAROUSEL ────────────────────────────────────────────── */
.carousel-section { background: var(--purple); padding: clamp(3rem, 6vw, 5rem) 0; }
.carousel { position: relative; width: 100%; max-width: 820px; margin-inline: auto; overflow: hidden; line-height: 0; border-radius: 3px; box-shadow: 0 8px 48px rgba(0,0,0,0.35); }
.carousel__track { display: flex; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); will-change: transform; }
.carousel__slide { min-width: 100%; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(0.88); transition: transform 0.6s ease; }
.carousel__slide.active img { transform: scale(1.02); }
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(42,16,64,0.55); border: 1px solid rgba(201,151,58,0.4); color: var(--gold); width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; z-index: 10; transition: background 0.2s ease; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.carousel__btn:hover { background: rgba(201,151,58,0.25); }
.carousel__btn--prev { left: 1.5rem; }
.carousel__btn--next { right: 1.5rem; }
.carousel__dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.carousel__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(231,205,180,0.35); border: none; cursor: pointer; transition: all 0.25s ease; padding: 0; }
.carousel__dot.active { background: var(--gold); transform: scale(1.4); }
.carousel-caption { text-align: center; padding: 2rem var(--side) 0; }
.carousel-caption__text { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--parchment); opacity: 0.6; line-height: 1.7; max-width: 480px; margin-inline: auto; }

/* ── OFFERINGS ────────────────────────────────────────────── */
.offerings { background: var(--purple); padding: var(--section-gap) 0; }
.offerings__intro { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--parchment); opacity: 0.7; text-align: center; max-width: 420px; margin-inline: auto; margin-bottom: 3.5rem; line-height: 1.7; }
.offerings__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offering-card { padding: clamp(2rem, 3vw, 2.5rem); border-radius: 2px; display: flex; flex-direction: column; gap: 1rem; }
.offering-card--entry { background: var(--green); border: 1px solid rgba(201,151,58,0.2); }
.offering-card--group { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,151,58,0.35); }
.offering-card--session { background: var(--gold); }
.offering-card__label { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--parchment); opacity: 0.7; }
.offering-card--session .offering-card__label { color: var(--purple); opacity: 0.7; }
.offering-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--parchment); line-height: 1.3; }
.offering-card--session .offering-card__title { color: var(--purple); }
.offering-card__desc { font-size: 0.88rem; line-height: 1.8; color: var(--parchment); opacity: 0.85; flex: 1; }
.offering-card--session .offering-card__desc { color: var(--purple); opacity: 0.85; }
.offering-card__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-style: italic; }
.offering-card--session .offering-card__price { color: var(--purple); }
/* Fix session button on mobile — clear outline, aligned */
.offering-card--session .btn--purple-outline { width: 100%; display: block; padding: 0.85rem 1rem; border: 2px solid var(--purple); color: var(--purple); background: transparent; text-align: center; }
.offering-card--session .btn--purple-outline:hover { background: var(--purple); color: var(--gold); }

/* ── VIDEOS ──────────────────────────────────────────────── */
.videos { background: var(--cream); padding: var(--section-gap) 0; }
.videos__intro { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--amber); text-align: center; max-width: 480px; margin-inline: auto; margin-bottom: 3.5rem; line-height: 1.7; }
.videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.video-card { background: var(--white); border-radius: 2px; overflow: hidden; border: 1px solid rgba(201,151,58,0.15); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,16,64,0.12); }
.video-card__thumb-wrap { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--purple); }
.video-card__thumb { transition: transform 0.4s ease; opacity: 0.85; }
.video-card:hover .video-card__thumb { transform: scale(1.04); opacity: 1; }
.video-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.video-card__play svg { width: 48px; height: 48px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.video-card__content { padding: 1.5rem; }
.video-card__pillar { font-family: var(--font-label); font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.video-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--purple); margin-bottom: 0.6rem; line-height: 1.3; }
.video-card__desc { font-size: 0.85rem; line-height: 1.75; color: var(--purple); opacity: 0.7; margin-bottom: 1rem; }
.video-card__link { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); transition: color 0.2s; }
.video-card__link:hover { color: var(--gold); }
.videos__cta { text-align: center; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--purple); padding: var(--section-gap) 0; }
.testi__slider { margin-top: 3rem; overflow: hidden; position: relative; }
.testi__track { display: flex; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
.testi__slide {
  min-width: 100%;
  padding: 0 clamp(1.5rem, 8vw, 10rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
/* Cream box on purple */
.testi__box {
  background: var(--cream);
  border: none;
  border-radius: 4px;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}
.testi__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  display: block;
  flex-shrink: 0;
}
.testi__quote-mark { font-family: var(--font-display); font-size: 3.5rem; line-height: 0.6; color: var(--gold); opacity: 0.5; margin-bottom: 0.25rem; }
.testi__text { font-family: var(--font-display); font-size: clamp(0.9rem, 1.5vw, 1.05rem); line-height: 1.85; color: var(--purple); opacity: 0.88; max-width: 580px; }
.testi__name { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--amber); margin-top: 0.5rem; font-weight: 500; }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; padding-bottom: 0.5rem; }
.testi__btn { background: transparent; border: 1px solid rgba(201,151,58,0.4); color: var(--gold); width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; }
.testi__btn:hover { background: var(--gold); color: var(--purple); }
.testi__dots { display: flex; gap: 0.5rem; }
.testi__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(231,205,180,0.25); border: none; cursor: pointer; transition: all 0.25s ease; padding: 0; }
.testi__dot.active { background: var(--gold); transform: scale(1.4); }

/* ── CONVERSATION ────────────────────────────────────────── */
.conversation { background: var(--purple); padding: var(--section-gap) var(--side); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.conversation__circle { width: clamp(280px, 55vw, 560px); height: clamp(280px, 55vw, 560px); border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; padding: clamp(2rem, 5vw, 4rem); box-shadow: 0 0 60px rgba(201,151,58,0.2); box-sizing: border-box; }
.conversation__circle-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; overflow: hidden; }
.conversation__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 3.5vw, 2rem); color: var(--purple); line-height: 1.2; margin-bottom: 0.25rem; }
.conversation__circle-inner p { font-family: var(--font-display); font-size: clamp(0.75rem, 1.5vw, 1rem); line-height: 1.65; color: var(--purple); opacity: 0.85; max-width: 100%; }
.conversation__close { font-style: italic; opacity: 1 !important; font-weight: 500; color: var(--purple) !important; margin-top: 0.25rem; }
.conversation__action { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

/* ── GIFT ─────────────────────────────────────────────────── */
.gift { background: var(--green); padding: var(--section-gap) var(--side); }
.gift__inner { max-width: var(--max-w); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.gift__sub { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 1.5rem; }
.gift__body { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.85; color: var(--parchment); opacity: 0.85; margin-bottom: 1rem; }
.gift__form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; max-width: 400px; }
.gift__input { background: rgba(255,255,255,0.08); border: 1px solid rgba(201,151,58,0.35); padding: 0.9rem 1.2rem; color: var(--parchment); font-family: var(--font-body); font-size: 0.9rem; border-radius: 1px; outline: none; transition: border-color 0.2s; }
.gift__input::placeholder { color: rgba(231,205,180,0.4); }
.gift__input:focus { border-color: var(--gold); }
.gift__note { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--parchment); opacity: 0.4; margin-top: 0.5rem; }
.gift__ornament { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.gift__logo { width: clamp(200px, 28vw, 320px); height: auto; display: block; object-fit: contain; filter: drop-shadow(0 4px 24px rgba(201,151,58,0.25)); }
.gift__tagline { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--parchment); opacity: 0.5; text-align: center; line-height: 1.6; }
.gift__checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; text-align: left; }
.gift__checkbox { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.gift__checkbox-text { font-family: var(--font-body); font-size: 0.78rem; line-height: 1.6; color: var(--parchment); opacity: 0.65; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--purple); padding: 3rem var(--side) 2rem; border-top: 1px solid rgba(201,151,58,0.15); }
.footer__inner { max-width: var(--max-w); margin-inline: auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer__name { font-family: var(--font-display); font-size: 1.1rem; color: var(--parchment); margin-bottom: 0.4rem; }
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--gold); opacity: 0.7; }
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--parchment); opacity: 0.5; transition: opacity 0.2s; }
.footer__nav a:hover { opacity: 1; }
.footer__social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__social-link { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.7; transition: opacity 0.2s; }
.footer__social-link:hover { opacity: 1; }
.footer__copy { font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--parchment); opacity: 0.25; text-align: center; max-width: var(--max-w); margin-inline: auto; }

/* ── FADE IN ──────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .offerings__grid { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__image-wrap { max-height: 480px; aspect-ratio: 3/4; }
  .gift__inner { grid-template-columns: 1fr; }
  .gift__ornament { display: none; }
  .nav__links { display: none; }
  .nav__links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--purple); align-items: center; justify-content: center; gap: 2.5rem; z-index: 99; }
  .nav__links.open a { font-size: 1rem; }
  .nav__burger { display: flex; z-index: 100; }
  .footer__inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }

  /* Testimonial mobile fixes */
  .testi__slide { padding: 0 1rem; }
  .testi__box { padding: 1.5rem 1.25rem; }
  .testi__photo { width: 52px; height: 52px; }
  .testi__text { font-size: 0.85rem; line-height: 1.75; }

  /* Conversation circle mobile */
  .conversation__circle { width: 88vw; height: 88vw; padding: 1.5rem; }
  .conversation__circle-inner p { font-size: 0.7rem; line-height: 1.5; }
  .conversation__title { font-size: 1.15rem; }

  /* Offering card button fix on mobile */
  .offering-card .btn { width: 100%; display: block; text-align: center; }
  .offering-card--session .btn--purple-outline { width: 100%; display: block; }
}
