/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #f5f1ee;
  color: #1a0f0e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: scroll;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #f5f1ee;
  --cream-mid: #ede9e4;
  --cream-dark: #e4ddd6;
  --plum: #5b2655;
  --plum-mid: #7c4d78;
  --plum-light: #9c6b96;
  --plum-pale: #c4a0c0;
  --lavender: #ede4ed;
  --lavender-mid: #e3c5e0;
  --lavender-pale: #e1c4f5;
  --rose: #c97fa0;
  --gold: #c9a96e;
  --brown-dark: #1a0f0e;
  --brown-mid: #7a6f6a;
  --brown-light: #bdb4af;
  --white: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.05;
}
h1 { font-size: clamp(52px, 9vw, 110px); }
h2 { font-size: clamp(38px, 5.5vw, 72px); color: var(--plum); }
h3 { font-size: clamp(22px, 3vw, 36px); color: var(--plum); }
h4 { font-size: clamp(16px, 2vw, 22px); color: var(--plum); margin-bottom: 10px; }
em { font-style: italic; }
p { line-height: 1.7; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-light);
  display: block;
  margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--lavender-pale); }
.light-heading { color: var(--lavender); }
.body-text { font-size: 16px; color: var(--brown-mid); line-height: 1.75; margin-bottom: 18px; }
.body-text.light { color: rgba(237,228,237,0.82); }
.body-text.centered-text { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-intro { font-size: 18px; color: var(--brown-mid); max-width: 580px; margin: 0 auto; text-align: center; line-height: 1.7; }
.divider-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--plum-light), transparent);
  margin: 24px 0 32px;
}
.divider-line.light { background: linear-gradient(90deg, rgba(225,196,245,0.6), transparent); }
.divider-line.centered { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--plum-light), transparent); width: 80px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(160deg, var(--plum) 0%, #7a3272 100%);
  color: var(--lavender);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(158,104,152,0.3);
  box-shadow: 0 4px 24px rgba(91,38,85,0.2);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(91,38,85,0.3); }
.btn-primary.large { padding: 18px 48px; font-size: 14px; }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.3s, border-color 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-outline {
  display: inline-block;
  padding: 11px 28px;
  background: transparent;
  color: var(--plum);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--plum-mid);
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--plum); color: var(--lavender); }
.btn-outline.small { padding: 8px 20px; font-size: 11px; white-space: nowrap; }

