:root {
  --ink: #24152d;
  --ink-soft: #4d3a56;
  --plum: #5c245f;
  --plum-deep: #35123f;
  --berry: #a53f72;
  --coral: #ef775c;
  --sun: #f4d06f;
  --mint: #97d6c7;
  --cream: #f7f0e7;
  --paper: #fffdf9;
  --line: rgba(36, 21, 45, 0.16);
  --shadow: 0 24px 70px rgba(36, 21, 45, 0.13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max: 1240px;
  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--sun);
  color: var(--ink);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 36px), 1380px);
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: white;
  background: rgba(36, 21, 45, 0.68);
  box-shadow: 0 12px 32px rgba(18, 8, 23, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
}

.header-messenger {
  color: white;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.header-messenger:hover,
.header-messenger:focus-visible {
  opacity: 1;
}

.header-cta {
  padding: 9px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--sun);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 168px max(28px, calc((100vw - var(--max)) / 2)) 44px;
  color: white;
  background:
    radial-gradient(circle at 82% 26%, rgba(244, 208, 111, 0.25), transparent 22%),
    radial-gradient(circle at 15% 75%, rgba(151, 214, 199, 0.2), transparent 28%),
    linear-gradient(128deg, #25132e 3%, #562056 50%, #8d375f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(710px, 55vw);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sun);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1,
h2 {
  font-weight: 300;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.02;
}

h1 > span {
  display: block;
  margin-bottom: 22px;
  color: var(--sun);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.16em;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.5;
}

.hero-yoga-highlight,
.hero-drawing-highlight {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 610px;
  margin-bottom: 12px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(244, 208, 111, 0.36);
  border-radius: 17px;
  color: white;
  background: rgba(32, 14, 39, 0.26);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-drawing-highlight {
  margin-bottom: 30px;
}

.hero-yoga-highlight:hover,
.hero-yoga-highlight:focus-visible,
.hero-drawing-highlight:hover,
.hero-drawing-highlight:focus-visible {
  border-color: var(--sun);
  background: rgba(32, 14, 39, 0.42);
  transform: translateY(-2px);
}

.hero-yoga-symbol,
.hero-drawing-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font-family: var(--font-display);
  font-size: 26px;
}

.hero-yoga-highlight strong,
.hero-yoga-highlight small,
.hero-drawing-highlight strong,
.hero-drawing-highlight small {
  display: block;
}

.hero-yoga-highlight strong,
.hero-drawing-highlight strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.hero-yoga-highlight small,
.hero-drawing-highlight small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.button-sun {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 16px 36px rgba(244, 208, 111, 0.2);
}

.button-sun:hover {
  box-shadow: 0 20px 44px rgba(244, 208, 111, 0.3);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.text-link {
  color: white;
  font-size: 15px;
  text-underline-offset: 5px;
}

.text-link span {
  margin-left: 5px;
}

.hero-media-pair {
  position: absolute;
  z-index: 2;
  top: 118px;
  right: max(28px, calc((100vw - var(--max)) / 2));
  width: min(40vw, 510px);
  height: 575px;
}

.hero-yoga-card,
.hero-art-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(18, 8, 23, 0.28);
  background: var(--plum-deep);
}

.hero-yoga-card {
  inset: 0 auto 0 0;
  width: 72%;
}

.hero-art-card {
  z-index: 3;
  right: 0;
  bottom: 22px;
  width: 47%;
  height: 455px;
  border-width: 6px;
  border-radius: 28px;
}

.hero-yoga-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(21, 8, 28, 0.88));
}

.hero-yoga-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% 50%;
}

.hero-art-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  background: linear-gradient(to bottom, rgba(36, 21, 45, 0.08), rgba(21, 8, 28, 0.92));
  pointer-events: none;
}

.art-clean-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-date {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  font-size: 11px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-date span {
  font-weight: 850;
  text-transform: uppercase;
}

.hero-date strong {
  padding-left: 10px;
  border-left: 1px solid rgba(36, 21, 45, 0.22);
  color: var(--plum);
}

.hero-yoga-card figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: white;
}

.hero-yoga-card figcaption span,
.hero-yoga-card figcaption small,
.hero-yoga-card figcaption strong {
  display: block;
}

