:root {
  --cream: #fffaf4;
  --shell: #f7eee9;
  --blush: #efd7d9;
  --lavender: #c78ade;
  --lilac-soft: #f4e8fb;
  --sage: #c9d8c5;
  --sea: #9dbdba;
  --ink: #332d2c;
  --muted: #766d68;
  --line: rgba(51, 45, 44, 0.14);
  --shadow: 0 24px 80px rgba(88, 64, 48, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 10px;
  min-height: 156px;
  padding: 18px clamp(20px, 4vw, 64px) 16px;
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-masthead {
  display: grid;
  justify-items: center;
}

.brand-wordmark {
  width: clamp(150px, 16vw, 230px);
  opacity: 0.96;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a:hover,
.text-link:hover {
  color: #9d5db2;
}

.hero {
  position: relative;
  min-height: calc(100vh - 156px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 22, 21, 0.78), rgba(23, 22, 21, 0.26) 54%, rgba(23, 22, 21, 0.42)),
    linear-gradient(0deg, rgba(23, 22, 21, 0.42), rgba(23, 22, 21, 0.02) 42%),
    url("assets/site/hero-founders-wide.jpg") center / cover;
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(34px, 5vw, 72px);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: clamp(22px, 5vw, 76px);
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9c667b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5dfe9;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
}

h3 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

h4 {
  margin-bottom: 16px;
  color: #8d6874;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.hero-actions,
.connect {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  justify-content: flex-end;
  align-self: end;
  padding-bottom: 6px;
}

.hero-actions .button {
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.hero-actions .button.primary {
  color: white;
  background: rgba(23, 22, 21, 0.38);
  border-color: rgba(255, 255, 255, 0.68);
}

.hero-actions .button.secondary {
  background: rgba(23, 22, 21, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: #f9e3ef;
  border-color: #f9e3ef;
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.ink {
  color: #7f4b8f;
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.intro-section,
.about,
.featured,
.past,
.testimonials,
.connect {
  scroll-margin-top: 176px;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 76px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  background: linear-gradient(135deg, var(--cream), var(--lilac-soft));
}

.intro-section p:last-child {
  max-width: 640px;
  font-size: 21px;
}

.about-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 76px);
  background: #fffdf9;
}

.about-teaser-photo {
  overflow: hidden;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-teaser-photo img {
  display: block;
  width: 100%;
  min-height: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
  transition: transform 520ms ease;
}

.about-teaser-photo:hover img {
  transform: scale(1.035);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 720px;
}

.featured {
  background: var(--cream);
}

.about {
  background: #fffdf9;
}

.founder-grid {
  display: grid;
  gap: 28px;
}

.founder-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(232, 240, 223, 0.72));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.duo-photos {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.duo-photos.single {
  grid-template-columns: 1fr;
}

.duo-photos img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
}

.duo-photos img:first-child {
  aspect-ratio: 4 / 5;
  object-position: center 72%;
}

.duo-photos.single img:first-child {
  aspect-ratio: 16 / 11;
  object-position: center 64%;
}

.duo-photos img:last-child {
  aspect-ratio: 5 / 4;
  object-position: center 58%;
}

.duo-photos.single img:last-child {
  aspect-ratio: 16 / 11;
  object-position: center 64%;
}

.about-hero {
  min-height: 70vh;
  background-position: center 68%;
}

.about-hero > div {
  max-width: 620px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(244, 232, 251, 0.7), rgba(255, 250, 244, 0.9));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.founder-card.alternate {
  background: linear-gradient(135deg, rgba(232, 240, 223, 0.8), rgba(255, 250, 244, 0.9));
}

.founder-card.alternate .founder-photos {
  order: 2;
}

.founder-photos {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.founder-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(51, 45, 44, 0.16);
  filter: saturate(0.9) contrast(0.96) brightness(1.04);
}

.founder-photo.portrait {
  aspect-ratio: 4 / 5;
}

.founder-photo.detail {
  aspect-ratio: 4 / 5;
  transform: translateY(24px);
}

.founder-copy {
  max-width: 720px;
}

.founder-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 58px);
}

.practice-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 28px;
}

.practice-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.92) contrast(0.97) brightness(1.03);
  box-shadow: 0 18px 54px rgba(51, 45, 44, 0.12);
}

.practice-gallery img:nth-child(1),
.practice-gallery img:nth-child(3) {
  aspect-ratio: 4 / 5;
}