.btn-light {
  display: inline-block;
  padding: 14px 36px;
  background: rgba(237,228,237,0.12);
  color: var(--lavender);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(237,228,237,0.4);
  transition: background 0.3s;
}
.btn-light:hover { background: rgba(237,228,237,0.22); }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(160deg, var(--plum) 0%, #7a3272 100%);
  color: var(--lavender);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 24px rgba(91,38,85,0.25);
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* ===== SITE HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.5s, box-shadow 0.5s, padding 0.4s;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.site-header.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.site-header.at-top { background: transparent; }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.4s;
}
.site-header.scrolled .header-inner { padding-top: 18px; padding-bottom: 18px; }

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-direction: row;
}
.header-logo img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-line1 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.4s;
}
.logo-line2 {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
.site-header.scrolled .logo-line1 { color: var(--plum-light); }
.site-header.scrolled .logo-line2 { color: var(--plum); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: currentColor;
  transition: right 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-link:hover { color: rgba(255,255,255,1); }
.nav-link.active { color: rgba(255,255,255,1); }
.site-header.scrolled .nav-link { color: var(--brown-mid); }
.site-header.scrolled .nav-link:hover { color: var(--plum); }
.site-header.scrolled .nav-link.active { color: var(--plum); }

.header-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  background: linear-gradient(160deg, var(--plum) 0%, #7a3272 100%);
  padding: 10px 24px;
  border-radius: 50px;
  transition: opacity 0.3s, transform 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(91,38,85,0.25);
}
.header-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.site-header.scrolled .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(26,15,14,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 400;
  width: min(380px, 90vw);
  background: linear-gradient(160deg, #f5f1ee 0%, #ede4ed 60%, #e8d6f0 100%);
  display: flex;
  flex-direction: column;
  padding: 40px 44px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
  box-shadow: -12px 0 60px rgba(91,38,85,0.15);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-bottom: 48px;
  position: relative; width: 28px; height: 28px;
}
.drawer-close span {
  display: block; width: 22px; height: 1.5px;
  background: var(--plum); border-radius: 2px;
  position: absolute; top: 50%; left: 3px;
}
.drawer-close span:nth-child(1) { transform: rotate(45deg); }
.drawer-close span:nth-child(2) { transform: rotate(-45deg); }
.drawer-close:hover span { background: var(--plum-mid); }

.drawer-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.drawer-link {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 400;
  color: var(--plum);
  padding: 10px 0;
  border-bottom: 1px solid rgba(91,38,85,0.1);
  transition: color 0.25s, padding-left 0.25s;
  display: block;
  line-height: 1.1;
}
.drawer-link:hover { color: var(--plum-mid); padding-left: 10px; }
.drawer-link:last-child { border-bottom: none; }

.drawer-cta {
  display: block;
  margin-top: 36px;
  padding: 16px 32px;
  background: linear-gradient(160deg, var(--plum) 0%, #7a3272 100%);
  color: var(--lavender);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(91,38,85,0.25);
}
.drawer-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.drawer-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(91,38,85,0.1);
}
.drawer-footer p {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--plum-light);
  line-height: 1.9;
}

/* Drawer link stagger animation */
.drawer.open .drawer-link {
  animation: drawerIn 0.45s ease forwards;
  opacity: 0;
}
.drawer.open .drawer-link:nth-child(1) { animation-delay: 0.08s; }
.drawer.open .drawer-link:nth-child(2) { animation-delay: 0.13s; }
.drawer.open .drawer-link:nth-child(3) { animation-delay: 0.18s; }
.drawer.open .drawer-link:nth-child(4) { animation-delay: 0.23s; }
.drawer.open .drawer-link:nth-child(5) { animation-delay: 0.28s; }
.drawer.open .drawer-link:nth-child(6) { animation-delay: 0.33s; }
@keyframes drawerIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== WELCOME SNAP SECTION ===== */

.welcome-snap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background-color: #EDE6F0;
  background-image: radial-gradient(ellipse at 50% 50%, #F2EEF5 0%, #EDE6F0 45%, #E4DCEB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

/* ---- Sacred geometry mandala background ---- */
.welcome-mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.welcome-mandala svg {
  width: min(85vw, 700px);
  height: min(85vw, 700px);
  opacity: 0.05;
}

/* ---- Floating crystal wrappers ---- */
.ws-crystal {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  /* No border-radius, no overflow:hidden — silhouette follows SVG shape */
}
.ws-crystal img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* transparent PNG/SVG — no cropping, no border-radius */
}

/* Top-right: deep blue teardrop gem */
.ws-crystal--tr {
  width: clamp(130px, 16vw, 210px);
  height: clamp(170px, 21vw, 280px);
  top: 4%;
  right: -2%;   /* bleeds slightly into text area */
  filter: drop-shadow(0 0 18px rgba(80, 140, 220, 0.55)) drop-shadow(0 0 8px rgba(60, 80, 180, 0.35));
  animation: crystalFloat1 6s ease-in-out infinite alternate;
}

/* Left-middle: pink rose quartz cluster */
.ws-crystal--lm {
  width: clamp(160px, 20vw, 260px);
  height: clamp(130px, 16vw, 210px);
  top: 34%;
  left: -3%;    /* cluster bleeds inward */
  filter: drop-shadow(0 0 20px rgba(220, 100, 170, 0.5)) drop-shadow(0 0 9px rgba(180, 60, 130, 0.3));
  animation: crystalFloat2 7s ease-in-out infinite alternate;
}

/* Lower-left: blue/indigo crystal star */
.ws-crystal--ll {
  width: clamp(130px, 16vw, 210px);
  height: clamp(130px, 16vw, 210px);
  bottom: 7%;
  left: -1%;    /* star tips break into text area */
  filter: drop-shadow(0 0 18px rgba(60, 100, 220, 0.55)) drop-shadow(0 0 8px rgba(40, 60, 180, 0.35));
  animation: crystalFloat3 8s ease-in-out infinite alternate;
}

/* Lower-right: amethyst sphere */
.ws-crystal--lr {
  width: clamp(140px, 17vw, 220px);
  height: clamp(140px, 17vw, 220px);
  bottom: 6%;
  right: -1%;   /* sphere edge overlaps slightly */
  filter: drop-shadow(0 0 22px rgba(150, 60, 210, 0.55)) drop-shadow(0 0 10px rgba(100, 30, 160, 0.35));
  animation: crystalFloat4 9s ease-in-out infinite alternate;
}

/* Crystal float keyframes — drift + subtle rotation, out of sync */
@keyframes crystalFloat1 {
  0%   { transform: translateY(0px)   rotate(-2deg);   filter: drop-shadow(0 0 18px rgba(80,140,220,0.55)) drop-shadow(0 0 8px rgba(60,80,180,0.35)); }
  100% { transform: translateY(-16px) rotate(2.5deg);  filter: drop-shadow(0 0 28px rgba(80,140,220,0.75)) drop-shadow(0 0 14px rgba(60,80,180,0.5)); }
}
@keyframes crystalFloat2 {
  0%   { transform: translateY(0px)   rotate(3deg);    filter: drop-shadow(0 0 20px rgba(220,100,170,0.5)) drop-shadow(0 0 9px rgba(180,60,130,0.3)); }
  100% { transform: translateY(-13px) rotate(-2.5deg); filter: drop-shadow(0 0 30px rgba(220,100,170,0.7)) drop-shadow(0 0 14px rgba(180,60,130,0.45)); }
}
@keyframes crystalFloat3 {
  0%   { transform: translateY(0px)   rotate(-3deg);   filter: drop-shadow(0 0 18px rgba(60,100,220,0.55)) drop-shadow(0 0 8px rgba(40,60,180,0.35)); }
  100% { transform: translateY(-11px) rotate(3deg);    filter: drop-shadow(0 0 28px rgba(60,100,220,0.75)) drop-shadow(0 0 14px rgba(40,60,180,0.5)); }
}
@keyframes crystalFloat4 {
  0%   { transform: translateY(0px)   rotate(2deg);    filter: drop-shadow(0 0 22px rgba(150,60,210,0.55)) drop-shadow(0 0 10px rgba(100,30,160,0.35)); }
  100% { transform: translateY(-17px) rotate(-3deg);   filter: drop-shadow(0 0 34px rgba(150,60,210,0.78)) drop-shadow(0 0 16px rgba(100,30,160,0.52)); }
}

/* ---- Centered text composition ---- */
.welcome-snap__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Leaf/feather emblem */
.ws-emblem {
  width: 44px;
  height: 58px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(123,63,160,0.3));
}
.ws-emblem svg { width: 100%; height: 100%; }

/* Headline */
.ws-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(32px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  color: #4A1E5C;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  white-space: nowrap;
}
.ws-headline span {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1.08;
  margin-top: 2px;
}

/* Subheadline */
.ws-subheadline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: #4A1E5C;
  line-height: 1.4;
  margin-top: 28px;
  margin-bottom: 0;
}

