:root {
  color-scheme: light;
  --ink: #1b1b28;
  --ink-soft: #353248;
  --purple: #6c4aa1;
  --purple-dark: #52327f;
  --teal: #9dd9de;
  --teal-dark: #6bbfc6;
  --lavender: #e7e2f1;
  --pearl: #f6f5f9;
  --accent: #f5c38c;
  --shadow: rgba(31, 24, 60, 0.12);
  --glow: rgba(108, 74, 161, 0.35);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #ffffff 0%, #f1eff9 45%, #e9eef6 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120C40 90 80 90 120 120s80 30 120 0' fill='none' stroke='%23d9d4e6' stroke-width='2' opacity='0.35'/%3E%3Cpath d='M0 180c40-30 80-30 120 0s80 30 120 0' fill='none' stroke='%23e1dced' stroke-width='2' opacity='0.25'/%3E%3C/svg%3E");
  min-height: 100vh;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 2;
}

.smoke {
  position: fixed;
  inset: -12% -12% -12% -12%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  filter: blur(14px);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-size: 100% 100%;
  animation: smoke-breathe 10s ease-in-out infinite;
}

.smoke::before,
.smoke::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  animation: smoke-drift 18s ease-in-out infinite;
  transform: translateY(var(--smoke-shift, 0px));
}

.smoke::before {
  background-image:
    radial-gradient(closest-side, rgba(157, 217, 222, 0.55), transparent 72%),
    radial-gradient(closest-side, rgba(108, 74, 161, 0.45), transparent 72%),
    radial-gradient(closest-side, rgba(245, 195, 140, 0.32), transparent 72%);
  background-position: 10% 10%, 70% 20%, 40% 70%;
}

.smoke::after {
  background-image:
    radial-gradient(closest-side, rgba(108, 74, 161, 0.38), transparent 72%),
    radial-gradient(closest-side, rgba(157, 217, 222, 0.44), transparent 72%),
    radial-gradient(closest-side, rgba(245, 195, 140, 0.32), transparent 72%);
  background-position: 20% 60%, 80% 75%, 55% 30%;
  animation-duration: 24s;
  transform: translateY(calc(var(--smoke-shift, 0px) * 0.6));
}

@keyframes smoke-drift {
  0% {
    transform: translateY(var(--smoke-shift, 0px)) translateX(0) scale(1);
  }
  50% {
    transform: translateY(calc(var(--smoke-shift, 0px) * 0.8)) translateX(12px) scale(1.03);
  }
  100% {
    transform: translateY(var(--smoke-shift, 0px)) translateX(0) scale(1);
  }
}

@keyframes smoke-breathe {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 20px 60px var(--glow);
  }
  50% {
    box-shadow: 0 28px 70px rgba(108, 74, 161, 0.45);
  }
}

.float {
  animation: float 8s ease-in-out infinite;
}

.parallax {
  transform: translateY(calc(var(--scroll-y, 0px) * 0.04));
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.hero {
  position: relative;
  padding: 110px 6vw 60px;
  overflow: hidden;
}

.hero-compact {
  padding-bottom: 60px;
}

.hero-content-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 217, 222, 0.7), transparent 70%);
  top: -180px;
  right: -140px;
  filter: blur(10px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -120px;
  width: 120%;
  height: 220px;
  background: linear-gradient(90deg, rgba(108, 74, 161, 0.16), rgba(157, 217, 222, 0.26));
  transform: skewY(-4deg);
  z-index: 0;
  opacity: 0.8;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.9) brightness(1.05);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45));
}

.nav {
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  top: 16px;
  left: 6vw;
  right: 6vw;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 32px rgba(66, 46, 120, 0.18);
  backdrop-filter: blur(8px);
}

.logo {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
  box-shadow: 0 12px 24px rgba(66, 46, 120, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.9rem;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(108, 74, 161, 0.12);
  color: var(--purple-dark);
}

.nav .cta {
  background: var(--purple);
  color: white;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(108, 74, 161, 0.3);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 36px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 74, 161, 0.12);
  color: var(--purple-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 14px;
}

.hero-tile {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 40px rgba(66, 46, 120, 0.2);
  border: 1px solid rgba(108, 74, 161, 0.12);
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tile--large {
  grid-row: span 2;
  animation: glow-pulse 10s ease-in-out infinite;
}

.media-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(66, 46, 120, 0.2);
  border: 1px solid rgba(108, 74, 161, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
}

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

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

h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.subhead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 16px 30px rgba(108, 74, 161, 0.25);
}

.button.primary:hover {
  transform: translateY(-2px);
}

.button.ghost {
  border-color: rgba(108, 74, 161, 0.3);
  color: var(--purple-dark);
}

.hero-highlights {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(108, 74, 161, 0.08);
}

.meta-title {
  display: block;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

.hero-panel {
  position: relative;
  padding: 8px;
}

.panel-card {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 60px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.08);
}

.panel-card h2 {
  margin-top: 0;
}

.panel-card ul {
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.panel-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(108, 74, 161, 0.18), rgba(157, 217, 222, 0.18));
  filter: blur(40px);
  z-index: -1;
}