.practice-gallery img:nth-child(2),
.practice-gallery img:nth-child(4) {
  aspect-ratio: 3 / 4;
}

.social-link {
  display: inline-flex;
  margin: 0 0 22px;
  color: #9d5db2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-link:hover {
  color: #6f3b7f;
}

.retreat-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 280px auto;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.retreat-media {
  display: block;
  overflow: hidden;
}

.retreat-card img,
.retreat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retreat-media img {
  transition: transform 420ms ease;
}

.retreat-media:hover img {
  transform: scale(1.035);
}

.retreat-card > div {
  padding: clamp(24px, 4vw, 44px);
}

.retreat-card.spotlight {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  grid-template-rows: auto;
  margin-bottom: 28px;
  background: #fbf2f4;
}

.retreat-card.spotlight img {
  min-height: 520px;
}

.retreat-actions,
.recap-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.retreat-actions {
  margin-top: 24px;
}

.retreat-date {
  color: #9d5db2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  padding: 0;
  color: #8b4da2;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.retreat-grid,
.past-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.experience-band {
  display: grid;
  grid-template-columns: 140px minmax(0, 820px);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 6vw, 96px);
  background: linear-gradient(120deg, #f6e1ed, #e8f0df 52%, #e3f0f1);
}

.experience-band img {
  width: 140px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.experience-band h2 {
  max-width: 900px;
}

.past {
  background: #fffdf9;
}

.past-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
  color: white;
  isolation: isolate;
}

.past-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(21, 18, 16, 0.72), rgba(21, 18, 16, 0.06));
}

.past-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.past-card:hover img {
  transform: scale(1.05);
}

.past-grid h3 {
  margin-bottom: 4px;
  font-size: 28px;
}

.past-grid p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.past-link {
  width: fit-content;
  padding: 9px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.past-link:hover {
  background: rgba(255, 255, 255, 0.24);
}

.social-film {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 76px);
  background: linear-gradient(135deg, var(--lilac-soft), #f8f5ec 55%, #e6f1ee);
}

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

.film-card {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: white;
  background:
    linear-gradient(0deg, rgba(45, 36, 38, 0.78), rgba(45, 36, 38, 0.18)),
    url("assets/site/hero.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.film-card.embedded {
  min-height: 0;
  align-content: stretch;
  gap: 14px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.film-card.embedded iframe {
  width: 100%;
  height: 480px;
  background: #fff;
  border: 0;
  border-radius: 8px;
}

.film-card.embedded a {
  justify-self: start;
  padding: 10px 12px;
  color: #7f4b8f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-card:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(45, 36, 38, 0.78), rgba(45, 36, 38, 0.18)),
    url("assets/site/about-nikkii.jpg") center / cover;
}

.film-card:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(45, 36, 38, 0.78), rgba(45, 36, 38, 0.18)),
    url("assets/site/about-kim-yoga.jpg") center / cover;
}

.film-card span,
.film-card small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.film-card small {
  color: rgba(255, 255, 255, 0.78);
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-strip a {
  padding: 12px 16px;
  color: #7f4b8f;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-strip a:hover {
  color: #5f2f6e;
  background: rgba(255, 255, 255, 0.82);
}

.testimonials {
  background: var(--shell);
}

.inquiry-suite {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 76px);
  background: linear-gradient(135deg, #fffdf9, #f4e8fb 48%, #e8f0df);
}

.retreat-recap {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 76px);
  background: #fffdf9;
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.recap-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 24px;
  background: linear-gradient(140deg, rgba(244, 232, 251, 0.72), rgba(232, 240, 223, 0.62));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recap-grid span {
  color: #9d5db2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recap-grid h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
}

.recap-grid p {
  margin-bottom: 8px;
  color: #7d6c68;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.recap-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.recap-actions {
  margin-top: auto;
  padding-top: 10px;
}

.retreat-page-hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: clamp(150px, 19vw, 220px) clamp(20px, 7vw, 96px) clamp(58px, 8vw, 110px);
  color: white;
  background:
    linear-gradient(90deg, rgba(28, 24, 25, 0.8), rgba(28, 24, 25, 0.24)),
    var(--retreat-image) center / cover;
}

.retreat-page-hero .eyebrow,
.retreat-page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.retreat-page-hero h1 {
  max-width: 860px;
}

.retreat-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.retreat-hero-actions .button {
  min-height: 40px;
  padding: 0 16px;
  backdrop-filter: blur(10px);
}

.retreat-detail {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 76px);
  background: #fffdf9;
}