/* Tagline */
.ws-tagline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-style: italic;
  color: #6B3080;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 0;
}

/* Thin divider */
.ws-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9B59B6, transparent);
  margin: 28px auto 0;
}

/* Body paragraphs */
.ws-body {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-style: italic;
  color: #3D1250;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 24px;
  margin-bottom: 0;
  text-align: center;
}
.ws-body:last-of-type { margin-bottom: 0; margin-top: 24px; }

/* CTA button spacing */
.ws-body + .ws-cta,
.ws-body:last-of-type + .ws-cta {
  margin-top: 32px;
}

/* CTA button */
.ws-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px 13px 20px;
  background: linear-gradient(135deg, #C89FD8 0%, #7B3FA0 60%, #4A1E5C 100%);
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 6px 24px rgba(74, 30, 92, 0.35);
}
.ws-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(74, 30, 92, 0.45);
  filter: brightness(1.08);
}
.ws-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.ws-cta__icon svg { width: 100%; height: 100%; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ws-crystal--tr { top: 3%; right: -3%; }
  .ws-crystal--lm { left: -4%; top: 36%; }
  .ws-crystal--ll { left: -2%; bottom: 7%; }
  .ws-crystal--lr { right: -2%; bottom: 6%; }
}
@media (max-width: 600px) {
  .welcome-snap__inner { padding: 0 24px; max-width: 100%; }
  .ws-crystal--lm, .ws-crystal--ll { display: none; }
  .ws-crystal--tr { width: 100px; height: 130px; top: 3%; right: -2%; }
  .ws-crystal--lr { width: 100px; height: 100px; bottom: 4%; right: -2%; }
  .ws-headline { font-size: clamp(20px, 6.5vw, 38px); white-space: normal; }
}

/* ===== HERO (target-matching) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #0b0410;
}
.hero-sky-layer,
.hero-gradient-layer,
.hero-mountain-layer,
.hero-cloud-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  display: block;
}
.hero-sky-layer { z-index: 1; }
.hero-gradient-layer {
  z-index: 2;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  opacity: 0.6;
}
.hero-mountain-layer {
  z-index: 10;
  object-position: center bottom;
}
.hero-cloud-layer {
  z-index: 3;
  object-position: center bottom;
  will-change: transform;
  animation: cloudDrift 20s ease-in-out infinite alternate;
}
@keyframes cloudDrift {
  from { transform: translateX(-6%) scale(1.06); }
  to   { transform: translateX(6%)  scale(1.06); }
}
.hero-circles-svg {
  position: absolute;
  top: 62%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  z-index: 9;
  pointer-events: none;
}
.hero-circles-svg circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 3 7;
  vector-effect: non-scaling-stroke;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px 20px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0;
}

.car-carousel-image {
  width: clamp(60px, 8vw, 120px);
  height: auto;
  display: block;
}
.hero-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26.91px, 8.2225vw, 179.4px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgb(237, 228, 237);
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
  margin: 0;
  white-space: nowrap;
  transform: scaleY(1.45);
  transform-origin: center bottom;
  display: block;
}
.hero-sub {
  font-family: 'Inter', 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgb(237, 228, 237);
  max-width: 620px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
  margin: 0;
}
.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  margin-top: 12px;
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(237, 228, 237);
  background: transparent;
  border: 1px solid rgba(237, 228, 237, 0.75);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-cta:hover { background: rgba(237, 228, 237, 0.12); transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) {
  .hero-cloud-layer { animation: none !important; transform: none !important; }
}

  60%  { transform: translateY(12px); opacity: 0.2; }
  61%  { transform: translateY(0); opacity: 0; }
  62%  { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--lavender-mid);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(91,38,85,0.1);
  border-bottom: 1px solid rgba(91,38,85,0.1);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
}
.marquee-track .sep { color: var(--plum-light); font-size: 8px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== INTRO SECTION ===== */
.intro-section {
  background: #EDE6F0;
  background-image: radial-gradient(ellipse at 50% 50%, #F2EEF5 0%, #EDE6F0 45%, #E4DCEB 100%);
  padding: 130px 60px;
}
.intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.intro-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 442px;
  margin: 0 auto;
  border: 4px solid #800080;
  box-shadow: 0 8px 30px rgba(128,0,128,0.25);
}
.intro-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.intro-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(91,38,85,0.12);
  pointer-events: none;
}
.intro-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--plum) 0%, #7a3272 100%);
  color: var(--lavender);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(91,38,85,0.3);
}
.intro-img-badge span {
  display: block;
  font-family: 'Instrument Serif', serif;
}
.intro-img-badge span:first-child {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.intro-img-badge span:last-child {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-top: 4px;
}
.intro-image { position: relative; padding-bottom: 20px; padding-right: 20px; }
.intro-text h2 { margin-bottom: 8px; line-height: 1.05; }
.intro-text .btn-primary { margin-top: 8px; }

/* ===== EXPERIENCES / VIP ACTIVATION SECTION ===== */
.experiences-section {
  background-color: #ede4ed;
  padding: 90px 40px;
}
.experiences-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.experiences-eyebrow {
  display: inline-block;
  background-color: #5b2655;
  color: #e8d5e6;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.experiences-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #5b2655;
  line-height: 1.2;
  margin-bottom: 48px;
  font-weight: 400;
}
.experiences-headline em {
  font-style: italic;
  color: #5b2655;
}

/* VIP Card */
.vip-card {
  background-color: #3a1040;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(58, 16, 64, 0.3);
}
.vip-card-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.vip-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
}
.vip-card-subtitle {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1rem;
  color: #c4a0c0;
  font-style: italic;
  line-height: 1.5;
}
.vip-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #9c7aaa;
  line-height: 1.7;
}
.vip-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #9c6b96;
  color: #c4a0c0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 999px;
  margin-top: 8px;
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}
.vip-card-cta:hover {
  background: #9c6b96;
  color: #ffffff;
}
.vip-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}
.vip-card-cta:hover .vip-arrow {
  transform: translateX(4px);
}
.vip-card-right {
  position: relative;
  overflow: hidden;
}
.vip-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== THE EXPERIENCE TEASER (homepage) ===== */
.exp-teaser-section {
  background: var(--cream-mid);
  padding: 100px 60px;
  text-align: center;
}
.exp-teaser-inner {
  max-width: 720px;
  margin: 0 auto;
}
.exp-teaser-inner h2 { margin-bottom: 20px; }
.exp-teaser-inner .section-intro { margin-bottom: 40px; }