.hero-yoga-card figcaption span {
  margin-bottom: 8px;
  color: var(--sun);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-yoga-card figcaption strong {
  margin-bottom: 7px;
  font-family: var(--font-display);
  max-width: 210px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-yoga-card figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.hero-art-card figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: white;
}

.hero-art-card figcaption span,
.hero-art-card figcaption strong,
.hero-art-card figcaption small {
  display: block;
}

.hero-art-card figcaption span {
  margin-bottom: 5px;
  color: var(--sun);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art-card figcaption strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.hero-art-card figcaption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.orbit-one {
  top: 72px;
  right: 3vw;
  width: 500px;
  height: 500px;
}

.orbit-two {
  top: 128px;
  right: 7vw;
  width: 390px;
  height: 390px;
}

.section {
  padding: 112px max(28px, calc((100vw - var(--max)) / 2));
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 58px;
  color: var(--plum);
}

.section-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-kicker span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.section-kicker p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 52px;
  background: var(--cream);
}

.intro .section-kicker {
  display: block;
  margin: 0;
}

.intro .section-kicker span {
  margin-bottom: 12px;
}

.intro .section-kicker::after {
  display: none;
}

.intro-content h2,
.section-heading h2,
.drawing-copy h2,
.date-meaning h2,
.registration h2,
.safety h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 68px;
}

.large-copy {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 300;
  line-height: 1.4;
}

.intro-columns > div {
  padding-top: 8px;
  color: var(--ink-soft);
}

.where-columns {
  align-items: center;
}

.where-columns .large-copy {
  max-width: 860px;
  margin-bottom: 0;
}

.where-action {
  display: flex;
  align-items: center;
  align-self: center;
}

.where-action .button {
  min-width: 230px;
  color: white;
  background: linear-gradient(128deg, #25132e 3%, #562056 50%, #8d375f 100%);
  box-shadow: 0 16px 36px rgba(92, 36, 95, 0.24);
}

.where-action .button:hover,
.where-action .button:focus-visible {
  background: linear-gradient(128deg, #32183e 3%, #6a2868 50%, #a44370 100%);
  box-shadow: 0 20px 44px rgba(92, 36, 95, 0.34);
}

.gift-copy .button {
  color: white;
  background: linear-gradient(128deg, #25132e 3%, #562056 50%, #8d375f 100%);
  box-shadow: 0 16px 36px rgba(92, 36, 95, 0.24);
}

.gift-copy .button:hover,
.gift-copy .button:focus-visible {
  background: linear-gradient(128deg, #32183e 3%, #6a2868 50%, #a44370 100%);
  box-shadow: 0 20px 44px rgba(92, 36, 95, 0.34);
}

.intro-columns strong {
  color: var(--plum);
}

.sacred-gift {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 76px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 208, 111, 0.2), transparent 25%),
    linear-gradient(135deg, #fffaf4 0%, #f4e7f2 52%, #eadbed 100%);
}

.gift-copy {
  position: relative;
  z-index: 2;
}

.gift-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.06;
}

.gift-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 300;
  line-height: 1.48;
}

.gift-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.gift-features span {
  padding: 8px 13px;
  border: 1px solid rgba(92, 36, 95, 0.22);
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gift-image-slot {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 68% 24%, rgba(244, 208, 111, 0.62), transparent 18%),
    radial-gradient(circle at 26% 72%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(145deg, #8f5c8f, #cf91ac 52%, #f5d9ca);
  box-shadow: 0 30px 80px rgba(92, 36, 95, 0.2);
}

.gift-image-slot::before,
.gift-image-slot::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.gift-image-slot::before {
  top: -130px;
  right: -80px;
  width: 420px;
  height: 420px;
}

.gift-image-slot::after {
  bottom: -170px;
  left: -110px;
  width: 470px;
  height: 470px;
}

.gift-orbit {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(244, 208, 111, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(244, 208, 111, 0.2);
  transform: translateX(-50%);
}

.gift-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 250, 243, 0.7);
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 300;
  content: "∞";
  transform: translate(-50%, -56%);
}

.gift-envelope-placeholder {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  align-content: center;
  width: min(74%, 410px);
  min-height: 255px;
  padding: 36px;
  border: 1px solid rgba(244, 208, 111, 0.74);
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, rgba(53, 18, 63, 0.94), rgba(112, 49, 94, 0.92));
  box-shadow: 0 24px 60px rgba(36, 21, 45, 0.28);
  text-align: center;
  transform: translate(-50%, -44%) rotate(-2deg);
}

.gift-envelope-placeholder span,
.gift-envelope-placeholder strong,
.gift-envelope-placeholder small {
  display: block;
}

.gift-envelope-placeholder span {
  margin-bottom: 18px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.gift-envelope-placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 400;
  line-height: 1.12;
}

.gift-envelope-placeholder small {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gift-image-slot figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.intention {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--plum-deep);
  text-align: center;
}

.intention .eyebrow {
  position: relative;
  z-index: 2;
}

.intention blockquote {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 46px);
  font-weight: 300;
  line-height: 1.28;
}