.image-band {
  position: relative;
  margin: 0 0 20px;
  padding: 60px 6vw;
  overflow: hidden;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
}

.band-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 18px 40px rgba(66, 46, 120, 0.18);
}

.story {
  position: relative;
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3vw;
  width: 260px;
  pointer-events: none;
  background:
    radial-gradient(140px 360px at 35% 10%, rgba(157, 217, 222, 0.26), transparent 72%),
    radial-gradient(160px 420px at 45% 50%, rgba(108, 74, 161, 0.2), transparent 72%),
    radial-gradient(180px 440px at 25% 85%, rgba(245, 195, 140, 0.22), transparent 72%);
  opacity: 0.9;
  filter: blur(1px);
  z-index: 0;
}

.story::after {
  content: none;
}

.section {
  padding: 56px 6vw;
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  inset: 10% 6%;
  border-radius: 40px;
  background: linear-gradient(120deg, rgba(157, 217, 222, 0.1), rgba(108, 74, 161, 0.08));
  z-index: -1;
}

.approach {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(157, 217, 222, 0.18));
}

.flow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(108, 74, 161, 0.08));
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.flow-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.1);
  position: relative;
  overflow: hidden;
}

.flow-step {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  color: rgba(108, 74, 161, 0.12);
  line-height: 1;
  pointer-events: none;
}

.flow-step::after {
  content: none;
}

.outcomes {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(108, 74, 161, 0.08));
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.outcome-tile {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 16px 38px var(--shadow);
  position: relative;
  overflow: hidden;
}

.outcome-tile::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(108, 74, 161, 0.12);
}

.outcome-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.break {
  padding: 70px 6vw;
}

.break::before {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(108, 74, 161, 0.2), rgba(157, 217, 222, 0.2));
}

.break-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  border: 1px solid rgba(108, 74, 161, 0.1);
  box-shadow: 0 18px 44px rgba(66, 46, 120, 0.15);
}

.section-header {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-header.compact {
  margin-bottom: 24px;
}

.overview-header {
  padding: 18px 22px;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 18px 40px rgba(66, 46, 120, 0.16);
  max-width: none;
  width: 100%;
  position: relative;
}

.overview-header::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(108, 74, 161, 0.4), rgba(157, 217, 222, 0.2));
}

.section-header h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(157, 217, 222, 0.25);
  top: -40px;
  right: -40px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(66, 46, 120, 0.2);
}

.card h3 {
  margin-top: 0;
}

.card-subtitle {
  font-weight: 600;
  color: var(--purple);
  margin-top: 2px;
  font-size: 0.92rem;
}

.card-lede {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.section-subtitle {
  color: var(--ink-soft);
  margin-top: 8px;
}

.overview-controls {
  position: relative;
}

.overview-controls input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.overview-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 20px 46px rgba(66, 46, 120, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  cursor: pointer;
}

.overview-media {
  position: relative;
  align-self: start;
  aspect-ratio: 3 / 4;
  max-height: 260px;
}

.overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overview-active {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 74, 161, 0.9);
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.overview-body {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
  height: 100%;
}

.overview-title h3 {
  margin: 0;
}

.overview-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-metrics span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(108, 74, 161, 0.12);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.overview-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--purple-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.overview-cta::after {
  content: "+";
  font-weight: 700;
}

.overview-stage {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 22px 50px rgba(66, 46, 120, 0.2);
  transform-origin: top;
}

.stage-panel {
  display: none;
  gap: 16px;
}

.stage-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.stage-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 74, 161, 0.12);
  color: var(--purple-dark);
  font-weight: 600;
  font-size: 0.8rem;
  position: relative;
}

.stage-pill.outline {
  background: transparent;
  border: 1px solid rgba(108, 74, 161, 0.35);
  color: var(--purple-dark);
}

.stage-hint {
  flex-basis: 100%;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.75;
  max-height: 40px;
  transition: opacity 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
}

.overview-stage.overview-interacted .stage-hint {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
}

.stage-panel h3 {
  margin: 8px 0 0;
}

.stage-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stage-columns h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--purple-dark);
}

.stage-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stage-columns p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@keyframes stage-pop {
  0% {
    transform: translateY(4px);
    box-shadow: 0 16px 36px rgba(66, 46, 120, 0.14);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 22px 50px rgba(66, 46, 120, 0.2);
  }
}