/* ===== THE EXPERIENCE PAGE ===== */
.exp-portal { padding-top: 80px; padding-bottom: 80px; }

.exp-details-section {
  background: var(--cream);
  padding: 110px 60px;
}
.exp-details-inner { max-width: 1200px; margin: 0 auto; }
.exp-details-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.exp-details-header h2 { margin-bottom: 16px; }
.exp-details-header .divider-line { margin: 24px auto; }
.exp-details-header .section-intro { margin-top: 20px; }
.exp-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp-detail-card {
  background: #fff;
  border: 1px solid rgba(158,104,152,0.12);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s;
}
.exp-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(91,38,85,0.10);
}
.exp-detail-icon {
  margin: 0 auto 20px;
  width: 36px;
  height: 36px;
}
.exp-detail-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--plum);
}
.exp-detail-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

.exp-quote-section {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
}
.exp-quote-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.exp-quote-overlay {
  position: absolute; inset: 0;
  background: rgba(42, 10, 50, 0.72);
  z-index: 1;
}
.exp-quote-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.exp-quote-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  line-height: 1.55;
  margin-bottom: 24px;
}
.exp-quote-text em { font-style: italic; color: var(--lavender); }
.exp-quote-attr {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.exp-gallery-section { overflow: hidden; }
.exp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.exp-gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.exp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.exp-gallery-item:hover img { transform: scale(1.06); }

/* ===== PORTAL / VIDEO SECTION ===== */
.portal-section {
  position: relative;
  background: var(--plum);
  padding: 130px 60px;
  overflow: hidden;
  text-align: center;
}
.portal-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
}
.portal-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.portal-inner h2 { margin-bottom: 20px; }
.portal-inner .body-text { max-width: 520px; margin: 0 auto 52px; }

.video-wrap { width: 100%; }
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(158,104,152,0.35);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.video-thumb:hover img { transform: scale(1.03); }
.play-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.video-thumb:hover .play-ring { transform: translate(-50%, -50%) scale(1.1); }
.video-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
  background: var(--cream-mid);
  padding: 130px 0;
}
.programs-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 60px;
}
.programs-header h2 { margin-bottom: 18px; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
.program-card {
  background: linear-gradient(160deg, var(--plum) 0%, #7a3272 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s;
}
.program-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(91,38,85,0.18); }
.program-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.program-card:hover .program-img img { transform: scale(1.06); }
.program-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(91,38,85,0.75);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
}
.program-body { padding: 32px; }
.program-body h3 { font-size: 26px; margin-bottom: 14px; line-height: 1.15; color: var(--lavender); }
.program-body p { font-size: 14px; color: rgba(237,228,237,0.82); line-height: 1.75; margin-bottom: 22px; }
.programs-cta { text-align: center; margin-top: 60px; padding: 0 60px; }

.programs-quote { text-align: center; margin-top: 50px; padding: 0 60px; }
.programs-quote-text { font-size: 18px; font-style: italic; color: rgb(91, 38, 85); line-height: 1.75; max-width: 680px; margin: 0 auto; }

/* ===== AWAKEN YOUR SOUL HERO ===== */
.awaken-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.awaken-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/nebula-pink-mauve.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.awaken-hero:hover .awaken-bg {
  transform: scale(1.0);
}

.awaken-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 8, 20, 0.35) 0%,
    rgba(30, 10, 30, 0.18) 40%,
    rgba(20, 8, 20, 0.55) 100%
  );
}

.awaken-words {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 6vw;
  gap: 2vw;
  flex: 1;
  margin-top: auto;
  padding-top: 10vh;
}

.awaken-word {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(64px, 10vw, 148px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow:
    0 2px 40px rgba(200, 120, 180, 0.45),
    0 0 80px rgba(180, 80, 160, 0.25);
  white-space: nowrap;
}

.awaken-tagline {
  position: relative;
  z-index: 2;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 30px 7vh;
  text-shadow: 0 1px 20px rgba(120, 60, 120, 0.5);
}

@media (max-width: 768px) {
  .awaken-hero {
    height: 80vh;
    min-height: 500px;
  }
  .awaken-words {
    padding: 0 5vw;
    padding-top: 8vh;
    gap: 1vw;
  }
  .awaken-word {
    font-size: clamp(40px, 12vw, 80px);
  }
  .awaken-tagline {
    font-size: clamp(13px, 3.5vw, 17px);
    padding-bottom: 6vh;
  }
}

@media (max-width: 480px) {
  .awaken-words {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0;
  }
  .awaken-word {
    font-size: clamp(52px, 18vw, 80px);
  }
  .awaken-tagline {
    font-size: 14px;
    padding-bottom: 5vh;
  }
}

/* ===== OFFERINGS SECTION ===== */
.offerings-section {
  position: relative;
  padding: 150px 60px;
  overflow: hidden;
  background: var(--plum);
}
.offerings-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}
.offerings-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,38,85,0.92) 0%, rgba(70,20,65,0.85) 100%);
  pointer-events: none;
}
.offerings-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.offerings-text h2 { margin-bottom: 8px; }
.offerings-text .btn-light { margin-top: 8px; }