.intention-path {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 56px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.intention-path i {
  width: 80px;
  height: 1px;
  background: rgba(151, 214, 199, 0.38);
}

.intention-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(244, 208, 111, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(165, 63, 114, 0.34) inset;
  transform: translate(-50%, -50%);
}

.kundalini {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 82px;
  align-items: stretch;
  background: var(--cream);
}

.kundalini-visual {
  position: relative;
  min-height: 1040px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.kundalini-visual::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(36, 21, 45, 0.72));
}

.kundalini-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.kundalini-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: white;
  background: rgba(36, 21, 45, 0.38);
  backdrop-filter: blur(14px);
}

.kundalini-caption span,
.kundalini-caption strong {
  display: block;
}

.kundalini-caption span {
  color: var(--sun);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kundalini-caption strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.kundalini-copy {
  align-self: center;
}

.kundalini-copy h2 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.kundalini-lead {
  max-width: 720px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  line-height: 1.48;
}

.kundalini-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.kundalini-values article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 26px 24px;
  background: var(--paper);
}

.kundalini-values article > span {
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 24px;
}

.kundalini-values h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.kundalini-values p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.kundalini-copy blockquote {
  margin: 0;
  padding: 24px 28px;
  border-left: 4px solid var(--sun);
  border-radius: 0 16px 16px 0;
  color: white;
  background: var(--plum);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p,
.formats-heading > div > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.program {
  background: var(--paper);
}

.program-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.program-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  min-height: 145px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.program-list li:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: var(--cream);
}

.program-list .featured-step {
  grid-template-columns: 90px 1fr;
  margin: 16px 0;
  padding: 34px 40px 34px 28px;
  border: 0;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(244, 208, 111, 0.16), transparent 28%),
    var(--plum);
  box-shadow: 0 18px 50px rgba(92, 36, 95, 0.18);
}

.program-list .featured-step:hover {
  padding: 34px 40px 34px 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(244, 208, 111, 0.22), transparent 30%),
    var(--plum);
}

.featured-step .step-number {
  color: var(--sun);
}

.program-list .featured-step p {
  color: #fff;
}

.step-label {
  display: block;
  margin-bottom: 6px;
  color: var(--sun);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-number {
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 28px;
}

.program-list h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.program-list p {
  max-width: 800px;
  margin: 0;
  color: var(--ink-soft);
}

.drawing-practice {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 82px;
  align-items: stretch;
  background: var(--cream);
}

.drawing-copy {
  align-self: center;
}

.drawing-copy h2 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.drawing-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
}

.drawing-lead {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  line-height: 1.48;
}

.drawing-video {
  max-width: 760px;
  margin-top: 42px;
}

.drawing-visual {
  position: relative;
  min-height: 1040px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #947f70;
  box-shadow: var(--shadow);
}

.drawing-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 48% 0 0;
  background: linear-gradient(to bottom, rgba(36, 21, 45, 0.04), rgba(36, 21, 45, 0.78));
  pointer-events: none;
}

.drawing-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: white;
  background: rgba(36, 21, 45, 0.38);
  backdrop-filter: blur(14px);
}

.drawing-visual figcaption span,
.drawing-visual figcaption strong {
  display: block;
}

.drawing-visual figcaption span {
  color: var(--sun);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.drawing-visual figcaption strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.practice-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-note span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--plum);
  border-radius: 50%;
}

.video-frame {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.video-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16px 28px 24px -18px;
  border-radius: inherit;
  background: var(--mint);
  transform: rotate(-3deg);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
  background: var(--ink);
}