.overview-stage.stage-flash {
  animation: stage-pop 0.28s ease;
  border-color: rgba(108, 74, 161, 0.28);
}

@keyframes pill-ping {
  0% {
    transform: translateY(-50%) scale(0.6);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(108, 74, 161, 0.4);
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0;
    box-shadow: 0 0 0 12px rgba(108, 74, 161, 0);
  }
}

.overview-stage.stage-flash .stage-pill:first-child::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pill-ping 0.55s ease;
}

@keyframes card-pulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.overview-card.overview-pulse {
  animation: card-pulse 0.28s ease;
}
.detail-note {
  margin: 10px 0 0;
  font-style: italic;
  color: var(--ink-soft);
}

.overview-stage {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 22px 50px rgba(66, 46, 120, 0.2);
}

.stage-panel {
  display: none;
  gap: 16px;
}

.stage-panel h3 {
  margin: 8px 0 0;
}

.stage-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stage-columns h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--purple-dark);
}

.stage-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stage-columns p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(66, 46, 120, 0.25);
}

.overview-card:hover img {
  transform: scale(1.01);
}

#ov-approach:checked ~ .overview-grid label[for="ov-approach"],
#ov-workshops:checked ~ .overview-grid label[for="ov-workshops"],
#ov-engagement:checked ~ .overview-grid label[for="ov-engagement"],
#ov-wellness:checked ~ .overview-grid label[for="ov-wellness"] {
  box-shadow: 0 26px 54px rgba(66, 46, 120, 0.28);
  border-color: rgba(108, 74, 161, 0.35);
}

#ov-approach:checked ~ .overview-grid label[for="ov-approach"] .overview-active,
#ov-workshops:checked ~ .overview-grid label[for="ov-workshops"] .overview-active,
#ov-engagement:checked ~ .overview-grid label[for="ov-engagement"] .overview-active,
#ov-wellness:checked ~ .overview-grid label[for="ov-wellness"] .overview-active {
  opacity: 1;
  transform: translateY(0);
}

#ov-approach:checked ~ .overview-stage [data-panel="ov-approach"],
#ov-workshops:checked ~ .overview-stage [data-panel="ov-workshops"],
#ov-engagement:checked ~ .overview-stage [data-panel="ov-engagement"],
#ov-wellness:checked ~ .overview-stage [data-panel="ov-wellness"] {
  display: grid;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.image-card {
  background: white;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(108, 74, 161, 0.1);
  box-shadow: 0 18px 44px rgba(66, 46, 120, 0.18);
  display: grid;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card-body {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(66, 46, 120, 0.25);
}

.image-card:hover img {
  transform: scale(1.04);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.engagement-visual {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 22px 50px rgba(66, 46, 120, 0.2);
  min-height: 260px;
}

.engagement-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engagement-visual .media-card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: 220px;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.08);
}

.pricing-card.emphasis {
  background: linear-gradient(135deg, rgba(108, 74, 161, 0.12), rgba(157, 217, 222, 0.2));
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(108, 74, 161, 0.1);
}

.price-row:last-child {
  border-bottom: none;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.resource-card {
  background: white;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: 0 18px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.12);
  display: grid;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(66, 46, 120, 0.25);
}

.resource-card:hover img {
  transform: scale(1.04);
}

.resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 24px;
  padding: 22px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(108, 74, 161, 0.12);
  box-shadow: 0 22px 50px rgba(66, 46, 120, 0.2);
  align-items: stretch;
}

.resource-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.resource-content {
  display: grid;
  gap: 12px;
  align-content: center;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.enhancement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.media-stack img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 24px 50px rgba(66, 46, 120, 0.2);
  border: 1px solid rgba(108, 74, 161, 0.12);
}

.media-stack .media-card {
  position: relative;
  max-width: none;
}

.media-stack .media-card {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: none;
}

.bundle-table {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.08);
}

.bundle-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 8px;
  padding: 14px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(108, 74, 161, 0.08);
  font-size: 0.95rem;
}

.bundle-row.header,
.bundle-row.footer {
  background: rgba(108, 74, 161, 0.1);
  font-weight: 700;
}

.bundle-row.footer {
  border-bottom: none;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.enhancement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 0;
}

.enhancement-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.12);
}

.enhancement-note {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--purple-dark);
  font-weight: 600;
}

.resources {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(245, 195, 140, 0.1));
}

.overview {
  position: relative;
  overflow: hidden;
}

.overview::before {
  content: "";
  position: absolute;
  inset: 6% 6%;
  border-radius: 32px;
  background: url("assets/photos/wellness-candle.jpg") center/cover no-repeat;
  opacity: 0.16;
  z-index: -1;
}

.overview::after {
  content: "";
  position: absolute;
  inset: 6% 6%;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 255, 0.6));
  z-index: -1;
}