.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.offering-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.offering-icon { flex-shrink: 0; margin-top: 2px; }
.offering-item h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: var(--lavender);
  margin-bottom: 6px;
  font-weight: 500;
}
.offering-item p { font-size: 13px; color: rgba(237,228,237,0.7); line-height: 1.65; margin: 0; }

/* ===== MAGIC SLIDESHOW ===== */
.magic-slideshow-section {
  background: var(--cream);
  padding: 110px 0 0;
}

/* Two-column split layout */
.magic-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

/* LEFT: photo slideshow column */
.magic-split-photos {
  position: relative;
}
.magic-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  perspective: 1400px;
  overflow: hidden;
}

/* RIGHT: text column */
.magic-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
  background: var(--cream);
}
.magic-split-text h2 {
  margin-top: 12px;
  margin-bottom: 28px;
}
.magic-split-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--plum);
  opacity: 0.85;
  margin-bottom: 18px;
}
.magic-split-cta {
  margin-top: 16px;
  align-self: flex-start;
}
.magic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0s;
}
.magic-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.magic-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.magic-slide.flipping .magic-slide-inner {
  transform: rotateY(180deg);
}
.magic-slide-front,
.magic-slide-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.magic-slide-front img,
.magic-slide-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.magic-slide-back {
  transform: rotateY(180deg);
}
.magic-slideshow-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.magic-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.magic-dot.active {
  background: rgba(255,255,255,0.95);
  transform: scale(1.3);
}

/* Magic section responsive */
@media (max-width: 900px) {
  .magic-split-layout {
    grid-template-columns: 1fr;
  }
  .magic-split-photos {
    order: 1;
  }
  .magic-slideshow {
    min-height: 70vw;
    height: 70vw;
  }
  .magic-split-text {
    order: 2;
    padding: 60px 30px;
  }
  .magic-split-cta {
    align-self: center;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative;
  padding: 130px 60px;
  background: var(--plum);
  overflow: hidden;
  text-align: center;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}
.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials-inner h2 { margin-bottom: 60px; }
.testimonials-track-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  color: rgba(225,196,245,0.3);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: rgba(237,228,237,0.9);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-pale);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(237,228,237,0.25);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.t-dot.active { background: var(--lavender-pale); transform: scale(1.3); }

/* ===== SHASTA SECTION ===== */
.shasta-section {
  background: var(--cream-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.shasta-img { overflow: hidden; }
.shasta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.shasta-img:hover img { transform: scale(1.04); }
.shasta-text {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shasta-text h2 { margin-bottom: 8px; }
.shasta-text .btn-primary { margin-top: 8px; align-self: flex-start; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 140px 60px;
  overflow: hidden;
  background: var(--plum);
  text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,38,85,0.94) 0%, rgba(70,20,65,0.90) 100%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner-inner h2 { margin-bottom: 20px; }
.cta-banner-inner .body-text { max-width: 520px; margin: 0 auto 36px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  padding: 70px 0 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(237,228,237,0.07);
  gap: 60px;
}
.footer-brand h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--lavender);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-brand p { font-size: 13px; color: var(--brown-mid); line-height: 1.7; }
.footer-nav-cols { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 4px;
}
.footer-col a { font-size: 13px; color: var(--brown-mid); transition: color 0.3s; }
.footer-col a:hover { color: var(--lavender-mid); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--brown-mid); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 91vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 1;
  transform: scale(1.04);
  transition: transform 10s ease-out;
}
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
    rgba(15,8,25,0.55) 0%,
    rgba(15,8,25,0.30) 40%,
    rgba(15,8,25,0.65) 100%
  );
}
.fol-overlay {
  background: linear-gradient(to bottom,
    rgba(91,38,85,0.7) 0%,
    rgba(91,38,85,0.4) 40%,
    rgba(91,38,85,0.8) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 40px;
  max-width: 800px;
}
.page-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 500;
  color: white;
  line-height: 1.0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  margin-top: 12px;
}
.page-hero-sub {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: rgba(255,245,235,0.8);
  margin-top: 16px;
  line-height: 1.6;
}

/* ===== PAGE INTRO ===== */
.page-intro-section {
  background: var(--cream);
  padding: 100px 60px;
  text-align: center;
}
.page-intro-inner { max-width: 700px; margin: 0 auto; }
.page-intro-inner h2 { margin-bottom: 8px; }

/* ===== ABOUT PAGE ===== */
.about-intro-section {
  background: var(--cream);
  padding: 130px 60px;
}
.about-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
}
.about-intro-text h2 { margin-bottom: 8px; }

.stats-section {
  position: relative;
  padding: 80px 60px;
  background: var(--plum);
  overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: screen;
  pointer-events: none;
}
.stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: var(--lavender);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,228,237,0.6);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(237,228,237,0.15);
  flex-shrink: 0;
}

.story-section {
  background: var(--cream-mid);
  padding: 130px 60px;
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.story-text h2 { margin-bottom: 8px; }
.story-img-stack { position: relative; }
.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
}
.story-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--cream-mid);
  box-shadow: 0 12px 40px rgba(91,38,85,0.2);
}