.date-meaning {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--plum-deep));
}

.date-meaning-number {
  position: absolute;
  top: -95px;
  left: -35px;
  font-family: var(--font-display);
  font-size: min(28vw, 410px);
  line-height: 1;
  opacity: 0.08;
}

.date-meaning-copy,
.freedom-words {
  position: relative;
  z-index: 2;
}

.date-meaning h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4.3vw, 58px);
}

.date-meaning-copy > p:last-child {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.freedom-words {
  display: flex;
  flex-direction: column;
  align-self: end;
  padding-top: 100px;
}

.freedom-words span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.freedom-words strong {
  margin-top: 32px;
  color: var(--sun);
  font-size: 16px;
  line-height: 1.6;
}

.formats {
  background: var(--paper);
}

.formats-heading {
  align-items: center;
}

.formats-heading h2 {
  max-width: 800px;
  margin-bottom: 24px;
}

.format-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.format-option {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.format-option:last-child {
  color: white;
  border-color: transparent;
  background: linear-gradient(128deg, #25132e 3%, #562056 50%, #8d375f 100%);
}

.format-option-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--plum);
  background: var(--paper);
  font-size: 25px;
  font-weight: 700;
}

.format-option h3 {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 600;
}

.format-option p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.format-option:last-child p {
  color: rgba(255, 255, 255, 0.76);
}

.price-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.price-grid-single {
  grid-template-columns: 1.18fr 0.82fr;
}

.event-card {
  min-height: 610px;
}

.event-facts {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.event-facts h3 {
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.event-facts dl {
  margin: 0;
}

.event-facts dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.event-facts dt {
  color: var(--ink-soft);
}

.event-facts dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.limited-note {
  margin: 28px 0 0;
  padding: 18px;
  border-radius: 14px;
  color: var(--plum);
  background: rgba(244, 208, 111, 0.34);
  font-weight: 750;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 550px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.price-card-full {
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 208, 111, 0.15), transparent 28%),
    var(--plum);
  box-shadow: var(--shadow);
}

.price-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 58px;
}

.price-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  white-space: nowrap;
}

.price small {
  font-size: 19px;
}

.price-card h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.price-card > p {
  max-width: 590px;
  color: var(--ink-soft);
}

.price-card-full > p {
  color: rgba(255, 255, 255, 0.75);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 38px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
}

.price-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--berry);
}

.price-card-full li::before {
  color: var(--sun);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-card-full .button-dark {
  color: var(--ink);
  background: var(--sun);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 36px;
  padding: 9px 15px;
  border-radius: 0 0 12px 12px;
  color: var(--ink);
  background: var(--sun);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--paper);
}

.audience-card {
  min-height: 650px;
  padding: 74px;
}

.audience-card h2 {
  margin-bottom: 36px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.audience-for {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  color: white;
  background: var(--plum-deep);
}

.audience-not {
  border: 1px solid var(--line);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--cream);
}

.check-list,
.plain-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 0 0 20px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.plain-list li {
  border-color: var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 800;
}

.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--berry);
}

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

.host-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.together-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 208, 111, 0.14), transparent 30%),
    var(--plum-deep);
}

.together-copy {
  align-self: center;
  padding: 52px;
}

.together-copy h3 {
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.together-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.together-media {
  display: block;
}

.together-media figure {
  position: relative;
  aspect-ratio: 1280 / 959;
  margin: 0;
  overflow: hidden;
}

.together-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.together-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.host-card {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.host-card-person {
  display: grid;
  grid-template-rows: 55% 45%;
  background: var(--paper);
}

.host-card-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.host-card-person .host-copy {
  padding: 34px 42px;
}

.host-role {
  display: block;
  margin-bottom: 16px;
  color: var(--sun);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.host-card-person .host-role {
  color: var(--plum);
}

.host-card h3 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.host-card p {
  margin-bottom: 12px;
}

.prepare {
  background: var(--paper);
}

.prepare .section-heading {
  margin-bottom: 48px;
}

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.prepare-grid article {
  position: relative;
  padding: 40px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.prepare-grid article:first-child {
  background: #eef7f3;
}

.prepare-grid article:last-child {
  background: #fff4dc;
}

.prepare-grid h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.prepare-grid p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
}

.prepare-icon {
  position: absolute;
  top: 32px;
  right: 34px;
  color: var(--plum);
  font-size: 30px;
}

.safety {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 78px;
  padding-bottom: 78px;
  color: white;
  background: var(--ink);
}

.safety-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 46px;
}

.safety h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.7vw, 48px);
}