.engagement {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(157, 217, 222, 0.08));
}

.enhancements {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(157, 217, 222, 0.14));
}

.mindfulness {
  background: linear-gradient(180deg, rgba(157, 217, 222, 0.12), rgba(255, 255, 255, 0.6));
}

.mindfulness-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.mindfulness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.mindfulness-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.1);
}

.mindfulness-card ul {
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.bio {
  padding-top: 40px;
}

.bio-card {
  background: white;
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
  box-shadow: 0 22px 44px rgba(45, 26, 78, 0.12);
  border: 1px solid rgba(108, 74, 161, 0.12);
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.bio-image {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(66, 46, 120, 0.2);
}

.bio-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bio-content p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.bio-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bio-pill-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(108, 74, 161, 0.12);
  color: var(--purple-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.bundle-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 18px 40px var(--shadow);
  border: 1px solid rgba(108, 74, 161, 0.12);
  position: relative;
  overflow: hidden;
}

.bundle-card::after {
  content: "";
  position: absolute;
  inset: -40% 0 auto 60%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(157, 217, 222, 0.25);
}

.bundle-card ul {
  padding-left: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.bundle-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bundle-pill {
  background: rgba(108, 74, 161, 0.12);
  color: var(--purple-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}

.bundle-card.featured {
  border: 1px solid rgba(108, 74, 161, 0.35);
  box-shadow: 0 24px 48px rgba(66, 46, 120, 0.2);
}

.bundle-card.featured .bundle-pill {
  background: rgba(108, 74, 161, 0.85);
  color: white;
}

.note {
  margin-top: 16px;
  font-style: italic;
  color: var(--ink-soft);
}

.expandable {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(108, 74, 161, 0.18);
}

.expandable summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--purple-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.expandable summary::-webkit-details-marker {
  display: none;
}

.expandable summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
}

.expandable[open] summary::after {
  content: "-";
}

.expandable p,
.expandable ul {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
  padding-left: 0;
}

.expandable ul {
  padding-left: 18px;
}

.contact {
  padding-bottom: 80px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(108, 74, 161, 0.97), rgba(92, 68, 150, 0.86));
  color: white;
  border-radius: calc(var(--radius) + 8px);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  box-shadow: 0 24px 50px rgba(45, 26, 78, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 42%, rgba(255, 255, 255, 0.1));
  opacity: 0.55;
  mix-blend-mode: screen;
  transform: translateX(-20%);
  animation: cta-sheen 10s ease-in-out infinite;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-content {
  max-width: 560px;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}

.contact-actions .button.primary {
  background: white;
  color: var(--purple-dark);
  position: relative;
  padding-right: 36px;
  box-shadow: 0 18px 36px rgba(30, 18, 58, 0.28);
}

.contact-actions .button.primary::after {
  content: "\2192";
  position: absolute;
  right: 18px;
  transition: transform 0.2s ease;
}

.contact-actions .button.primary:hover::after {
  transform: translateX(4px);
}

.contact-hint {
  font-size: 0.85rem;
  opacity: 0.8;
}

@keyframes cta-sheen {
  0%,
  100% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(20%);
  }
}

.footer {
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  text-align: center;
}

.footer-logo {
  display: block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(66, 46, 120, 0.12);
  margin: 0 auto;
  align-self: center;
}


.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .smoke,
  .smoke::before,
  .smoke::after {
    animation: none;
  }

  .parallax,
  .float {
    animation: none;
    transform: none;
    transition: none;
  }

  .contact-card::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visuals {
    grid-template-columns: 1fr;
    grid-auto-rows: 160px;
  }

  .hero-tile--large {
    grid-row: auto;
  }

  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-media {
    min-height: 180px;
    max-height: none;
    aspect-ratio: auto;
  }

  .overview-stage {
    padding: 18px;
  }

  .resource-panel {
    grid-template-columns: 1fr;
  }

  .image-band {
    padding: 40px 6vw;
  }

  .band-copy {
    padding: 20px 22px;
  }

  .enhancement-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    align-items: flex-start;
    text-align: left;
  }

  .bundle-row {
    grid-template-columns: 1fr;
  }

  .bundle-row span:nth-child(n + 2) {
    justify-self: start;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 90px 6vw 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .overview-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .overview-stage {
    padding: 16px;
  }

  .stage-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .stage-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .overview-grid {
    gap: 16px;
  }

  .overview-card {
    border-radius: 20px;
  }

  .overview-media {
    min-height: 160px;
  }

  .overview-body {
    padding: 16px;
  }

  .overview-cta {
    font-size: 0.95rem;
  }

  .overview-stage {
    padding: 14px;
  }

  .stage-head {
    gap: 8px;
  }

  .stage-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .stage-columns {
    gap: 14px;
  }
}
