:root {
  --ink: #2f2734;
  --purple: #783766;
  --purple-dark: #4b2747;
  --teal: #508086;
  --gold: #ebce4d;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --mist: #e8f0ef;
  --line: rgba(47, 39, 52, 0.16);
  --shadow: 0 22px 60px rgba(54, 36, 54, 0.13);
  --radius: 1.4rem;
  --max: 74rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-underline-offset: 0.2em; }

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

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 0.2rem;
}

button, input, textarea { font: inherit; }
button:disabled { cursor: not-allowed; opacity: 0.62; transform: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 { font-size: clamp(2.8rem, 7vw, 6.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.3rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.45rem, 2.3vw, 2rem); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--purple-dark);
  border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner, .container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand img { width: 12.2rem; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-nav a { text-decoration: none; font-size: 0.92rem; font-weight: 650; letter-spacing: 0.02em; }
.site-nav a[aria-current="page"] { color: var(--purple); }

.nav-cta, .button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  color: white;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover, .button:hover { color: white; background: var(--purple-dark); transform: translateY(-1px); }
.button.secondary { color: var(--purple-dark); background: transparent; border-color: currentColor; }
.button.secondary:hover { color: white; background: var(--purple-dark); }

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span { display: block; height: 2px; margin: 0.3rem; background: var(--ink); transition: 160ms ease; }

.hero {
  overflow: hidden;
  background: radial-gradient(circle at 85% 18%, rgba(235, 206, 77, 0.24), transparent 22rem), linear-gradient(135deg, #f9efe3, #edf3f1);
}

.hero-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 { margin-bottom: 1.25rem; color: var(--purple-dark); }
.hero-copy { max-width: 38rem; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.hero-portrait { position: relative; width: min(100%, 20rem); margin: 0; justify-self: end; }
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -1.2rem 1.7rem 1.7rem -1.2rem;
  border: 1px solid rgba(120, 55, 102, 0.25);
  border-radius: 48% 48% 1.5rem 1.5rem;
}
.hero-portrait img { position: relative; width: 100%; height: auto; border-radius: 48% 48% 1.5rem 1.5rem; box-shadow: var(--shadow); }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section.compact { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section.cream { background: var(--cream); }
.section.mist { background: var(--mist); }
.section.dark { color: white; background: var(--purple-dark); }
.section-header { max-width: 49rem; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 42rem; font-size: 1.08rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

.media-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; min-height: 25rem; object-fit: cover; }
.media-frame.book { width: min(100%, 27rem); justify-self: center; }
.media-frame.book img { min-height: 0; }
.retreat-teaser-image img { min-height: 0; aspect-ratio: 4 / 3; object-fit: cover; }

.card {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card p:last-child { margin-bottom: 0; }
.card-number { color: var(--teal); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.12em; }
.replay-artwork { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 1.5rem; border-radius: calc(var(--radius) - 0.5rem); }
.text-link { color: var(--purple); font-weight: 750; }

.feature-band { position: relative; overflow: hidden; }
.feature-band::after { content: ""; position: absolute; inset: 0; opacity: 0.07; background: url("../images/cosmos.jpg") center / cover; pointer-events: none; }
.feature-band > .container { position: relative; z-index: 1; }

.podcast-art {
  width: min(100%, 15rem);
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  justify-self: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--purple-dark);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.video-card iframe { width: 100%; height: 100%; border: 0; }

.video-load {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.55rem;
  color: white;
  text-align: left;
  background: radial-gradient(circle at 82% 20%, rgba(235, 206, 77, 0.4), transparent 26%), linear-gradient(145deg, #783766, #40304b);
  border: 0;
  cursor: pointer;
}

.video-load:hover { background: radial-gradient(circle at 82% 20%, rgba(235, 206, 77, 0.56), transparent 28%), linear-gradient(145deg, #884173, #40304b); }
.video-load:focus-visible { outline: 4px solid var(--gold); outline-offset: -4px; }
.video-play-icon { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; padding-left: 0.12rem; color: var(--purple-dark); background: var(--gold); border-radius: 50%; }
.video-card-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.25; }
.video-card-action { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.video-card noscript { position: absolute; inset: 0; }
.video-card noscript a { display: grid; width: 100%; height: 100%; place-items: center; padding: 1.25rem; color: white; background: var(--purple-dark); text-align: center; }

.video-more { margin-top: 1.25rem; }
.video-more summary { width: max-content; max-width: 100%; padding: 0.65rem 0; color: var(--purple); font-weight: 800; cursor: pointer; }
.video-more[open] summary { margin-bottom: 1rem; }

.page-hero { padding-block: clamp(4.5rem, 9vw, 8rem); background: linear-gradient(135deg, var(--cream), var(--mist)); }
.page-hero .lede { max-width: 47rem; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.page-hero h1 { max-width: 55rem; color: var(--purple-dark); }
.page-hero.small h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }

.retreat-hero {
  overflow: hidden;
  background: radial-gradient(circle at 88% 20%, rgba(235, 206, 77, 0.28), transparent 24rem), linear-gradient(135deg, #f9efe3, #edf3f1);
}

.retreat-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.retreat-hero-grid > *, .retreat-gallery > * { min-width: 0; }

.retreat-hero h1 { margin-bottom: 1.25rem; color: var(--purple-dark); }
.retreat-hero .lede, .future-retreats .lede { font-size: clamp(1.08rem, 1.8vw, 1.3rem); }

.retreat-hero-image {
  margin: 0;
  padding: 0.75rem;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(120, 55, 102, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.retreat-hero-image img { width: 100%; height: auto; border-radius: calc(var(--radius) - 0.5rem); }
.retreat-hero-image figcaption, .retreat-gallery figcaption { padding: 0.65rem 0.3rem 0.15rem; color: #5f5862; font-size: 0.84rem; }

.retreat-destination {
  display: grid;
  grid-template-columns: minmax(15rem, 0.58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.retreat-destination-reverse .retreat-destination-copy { order: 2; }
.retreat-destination-reverse .retreat-gallery { order: 1; }
.retreat-destination h3 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.6rem); color: var(--purple-dark); }
.retreat-label { display: inline-flex; margin-bottom: 1rem; padding: 0.3rem 0.7rem; color: var(--purple-dark); background: #f4e0ec; border-radius: 999px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.retreat-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.retreat-gallery figure { margin: 0; padding: 0.55rem; background: white; border: 1px solid var(--line); border-radius: 1rem; box-shadow: 0 16px 38px rgba(54, 36, 54, 0.1); }
.retreat-gallery figure:nth-child(2) { margin-top: 2.5rem; }
.retreat-gallery img { width: 100%; height: auto; border-radius: 0.65rem; }
.future-retreats { max-width: 50rem; text-align: center; }
.future-retreats .actions { justify-content: center; }

.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; padding: 0; list-style: none; }
.benefits li { padding: 1rem 1.1rem; background: white; border: 1px solid var(--line); border-radius: 0.8rem; }

.form-card { padding: clamp(1.3rem, 4vw, 3rem); background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: 0.35rem; font-weight: 750; }
.field .optional { color: #6d6870; font-size: 0.86rem; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid rgba(47, 39, 52, 0.28);
  border-radius: 0.65rem;
}
.field textarea { min-height: 10rem; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(80, 128, 134, 0.25); border-color: var(--teal); }
.form-note { padding: 0.8rem 1rem; background: var(--cream); border-left: 4px solid var(--gold); font-size: 0.92rem; }
.form-status { display: none; margin: 1rem 0 0; padding: 0.8rem 1rem; border-radius: 0.65rem; background: var(--mist); }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #6f1d2b; background: #fdebed; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.turnstile-container { min-height: 4.1rem; margin: 1rem 0; }
.form-card[aria-busy="true"] { opacity: 0.82; }
.button-progress { display: none; align-items: center; justify-content: center; gap: 0.5rem; }
.form-card[aria-busy="true"] [data-submit-label] { display: none; }
.form-card[aria-busy="true"] .button-progress { display: inline-flex; }
.button-spinner { width: 1em; height: 1em; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: button-spin 0.7s linear infinite; }
@keyframes button-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .button-spinner { animation-duration: 1.5s; } }
.consent { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1rem 0; font-size: 0.92rem; }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: 0.3rem; flex: 0 0 auto; }

.contact-details { padding: 0; list-style: none; }
.contact-details li { padding-block: 0.75rem; border-bottom: 1px solid var(--line); }

.review-flag { display: inline-block; padding: 0.3rem 0.65rem; color: #513f00; background: #fff1a9; border-radius: 999px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.03em; }

.site-footer { padding-block: 3.5rem 2rem; color: white; background: #2c2330; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 2rem; }
.footer-logo { width: 12rem; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer h2 { font-family: inherit; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer ul { padding: 0; list-style: none; }
.site-footer a { color: white; }
.site-footer a:hover { color: var(--gold); }
.social-links { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.social-links a { display: inline-flex; min-height: 2.4rem; align-items: center; padding: 0.4rem 0.8rem; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.social-links a:hover { color: var(--purple-dark); background: var(--gold); border-color: var(--gold); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.82rem; }

@media (max-width: 56rem) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 5.25rem 0 auto;
    display: none;
    padding: 1.5rem 1rem 2rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.45rem 1rem; font-size: 1.05rem; }
  .site-nav .nav-cta { margin-top: 0.5rem; }
  .hero-grid, .grid-2, .retreat-hero-grid, .retreat-destination { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-portrait { width: min(82vw, 27rem); justify-self: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .retreat-destination-reverse .retreat-destination-copy,
  .retreat-destination-reverse .retreat-gallery { order: initial; }
}

@media (max-width: 38rem) {
  .header-inner, .container { width: min(calc(100% - 1.3rem), var(--max)); }
  .brand img { width: 10.5rem; }
  .field-grid, .benefits, .footer-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .button { width: 100%; }
  .media-frame img { min-height: 18rem; }
  .retreat-gallery { grid-template-columns: 1fr; }
  .retreat-gallery figure:nth-child(2) { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