.safety p:last-child {
  max-width: 940px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.registration {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 560px);
  gap: 70px;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 95%, rgba(151, 214, 199, 0.26), transparent 24%),
    linear-gradient(135deg, var(--plum-deep), var(--berry));
}

.registration::after {
  content: "08";
  position: absolute;
  right: -20px;
  bottom: -180px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-size: 430px;
  line-height: 1;
}

.registration-copy,
.registration-form {
  position: relative;
  z-index: 2;
}

.registration h2 {
  margin-bottom: 34px;
  font-size: clamp(38px, 4.5vw, 60px);
}

.registration-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.registration-copy .keyword-note {
  margin-top: 26px;
  padding: 17px 20px;
  border: 1px solid rgba(244, 208, 111, 0.32);
  border-radius: 15px;
  color: white;
  background: rgba(36, 21, 45, 0.24);
}

.keyword-note strong {
  color: var(--sun);
  letter-spacing: 0.08em;
}

.registration-form {
  padding: 38px;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.registration-form-embed {
  padding: 14px;
  overflow: hidden;
}

.registration-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

.registration-form h3 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.registration-form > p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.registration-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.registration-form label > span:first-child {
  font-size: 12px;
  font-weight: 750;
}

.registration-form input[type="text"],
.registration-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: white;
}

.registration-form .consent {
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--plum);
}

.registration-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0 !important;
  color: var(--plum) !important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding: 65px 0 25px;
  color: white;
  background: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

.footer-container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 20px;
}

.brand-logo-footer {
  width: 210px;
  height: auto;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-align: left;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-decoration: none;
}