.modalities-section {
  position: relative;
  padding: 130px 60px;
  background: var(--plum);
  overflow: hidden;
}
.modalities-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}
.modalities-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,38,85,0.92) 0%, rgba(70,20,65,0.85) 100%);
  pointer-events: none;
}
.modalities-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.modalities-header {
  text-align: center;
  margin-bottom: 70px;
}
.modalities-header h2 { margin-bottom: 16px; }
.modalities-header .body-text { max-width: 560px; margin: 0 auto; }
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.modality-card {
  background: rgba(237,228,237,0.07);
  border: 1px solid rgba(237,228,237,0.12);
  border-radius: 16px;
  padding: 36px 32px;
  transition: background 0.3s, transform 0.3s;
}
.modality-card:hover { background: rgba(237,228,237,0.12); transform: translateY(-4px); }
.modality-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--lavender);
  margin-bottom: 12px;
  font-weight: 500;
}
.modality-card p { font-size: 14px; color: rgba(237,228,237,0.7); line-height: 1.7; margin: 0; }

.about-gallery { background: var(--cream); padding: 0; }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 360px;
}
.ag-item { overflow: hidden; }
.ag-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ag-item:hover img { transform: scale(1.06); }

/* ===== PROGRAMS PAGE ===== */
.program-detail {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.program-detail.even { background: var(--cream); }
.program-detail.odd { background: var(--cream-mid); max-width: 100%; padding-left: 0; padding-right: 0; }
.program-detail.odd > * { max-width: 600px; }
.program-detail.odd { display: flex; justify-content: center; gap: 90px; padding: 120px 60px; }
.program-detail-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
}
.program-detail-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 16px;
  display: block;
}
.program-detail-text h2 { margin-bottom: 8px; }
.program-detail-text .btn-primary { margin-top: 8px; }
.program-includes {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-includes li {
  font-size: 14px;
  color: var(--brown-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.program-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--plum-light);
}

.pull-quote-section {
  position: relative;
  padding: 120px 60px;
  background: var(--plum);
  overflow: hidden;
  text-align: center;
}
.pull-quote-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
}
.pull-quote-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.pull-quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 120px;
  color: rgba(225,196,245,0.25);
  line-height: 0.5;
  margin-bottom: 20px;
}
.pull-quote-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: rgba(237,228,237,0.92);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pull-quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-pale);
}

.faq-section {
  background: var(--cream);
  padding: 120px 60px;
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 60px; }
.faq-header h2 { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(91,38,85,0.1);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--plum);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.faq-q::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--plum-light);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--plum-mid); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }
.faq-a p { font-size: 15px; color: var(--brown-mid); line-height: 1.75; }

/* ===== FAMILY OF LIGHT PAGE ===== */
.fol-hero { background: var(--plum); }
.fol-intro-section {
  background: var(--cream);
  padding: 120px 60px;
  text-align: center;
}
.fol-intro-inner { max-width: 800px; margin: 0 auto; }
.fol-intro-inner h2 { margin-bottom: 8px; }

.fol-pillars-section {
  position: relative;
  padding: 130px 60px;
  background: var(--plum);
  overflow: hidden;
}
.fol-pillars-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}
.fol-pillars-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,38,85,0.92) 0%, rgba(70,20,65,0.85) 100%);
  pointer-events: none;
}
.fol-pillars-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.fol-pillars-header { text-align: center; margin-bottom: 70px; }
.fol-pillars-header h2 { margin-bottom: 0; }
.fol-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fol-pillar {
  background: rgba(237,228,237,0.07);
  border: 1px solid rgba(237,228,237,0.12);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.fol-pillar:hover { background: rgba(237,228,237,0.12); transform: translateY(-4px); }
.fol-pillar-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: rgba(225,196,245,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.fol-pillar h3 { font-size: 22px; color: var(--lavender); margin-bottom: 12px; }
.fol-pillar p { font-size: 13px; color: rgba(237,228,237,0.7); line-height: 1.7; margin: 0; }

.galactic-section {
  background: var(--cream-mid);
  padding: 130px 60px;
}
.galactic-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.galactic-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
}
.galactic-text h2 { margin-bottom: 8px; }

.fol-receive-section {
  background: var(--cream);
  padding: 130px 60px;
}
.fol-receive-inner { max-width: 1200px; margin: 0 auto; }
.fol-receive-header { text-align: center; margin-bottom: 70px; }
.fol-receive-header h2 { margin-bottom: 8px; }
.fol-receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fol-receive-card {
  background: var(--lavender);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fol-receive-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(91,38,85,0.12); }
.fol-receive-icon { margin-bottom: 20px; }
.fol-receive-card h4 { margin-bottom: 12px; }
.fol-receive-card p { font-size: 14px; color: var(--brown-mid); line-height: 1.7; margin: 0; }

/* ===== BOOKING PAGE ===== */
.booking-section {
  background: var(--cream);
  padding: 100px 60px;
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  align-items: start;
}
.booking-info h2 { margin-bottom: 8px; }
.booking-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.booking-detail-icon { flex-shrink: 0; }
.booking-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 2px;
}
.booking-detail-value { font-size: 14px; color: var(--brown-mid); }
.booking-programs-preview {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(91,38,85,0.1);
}
.booking-programs-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 16px;
}
.booking-program-link {
  display: block;
  font-size: 14px;
  color: var(--plum);
  padding: 10px 0;
  border-bottom: 1px solid rgba(91,38,85,0.08);
  transition: padding-left 0.25s, color 0.25s;
}
.booking-program-link:hover { padding-left: 8px; color: var(--plum-mid); }

.booking-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 60px rgba(91,38,85,0.1);
  border: 1px solid rgba(91,38,85,0.06);
}

/* Form styles */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1px solid rgba(91,38,85,0.15);
  border-radius: 10px;
  color: var(--brown-dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--brown-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-light);
  box-shadow: 0 0 0 3px rgba(91,38,85,0.06);
}
.form-group select option { background: white; color: var(--brown-dark); }
.form-group textarea { resize: vertical; min-height: 130px; }
#formStatus { margin-top: 14px; text-align: center; font-size: 14px; }