.retreat-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.retreat-story {
  max-width: 820px;
}

.retreat-story p {
  font-size: 19px;
}

.detail-panel {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(145deg, rgba(244, 232, 251, 0.82), rgba(232, 240, 223, 0.7));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-panel dt {
  color: #9d5db2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-panel dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.included-panel {
  display: grid;
  gap: 12px;
  margin: 6px 0 4px;
  padding: 22px;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(157, 93, 178, 0.16);
  border-radius: 8px;
}

.included-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.included-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-panel li {
  position: relative;
  padding-left: 22px;
  color: #5f4d53;
  line-height: 1.45;
}

.included-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: #9d5db2;
  border-radius: 50%;
}

.included-panel p {
  margin: 2px 0 0;
  color: #876f77;
  font-size: 13px;
  font-style: italic;
}

.excursion-panel {
  margin-top: 26px;
  max-width: 680px;
}

.pricing-section {
  scroll-margin-top: 176px;
  margin-top: clamp(48px, 7vw, 86px);
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(135deg, rgba(244, 232, 251, 0.8), rgba(232, 240, 223, 0.72));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(157, 93, 178, 0.16);
  border-radius: 8px;
}

.price-card span {
  color: #9d5db2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.price-card p,
.pricing-note {
  margin: 0;
}

.pricing-note {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: 16px;
}

.villa-showcase {
  margin-top: clamp(48px, 7vw, 86px);
}

.retreat-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: clamp(46px, 7vw, 88px);
}

.retreat-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.retreat-gallery.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 8px;
  color: #7a5f68;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(51, 45, 44, 0.18);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #c78ade;
  box-shadow: 0 0 0 4px rgba(199, 138, 222, 0.16);
}

.newsletter-panel {
  align-content: start;
  background: rgba(248, 245, 236, 0.82);
}

blockquote {
  margin: 0;
  padding: 34px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.45;
}

cite {
  color: #8d6874;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.connect {
  justify-content: space-between;
  gap: 32px;
  background: #f8f5ec;
}

.connect div {
  max-width: 720px;
}

footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 52px 20px;
  background: #fffdf9;
  border-top: 1px solid var(--line);
  text-align: center;
}

footer img {
  width: 120px;
  mix-blend-mode: multiply;
}

footer p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer .social-link {
  margin-top: 8px;
  margin-bottom: 0;
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(33, 28, 29, 0.42);
  backdrop-filter: blur(10px);
}

.popup-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 48px);
  background: #fffdf9;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(33, 28, 29, 0.3);
}

.popup-card h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.popup-card form {
  display: grid;
  gap: 14px;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #f7eee9;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 900px) {
  .site-header,
  .intro-section,
  .retreat-card.spotlight,
  .founder-duo,
  .founder-card,
  .experience-band,
  .form-grid,
  .retreat-detail-grid,
  .about-teaser,
  .retreat-gallery,
  .retreat-gallery.expanded,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .founder-card.alternate .founder-photos {
    order: 0;
  }

  nav {
    justify-content: center;
  }

  .retreat-grid,
  .past-grid,
  .film-grid,
  .quote-grid,
  .recap-grid,
  .practice-gallery {
    grid-template-columns: 1fr;
  }

  .retreat-card.spotlight img {
    min-height: 360px;
  }

  .founder-photos {
    grid-template-columns: 1fr 1fr;
  }

  .detail-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: relative;
    min-height: 138px;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 10px 14px;
    font-size: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
    display: block;
  }

  .hero-copy {
    max-width: 330px;
  }

  .hero-actions {
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: 0;
  }

  .hero-actions .button {
    width: auto;
    min-height: 32px;
    padding: 0 10px;
    font-size: 8px;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
  }

  h2 {
    max-width: 330px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.05;
  }

  .hero p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.45;
  }

  .retreat-page-hero {
    min-height: 660px;
    padding: 146px 16px 46px;
  }

  .film-card.embedded iframe {
    height: 420px;
  }

  .past-card {
    min-height: 300px;
  }

  .duo-photos {
    grid-template-columns: 1fr;
  }

  .duo-photos img {
    min-height: 280px;
  }

  .founder-photos {
    grid-template-columns: 1fr;
  }

  .founder-photo.detail {
    transform: none;
  }
}