.footer-grid > div > a:hover,
.footer-grid > div > a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .hero {
    min-height: 800px;
  }

  .hero-copy {
    width: min(650px, 60vw);
  }

  .hero-media-pair {
    top: 160px;
    right: 28px;
    width: 39vw;
    height: 520px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
  }

  .section-heading,
  .kundalini,
  .drawing-practice,
  .date-meaning,
  .sacred-gift,
  .registration {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 26px;
  }

  .drawing-practice {
    gap: 50px;
  }

  .sacred-gift {
    gap: 48px;
  }

  .gift-image-slot {
    min-height: 500px;
  }

  .kundalini {
    gap: 54px;
  }

  .kundalini-visual {
    min-height: 620px;
  }

  .drawing-visual {
    min-height: 620px;
  }

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

  .date-meaning {
    gap: 16px;
  }

  .freedom-words {
    padding-top: 18px;
  }

  .audience-card {
    padding: 52px;
  }

  .host-card-natalia {
    padding: 0;
  }

  .host-card-person .host-copy {
    padding: 30px 34px;
  }

  .registration {
    gap: 44px;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    margin-top: 10px;
    padding-left: 14px;
  }

  .desktop-nav,
  .brand-name {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .header-messenger {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 136px 20px 104px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(44px, 12vw, 60px);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .hero-yoga-highlight,
  .hero-drawing-highlight {
    grid-template-columns: 42px 1fr;
    padding-right: 12px;
  }

  .hero-yoga-highlight {
    margin-bottom: 10px;
  }

  .hero-drawing-highlight {
    margin-bottom: 26px;
  }

  .hero-yoga-symbol,
  .hero-drawing-symbol {
    width: 42px;
    height: 42px;
  }

  .hero-media-pair {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    gap: 18px;
    width: 100%;
    height: auto;
    margin-top: 38px;
  }

  .hero-yoga-card,
  .hero-art-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-yoga-card {
    height: min(124vw, 500px);
    border-radius: 24px;
  }

  .hero-art-card {
    height: min(124vw, 500px);
    border-radius: 22px;
  }

  .hero-yoga-card figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .hero-yoga-card figcaption strong {
    max-width: none;
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-art-card figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .hero-art-card figcaption strong {
    font-size: clamp(30px, 10vw, 38px);
  }

  .orbit-one {
    top: 240px;
    right: -190px;
  }

  .orbit-two {
    top: 285px;
    right: -145px;
  }

  .section {
    padding: 76px 20px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro .section-kicker {
    display: flex;
  }

  .intro .section-kicker span {
    margin: 0;
  }

  .intro .section-kicker::after {
    display: block;
  }

  .intro-content h2,
  .section-heading h2,
  .kundalini-copy h2,
  .drawing-copy h2,
  .date-meaning h2,
  .registration h2,
  .safety h2 {
    margin-bottom: 28px;
    font-size: clamp(32px, 9vw, 44px);
  }

  .intro-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sacred-gift {
    gap: 36px;
  }

  .gift-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .gift-lead {
    font-size: 21px;
  }

  .gift-image-slot {
    min-height: 430px;
    border-radius: 24px;
  }

  .gift-envelope-placeholder {
    width: min(82%, 380px);
    min-height: 220px;
    padding: 28px 22px;
  }

  .large-copy {
    font-size: 24px;
  }

  .section-kicker {
    margin-bottom: 40px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .intention blockquote {
    font-size: 32px;
  }

  .intention-path {
    gap: 9px;
    font-size: 9px;
  }

  .intention-path i {
    width: 22px;
  }

  .kundalini {
    gap: 38px;
  }

  .kundalini-visual {
    min-height: 430px;
  }

  .kundalini-values {
    grid-template-columns: 1fr;
  }

  .kundalini-values article {
    padding: 22px 20px;
  }

  .kundalini-copy blockquote {
    padding: 22px 22px;
    font-size: 19px;
  }

  .program-list li {
    grid-template-columns: 58px 1fr;
    min-height: 128px;
  }

  .program-list h3 {
    font-size: 21px;
  }

  .step-number {
    font-size: 24px;
  }

  .program-list .featured-step,
  .program-list .featured-step:hover {
    grid-template-columns: 46px 1fr;
    margin: 12px 0;
    padding: 28px 20px 28px 16px;
    border-radius: 20px;
  }

  .drawing-practice {
    gap: 44px;
  }

  .drawing-visual {
    min-height: 520px;
  }

  .video-frame {
    padding: 8px;
    border-radius: 22px;
    transform: none;
  }

  .video-frame::before {
    inset: -10px 10px 14px -8px;
  }

  .practice-note {
    align-items: flex-start;
    gap: 14px;
    line-height: 1.4;
  }

  .practice-note span {
    flex: 0 0 38px;
    width: 38px;
    min-width: 38px;
    height: 38px;
    aspect-ratio: 1;
  }

  .date-meaning {
    gap: 24px;
  }

  .freedom-words span {
    font-size: 21px;
  }

  .formats-heading {
    align-items: stretch;
  }

  .format-options {
    grid-template-columns: 1fr;
  }

  .format-option {
    padding: 22px 20px;
  }

  .price-grid,
  .audience,
  .host-grid,
  .prepare-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
    padding: 66px 26px 28px;
    border-radius: 24px;
  }

  .price-top {
    align-items: flex-end;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .price {
    font-size: 30px;
  }

  .price-card .button {
    margin-top: 12px;
  }

  .audience {
    padding: 0 20px 76px;
  }

  .audience-card {
    min-height: 0;
    padding: 46px 26px;
  }

  .audience-card h2 {
    font-size: 42px;
  }

  .audience-for {
    border-radius: 24px 24px 0 0;
  }

  .audience-not {
    border-radius: 0 0 24px 24px;
  }

  .host-card {
    min-height: 0;
    border-radius: 24px;
  }

  .together-block {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .together-copy {
    padding: 42px 28px 20px;
  }

  .together-media {
    min-height: 0;
  }

  .host-card-person {
    display: block;
  }

  .host-card-person img {
    height: 340px;
  }

  .host-card-person .host-copy {
    padding: 32px 28px 38px;
  }

  .prepare-grid article {
    padding: 34px 28px;
  }

  .safety {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .safety-mark {
    width: 60px;
    height: 60px;
    font-size: 34px;
  }

  .registration-form.registration-form-embed {
    padding: 10px;
    border-radius: 20px;
  }

  .registration-form-embed iframe {
    border-radius: 14px;
  }
}

@media (max-width: 560px) {
  .footer-container {
    width: calc(100% - 24px);
  }

  .brand-logo-footer {
    width: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