/* Newsletter form — dark bg version */
.newsletter-form .form-group input {
  background: rgba(237,228,237,0.12);
  border: 1px solid rgba(237,228,237,0.2);
  color: var(--lavender);
}
.newsletter-form .form-group input::placeholder { color: rgba(237,228,237,0.35); }
.newsletter-form .form-group input:focus { border-color: rgba(237,228,237,0.5); }
.newsletter-form .form-group label { color: rgba(237,228,237,0.7); }
#nlFormStatus { margin-top: 14px; text-align: center; font-size: 14px; }

.next-steps-section {
  background: var(--cream-mid);
  padding: 120px 60px;
}
.next-steps-inner { max-width: 1100px; margin: 0 auto; }
.next-steps-header { margin-bottom: 70px; }
.next-steps-header h2 { margin-bottom: 0; }
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.next-step { }
.next-step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 60px;
  color: rgba(91,38,85,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.next-step h4 { margin-bottom: 10px; }
.next-step p { font-size: 14px; color: var(--brown-mid); line-height: 1.7; margin: 0; }

/* ===== STAY CONNECTED PAGE ===== */
.newsletter-section {
  background: var(--plum);
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.newsletter-text h2 { margin-bottom: 8px; }
.newsletter-includes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-includes li {
  font-size: 14px;
  color: rgba(237,228,237,0.75);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.newsletter-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lavender-pale);
}
.newsletter-form-card {
  background: rgba(237,228,237,0.1);
  border: 1px solid rgba(237,228,237,0.18);
  border-radius: 20px;
  padding: 44px 40px;
}
.newsletter-form-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--lavender);
  margin-bottom: 10px;
  font-weight: 400;
}
.newsletter-form-card > p {
  font-size: 14px;
  color: rgba(237,228,237,0.65);
  margin-bottom: 28px;
  line-height: 1.65;
}

.social-section {
  position: relative;
  padding: 120px 60px;
  background: var(--plum);
  overflow: hidden;
}
.social-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}
.social-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,38,85,0.92) 0%, rgba(70,20,65,0.85) 100%);
  pointer-events: none;
}
.social-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.social-header { text-align: center; margin-bottom: 70px; }
.social-header h2 { margin-bottom: 16px; }
.social-header .body-text { max-width: 520px; margin: 0 auto; }
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.social-card {
  background: rgba(237,228,237,0.07);
  border: 1px solid rgba(237,228,237,0.12);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.social-card:hover { background: rgba(237,228,237,0.12); transform: translateY(-4px); }
.social-icon {
  color: var(--lavender-pale);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.social-card h4 { color: var(--lavender); margin-bottom: 12px; }
.social-card p { font-size: 13px; color: rgba(237,228,237,0.65); line-height: 1.7; margin-bottom: 24px; }
.social-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-pale);
  border-bottom: 1px solid rgba(225,196,245,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { color: white; border-color: white; }

.connected-gallery {
  background: var(--cream);
  padding: 100px 0 0;
}
.connected-gallery-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 60px;
}
.connected-gallery-header h2 { margin-bottom: 0; }
.connected-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}
.cg-item { position: relative; overflow: hidden; }
.cg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cg-item:hover img { transform: scale(1.07); }
.cg-overlay {
  position: absolute; inset: 0;
  background: rgba(91,38,85,0.3);
  opacity: 0;
  transition: opacity 0.4s;
}
.cg-item:hover .cg-overlay { opacity: 1; }

.events-section {
  background: var(--cream-mid);
  padding: 120px 60px;
}
.events-inner { max-width: 900px; margin: 0 auto; }
.events-header { margin-bottom: 60px; }
.events-header h2 { margin-bottom: 0; }
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(91,38,85,0.1);
}
.event-date {
  flex-shrink: 0;
  text-align: center;
  width: 64px;
}
.event-month {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum-light);
}
.event-day {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  color: var(--plum);
  line-height: 1;
}
.event-info { flex: 1; }
.event-info h4 { margin-bottom: 6px; }
.event-info p { font-size: 14px; color: var(--brown-mid); line-height: 1.6; margin-bottom: 8px; }
.event-type {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--plum-light);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-headline {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.25,0.46,0.45,0.94), transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-headline.visible { opacity: 1; transform: translateY(0); }

/* Delay classes */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .header-inner { padding: 24px 40px; }
  .header-nav { gap: 24px; }
  .intro-grid { gap: 60px; }
  .offerings-inner { gap: 60px; }
  .programs-grid { padding: 0 40px; }
  .fol-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .next-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .ag-item { height: 280px; }
}

@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }

  h2 { font-size: clamp(34px, 7vw, 56px); }
  h3 { font-size: clamp(22px, 4vw, 32px); }

  .intro-section { padding: 80px 30px; }
  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-image { order: -1; }
  .intro-img-badge { bottom: -10px; right: -10px; }

  .portal-section { padding: 80px 30px; }

  .exp-teaser-section { padding: 80px 30px; }
  .exp-details-section { padding: 80px 30px; }
  .exp-details-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .exp-detail-card { padding: 30px 24px; }
  .exp-quote-section { padding: 90px 30px; }
  .exp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-gallery-item { aspect-ratio: 1/1; }

  .programs-section { padding: 80px 0; }
  .programs-header { padding: 0 30px; margin-bottom: 50px; }
  .programs-grid { grid-template-columns: 1fr; padding: 0 30px; gap: 20px; }
  .programs-cta { padding: 0 30px; margin-top: 40px; }

  .offerings-section { padding: 80px 30px; }
  .offerings-inner { grid-template-columns: 1fr; gap: 50px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }

  .testimonials-section { padding: 80px 30px; }

  .shasta-section { grid-template-columns: 1fr; }
  .shasta-img { height: 320px; }
  .shasta-text { padding: 60px 30px; }

  .cta-banner { padding: 90px 30px; }

  .footer-inner { padding: 0 30px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-nav-cols { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .page-hero { height: 72vh; min-height: 520px; }
  .page-hero-title { font-size: clamp(44px, 9vw, 80px); }

  .about-intro-section { padding: 80px 30px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 50px; }

  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 40px; }
  .stat-divider { display: none; }

  .story-section { padding: 80px 30px; }
  .story-inner { grid-template-columns: 1fr; gap: 50px; }
  .story-img-accent { display: none; }

  .modalities-section { padding: 80px 30px; }
  .modalities-grid { grid-template-columns: 1fr 1fr; }

  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .program-detail { grid-template-columns: 1fr; gap: 50px; padding: 80px 30px; }
  .program-detail.odd { flex-direction: column; padding: 80px 30px; }
  .program-detail.odd > * { max-width: 100%; }

  .fol-intro-section { padding: 80px 30px; }
  .fol-pillars-section { padding: 80px 30px; }
  .fol-pillars-grid { grid-template-columns: 1fr 1fr; }
  .galactic-section { padding: 80px 30px; }
  .galactic-grid { grid-template-columns: 1fr; gap: 50px; }
  .fol-receive-section { padding: 80px 30px; }
  .fol-receive-grid { grid-template-columns: 1fr 1fr; }

  .booking-section { padding: 80px 30px; }
  .booking-inner { grid-template-columns: 1fr; gap: 50px; }
  .booking-form-wrap { padding: 32px 24px; }

  .next-steps-section { padding: 80px 30px; }
  .next-steps-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .newsletter-section { padding: 80px 30px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 50px; }

  .social-section { padding: 80px 30px; }
  .social-cards { grid-template-columns: 1fr; }

  .connected-gallery { padding: 80px 0 0; }
  .connected-gallery-header { padding: 0 30px; }
  .connected-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }

  .events-section { padding: 80px 30px; }
  .event-item { gap: 20px; flex-wrap: wrap; }

  .faq-section { padding: 80px 30px; }
  .pull-quote-section { padding: 80px 30px; }
}

@media (max-width: 900px) {
  .vip-card {
    grid-template-columns: 1fr;
  }
  .vip-card-right {
    height: 320px;
  }
  .vip-card-left {
    padding: 40px 36px;
  }
}

@media (max-width: 600px) {
  .experiences-section { padding: 60px 24px; }
  .vip-card-left { padding: 32px 28px; }
  .vip-card-right { height: 260px; }
  .header-inner { padding: 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .modalities-grid { grid-template-columns: 1fr; }
  .fol-pillars-grid { grid-template-columns: 1fr; }
  .fol-receive-grid { grid-template-columns: 1fr; }
  .next-steps-grid { grid-template-columns: 1fr; }
  .connected-gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav-cols { flex-direction: column; gap: 24px; }
  .stats-inner { gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .exp-details-grid { grid-template-columns: 1fr; }
  .exp-gallery-grid { grid-template-columns: 1fr 1fr; }
  .exp-gallery-item { aspect-ratio: 1/1; }
  .exp-quote-section { padding: 70px 24px; }
  .exp-teaser-section { padding: 70px 24px; }
  .exp-details-section { padding: 70px 24px; }
  .awakening-grid { grid-template-columns: 1fr; gap: 40px; }
  .awakening-photo { height: 420px; }
  .awakening-flipcard,
  .awakening-flipcard-inner { min-height: 420px; }
  .awakening-item span { font-size: clamp(26px, 6vw, 36px); }
  .awakening-item--faded span { font-size: clamp(22px, 5vw, 30px); }
  .awakening-section { padding: 80px 24px; }
}

/* ===== DESIGNED FOR YOUR AWAKENING SECTION ===== */
.awakening-section {
  background: linear-gradient(160deg, #ede4ed 0%, #e8daea 50%, #ede4ed 100%);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
.awakening-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,160,192,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.awakening-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.awakening-heading {
  text-align: center;
  margin-bottom: 64px;
}
.awakening-title {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  color: var(--plum);
  line-height: 1.1;
  margin-bottom: 4px;
}
.awakening-subtitle {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  font-style: italic;
  color: var(--plum);
  line-height: 1.1;
}
.awakening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.awakening-photo {
  position: relative;
  min-height: 560px;
}

/* Flip card structure */
.awakening-flipcard {
  width: 100%;
  height: 100%;
  min-height: 560px;
  perspective: 1200px;
}
.awakening-flipcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.awakening-flipcard.is-flipped .awakening-flipcard-inner {
  transform: rotateY(180deg);
}
.awakening-flipcard-front,
.awakening-flipcard-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
}
.awakening-flipcard-back {
  transform: rotateY(180deg);
}
.awakening-flipcard-front img,
.awakening-flipcard-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Active item highlight */
.awakening-item.is-active span {
  opacity: 1 !important;
  color: var(--plum) !important;
  transform: translateX(8px);
  transition: transform 0.4s ease, color 0.4s ease;
}
.awakening-item span {
  transition: transform 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}
.awakening-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}
.awakening-item {
  padding: 22px 0;
}
.awakening-item span {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.1;
  display: block;
}
.awakening-item--strong span {
  font-size: clamp(30px, 3.5vw, 52px);
  color: var(--plum);
}
.awakening-item--faded span {
  font-size: clamp(26px, 3vw, 44px);
  color: var(--plum-pale);
}
.awakening-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--plum-pale), rgba(196,160,192,0.2));
  width: 100%;
}
