:root {
  color-scheme: dark;
  --bg: #080706;
  --bg-soft: #100d0c;
  --graphite: #181716;
  --chocolate: #211512;
  --burgundy: #261015;
  --gold: #c9a76a;
  --gold-bright: #edd39a;
  --champagne: #ead8b4;
  --bronze: #8e6840;
  --text: #f4ead9;
  --muted: #c8bba7;
  --subtle: #928673;
  --line: rgba(255, 255, 255, 0.09);
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.075);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --max: 1180px;
  --sticky-cta-height: 56px;
  --sticky-cta-gap: 0px;
  --sticky-cta-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(122, 76, 45, 0.32), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(86, 20, 32, 0.34), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #100b0b 45%, #170d10 100%);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(237, 211, 154, 0.88);
  outline-offset: 4px;
}

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

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

button,
input,
textarea,
select {
  font: inherit;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
}

h2 {
  max-width: 840px;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
}

h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

h4 {
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  gap: 1.25rem;
  align-items: center;
  width: min(calc(100% - 32px), 1320px);
  margin: 14px auto 0;
  padding: 0.82rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 7, 6, 0.66);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(201, 167, 106, 0.22);
  background: rgba(8, 7, 6, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand strong,
.footer-brand {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.brand span {
  overflow: hidden;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 600;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: center;
}

.main-nav a,
.site-footer nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 167, 106, 0.34);
  border-radius: var(--radius);
  padding: 0;
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  transform: translate(-50%, -50%);
}

.menu-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header.nav-open .menu-toggle::before {
  box-shadow: 0 0 0 currentColor, 0 0 0 currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.nav-open .menu-toggle::after {
  opacity: 1;
}

.mobile-sticky-cta {
  position: fixed;
  top: auto;
  right: 0;
  bottom: calc(-1 * var(--sticky-cta-shift));
  left: 0;
  z-index: 90;
  display: none;
  min-height: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
  height: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: center;
  padding-bottom: env(safe-area-inset-bottom);
  border: 1px solid rgba(237, 211, 154, 0.2);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #9f7745);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48), 0 10px 28px rgba(201, 167, 106, 0.25);
  font-weight: 900;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.is-request-visible .mobile-sticky-cta {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: var(--radius);
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #9f7745);
  box-shadow: 0 16px 34px rgba(201, 167, 106, 0.24);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.34) 45%, transparent 58%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-56%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.button:hover {
  box-shadow: 0 20px 42px rgba(201, 167, 106, 0.34);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.button:hover::before {
  opacity: 0.58;
  transform: translateX(68%);
}

.button-small {
  min-height: 40px;
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.button-secondary {
  border: 1px solid rgba(201, 167, 106, 0.55);
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34), 0 0 28px rgba(201, 167, 106, 0.16);
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 112px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: clamp(2rem, 4.5vw, 4.6rem);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: 72px;
  padding-bottom: 64px;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  position: absolute;
  top: -110px;
  left: -80px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  content: "";
  background: rgba(201, 167, 106, 0.2);
  filter: blur(74px);
}

.eyebrow,
.duration {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 167, 106, 0.3);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  color: var(--gold-bright);
  background: rgba(201, 167, 106, 0.07);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-meta span:not(:last-child)::after {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 167, 106, 0.72), transparent);
  content: "";
}

.lead {
  max-width: 740px;
  margin-top: 1.45rem;
  color: var(--champagne);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.hero-mobile-note,
.mobile-quick-links {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: -30px -40px auto auto;
  width: 54%;
  height: 42%;
  border-radius: 999px;
  content: "";
  background: rgba(201, 167, 106, 0.16);
  filter: blur(70px);
}

.image-tall {
  aspect-ratio: 0.78;
  min-height: 560px;
}

.hero-trust-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(12, 10, 9, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-trust-strip span {
  display: flex;
  min-height: 78px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  color: var(--champagne);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-trust-strip span:last-child {
  border-right: 0;
}

.hero-trust-strip span::before {
  flex: 0 0 auto;
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.mood-band.section-shell {
  display: grid;
  grid-template-columns: auto auto auto minmax(220px, 1fr);
  gap: 0.8rem 1rem;
  align-items: center;
  margin-top: -40px;
  margin-bottom: 10px;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 167, 106, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.mood-band span,
.mood-band strong {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 4.1rem);
  font-weight: 600;
  line-height: 0.95;
}

.mood-band strong {
  color: var(--gold-bright);
}

.mood-band p {
  max-width: 520px;
  justify-self: end;
  margin: 0;
}

.section-intro {
  max-width: 880px;
  margin-bottom: 2.4rem;
}

.section-intro p:first-of-type {
  margin-top: 1.2rem;
}

.card-grid,
.program-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.program-card,
.timeline-item,
.testimonial,
.principles-card,
.request-form,
.contact-placeholder,
.value-panel,
.faq-list,
.note,
.center-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.glass-card,
.program-card,
.timeline-item,
.testimonial,
.principles-card,
.contact-placeholder,
.value-panel {
  padding: clamp(1.1rem, 2vw, 1.55rem);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.glass-card:hover,
.program-card:hover,
.testimonial:hover {
  border-color: rgba(201, 167, 106, 0.34);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32), 0 0 34px rgba(201, 167, 106, 0.08);
  transform: translateY(-3px);
}

.glass-card h3,
.program-card h3,
.timeline-item h3,
.principles-card h3,
.contact-placeholder h3,
.value-panel h3,
.value-panel summary {
  margin-bottom: 0.75rem;
}

.split-section,
.safety-section,
.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media::after {
  position: absolute;
  inset: auto -22px -22px auto;
  z-index: -1;
  width: 52%;
  height: 48%;
  border: 1px solid rgba(201, 167, 106, 0.34);
  border-radius: var(--radius);
  content: "";
}

.portrait {
  aspect-ratio: 0.82;
}

.value-panel {
  margin-top: 1.7rem;
}

.mobile-details summary {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 600;
  line-height: 1.02;
  list-style: none;
}

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

.check-list {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 0.7rem;
  color: var(--muted);
}

.check-list li::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.66rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--bronze));
  content: "";
}

.image-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 18%, rgba(237, 211, 154, 0.28), transparent 24%),
    radial-gradient(circle at 76% 72%, rgba(95, 24, 39, 0.36), transparent 36%),
    linear-gradient(145deg, #100d0d, #231513 54%, #070707);
  box-shadow: var(--shadow);
}

.frame-hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(237, 211, 154, 0.24), transparent 23%),
    radial-gradient(circle at 24% 72%, rgba(77, 19, 29, 0.58), transparent 42%),
    linear-gradient(145deg, #070706, #251512 56%, #0d0708);
}

.frame-vladislav {
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(237, 211, 154, 0.08) 45% 48%, transparent 52%),
    radial-gradient(circle at 50% 20%, rgba(201, 167, 106, 0.2), transparent 25%),
    linear-gradient(160deg, #0a0a09, #181412 46%, #2a1712);
}

.frame-vladislav::before {
  background:
    radial-gradient(ellipse at 50% 26%, rgba(237, 211, 154, 0.18), transparent 18%),
    linear-gradient(90deg, transparent 38%, rgba(237, 211, 154, 0.1) 48%, transparent 58%);
}

.frame-interior {
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 167, 106, 0.25), transparent 28%),
    linear-gradient(135deg, #080706, #1e1411 48%, #140b0d);
}

.frame-light {
  background:
    radial-gradient(circle at 72% 28%, rgba(237, 211, 154, 0.3), transparent 26%),
    radial-gradient(circle at 28% 74%, rgba(92, 31, 31, 0.36), transparent 36%),
    linear-gradient(145deg, #0a0807, #231512);
}

.frame-detail {
  background:
    linear-gradient(135deg, rgba(237, 211, 154, 0.12), transparent 28%),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(145deg, #0b0908, #211512);
}

.frame-sensual {
  background:
    radial-gradient(ellipse at 45% 50%, rgba(237, 211, 154, 0.16), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(88, 23, 37, 0.38), transparent 31%),
    linear-gradient(135deg, #080606, #1d1014);
}

.frame-candles {
  background:
    radial-gradient(circle at 30% 30%, rgba(237, 211, 154, 0.28), transparent 12%),
    radial-gradient(circle at 68% 36%, rgba(201, 167, 106, 0.18), transparent 10%),
    linear-gradient(145deg, #060505, #21120f 58%, #12080a);
}

.image-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 44%, transparent 54%),
    radial-gradient(circle at 50% 88%, rgba(201, 167, 106, 0.18), transparent 44%);
  filter: blur(1px);
  opacity: 0.78;
}

.image-frame::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(237, 211, 154, 0.13);
  border-radius: calc(var(--radius) - 2px);
  content: "";
}

.image-frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 300ms ease;
}

.image-frame.image-loaded img {
  opacity: 1;
}

.image-frame.image-missing img {
  display: none;
}

.image-frame.image-loaded figcaption {
  opacity: 0;
}

.image-frame figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.image-frame.image-missing figcaption {
  opacity: 1;
}

.image-frame figcaption span {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.image-frame figcaption small {
  color: var(--subtle);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.mosaic .image-frame {
  min-height: auto;
}

.mosaic .image-frame:first-child {
  grid-row: span 2;
}

.mosaic .image-frame:nth-child(2) {
  grid-column: span 2;
}

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

.program-stage {
  display: grid;
  gap: 1rem;
}

.primary-programs .program-card {
  min-height: 100%;
  padding: clamp(1.2rem, 2.4vw, 1.85rem);
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.program-card-featured {
  border-color: rgba(201, 167, 106, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 211, 154, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), 0 0 42px rgba(201, 167, 106, 0.08);
}

.program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(237, 211, 154, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  color: var(--champagne);
  background: rgba(201, 167, 106, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.program-card-featured .duration {
  margin-top: 2.2rem;
}

.program-details {
  margin: 1rem 0 1.25rem;
}

.program-details summary {
  display: none;
}

.program-details .check-list {
  margin: 0;
}

.program-note {
  color: var(--champagne);
}

.practice-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025)),
    rgba(8, 7, 6, 0.44);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.practice-panel-copy {
  padding: clamp(0.4rem, 1vw, 0.9rem);
}

.practice-panel-copy h3 {
  margin-bottom: 0.8rem;
}

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

.practice-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.practice-card h4 {
  margin-bottom: 0.65rem;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--gold-bright);
  font-weight: 800;
}

.program-card > .text-link {
  margin-top: 0.1rem;
  margin-bottom: 1rem;
}

.practice-card .text-link {
  margin-top: auto;
  margin-bottom: 0;
}

.text-link::after {
  display: inline-block;
  margin-left: 0.45rem;
  content: ">";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  position: absolute;
  top: 2.4rem;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 167, 106, 0.44), transparent);
  content: "";
}

.timeline-item {
  position: relative;
  padding-top: 2rem;
  background: rgba(255, 255, 255, 0.035);
}

.timeline-item::before {
  position: absolute;
  top: 1.95rem;
  left: clamp(1.1rem, 2vw, 1.55rem);
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(237, 211, 154, 0.7);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 6px rgba(201, 167, 106, 0.08);
  content: "";
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 1.45rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.safety-section {
  align-items: start;
}

.principles-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 167, 106, 0.14), transparent 44%),
    var(--card-strong);
}

.note,
.center-note {
  padding: 1.15rem 1.35rem;
  color: var(--champagne);
}

.safety-section .note {
  grid-column: 1 / -1;
}

.center-note {
  max-width: 820px;
  margin: 1.25rem auto 0;
  text-align: center;
}

.testimonial blockquote {
  margin: 0;
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1.28;
}

.testimonial figcaption {
  margin-top: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 118px;
}

.faq-copy p {
  margin-top: 1rem;
}

.faq-copy .button {
  margin-top: 0.8rem;
}

.faq-list {
  overflow: hidden;
  padding: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 1rem 1.35rem;
  color: var(--champagne);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 820px;
  padding: 0 1.35rem 1.2rem;
}

.faq-more-toggle {
  display: none;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(201, 167, 106, 0.06);
  cursor: pointer;
  font-weight: 900;
}

@supports selector(::details-content) {
  .faq-list details::details-content {
    block-size: 0;
    overflow: hidden;
    transition:
      block-size 260ms ease,
      content-visibility 260ms ease allow-discrete;
  }

  .faq-list details[open]::details-content {
    block-size: auto;
  }
}

.request-section {
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 118px;
}

.contact-placeholder {
  margin-top: 1.4rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.contact-actions span,
.choice-row button {
  border: 1px solid rgba(201, 167, 106, 0.26);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(201, 167, 106, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.contact-actions span {
  padding: 0.55rem 0.72rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
}

.request-form .field {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.12rem;
}

.choice-row button {
  min-height: 34px;
  padding: 0.45rem 0.68rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.choice-row button:hover,
.choice-row button.is-active {
  border-color: rgba(237, 211, 154, 0.62);
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-1px);
}

.request-form label {
  color: var(--champagne);
  font-size: 0.88rem;
  font-weight: 800;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(200, 187, 167, 0.62);
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: rgba(201, 167, 106, 0.76);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 0 4px rgba(201, 167, 106, 0.12);
}

.request-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-message {
  margin: 0;
  border: 1px solid rgba(201, 167, 106, 0.32);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  color: var(--champagne);
  background: rgba(201, 167, 106, 0.08);
  font-weight: 700;
}

.privacy-note {
  margin: 0;
  color: var(--subtle);
  font-size: 0.86rem;
}

.request-form.is-sent {
  border-color: rgba(201, 167, 106, 0.26);
}

.request-form.is-sent [data-submit-button] {
  color: var(--champagne);
  background: rgba(201, 167, 106, 0.12);
  box-shadow: none;
  pointer-events: none;
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 72px;
  border: 1px solid rgba(201, 167, 106, 0.2);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4.8rem);
  background:
    radial-gradient(circle at 86% 22%, rgba(201, 167, 106, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(34, 21, 17, 0.86), rgba(14, 10, 10, 0.94));
  box-shadow: var(--shadow);
}

.final-cta::before {
  position: absolute;
  top: -28%;
  right: -14%;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  content: "";
  background: rgba(237, 211, 154, 0.13);
  filter: blur(76px);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta p {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--champagne);
}

.final-cta .button {
  margin-top: 1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(280px, 0.92fr);
  gap: 1.25rem;
  align-items: start;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.footer-disclaimer {
  color: var(--subtle);
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.js .card-grid .reveal:nth-child(2),
.js .program-grid .reveal:nth-child(2),
.js .testimonial-grid .reveal:nth-child(2),
.js .timeline .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.js .card-grid .reveal:nth-child(3),
.js .program-grid .reveal:nth-child(3),
.js .testimonial-grid .reveal:nth-child(3),
.js .timeline .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.js .card-grid .reveal:nth-child(4),
.js .program-grid .reveal:nth-child(4),
.js .timeline .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.js .card-grid .reveal:nth-child(5),
.js .program-grid .reveal:nth-child(5),
.js .timeline .reveal:nth-child(5) {
  transition-delay: 280ms;
}

.js .card-grid .reveal:nth-child(6),
.js .program-grid .reveal:nth-child(6) {
  transition-delay: 350ms;
}

@supports (animation-timeline: view()) {
  html:not(.js) .reveal {
    animation: reveal 760ms ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate3d(-12px, 10px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content::before,
  .hero-visual::before,
  .final-cta::before {
    animation: ambientGlow 9s ease-in-out infinite;
  }

  .hero-visual::before {
    animation-duration: 11s;
    animation-delay: -2s;
  }
}

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

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .safety-section,
  .request-section,
  .faq-section,
  .practice-panel {
    grid-template-columns: 1fr;
  }

  .image-tall {
    min-height: 480px;
  }

  .card-grid.four,
  .program-grid,
  .timeline,
  .practice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .request-copy,
  .faq-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  main {
    display: flex;
    flex-direction: column;
  }

  body {
    padding-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 24px), 1320px);
    margin-top: 10px;
  }

  .brand span {
    max-width: 210px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header .button {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    overflow: hidden;
    max-height: 0;
    border: 1px solid rgba(201, 167, 106, 0);
    border-radius: var(--radius);
    padding: 0 0.85rem;
    background: rgba(8, 7, 6, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    opacity: 0;
    backdrop-filter: blur(18px);
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  .site-header.nav-open .main-nav {
    max-height: 360px;
    border-color: rgba(201, 167, 106, 0.2);
    padding: 0.85rem;
    opacity: 1;
  }

  .main-nav a {
    min-height: 48px;
    padding: 0.65rem 0.2rem;
  }

  .main-nav [data-mobile-secondary] {
    display: none;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .hero {
    order: 1;
  }

  #programs {
    order: 2;
  }

  #safety {
    order: 3;
  }

  #before-request {
    order: 4;
  }

  #request {
    order: 5;
  }

  #for-whom {
    order: 6;
  }

  .mood-band {
    order: 7;
  }

  #about {
    order: 8;
  }

  #atmosphere {
    order: 9;
  }

  #process {
    order: 10;
  }

  #formats {
    order: 11;
  }

  #reviews {
    order: 12;
  }

  #faq {
    order: 13;
  }

  .final-cta {
    order: 14;
  }

  .main-nav {
    gap: 1rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max));
    max-width: calc(100vw - 28px);
    padding: 66px 0;
  }

  .hero-content::before,
  .hero-visual::before,
  .about-media::after {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 1.4rem;
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
  }

  .hero-meta {
    margin-bottom: 0.7rem;
  }

  .lead {
    margin-top: 0.95rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-desktop-copy {
    display: none;
  }

  .hero-mobile-note {
    display: block;
    margin-bottom: 0;
    color: var(--champagne);
    font-weight: 700;
  }

  .mobile-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.85rem;
  }

  .mobile-quick-links a {
    min-height: 44px;
    border: 1px solid rgba(201, 167, 106, 0.24);
    border-radius: var(--radius);
    padding: 0.55rem 0.45rem;
    color: var(--champagne);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
  }

  .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust-strip span {
    align-items: flex-start;
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.72rem;
    font-size: 0.78rem;
  }

  .hero-trust-strip span:nth-child(2n) {
    border-right: 0;
  }

  .hero-trust-strip span:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  h1 {
    font-size: clamp(2.65rem, 13.8vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .image-tall,
  .image-frame {
    min-height: 260px;
  }

  .hero .image-tall {
    min-height: 240px;
    aspect-ratio: 1.08;
  }

  .mood-band {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }

  .mood-band p {
    justify-self: start;
  }

  #for-whom .card-grid,
  #atmosphere .card-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    max-width: 100%;
    margin-right: 0;
    padding: 0 0 0.35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  #for-whom .card-grid::-webkit-scrollbar,
  #atmosphere .card-grid::-webkit-scrollbar {
    display: none;
  }

  #for-whom .glass-card,
  #atmosphere .glass-card {
    flex: 0 0 min(82%, 320px);
    scroll-snap-align: start;
  }

  .card-grid.three,
  .card-grid.four,
  .program-grid,
  .practice-list,
  .testimonial-grid,
  .timeline,
  .request-form {
    grid-template-columns: 1fr;
  }

  .split-section .about-media {
    order: 2;
  }

  .split-section > :not(.about-media) {
    order: 1;
  }

  .program-details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 0;
    background: rgba(0, 0, 0, 0.16);
  }

  .program-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    color: var(--champagne);
    cursor: pointer;
    font-weight: 900;
    list-style: none;
  }

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

  .program-details summary::after {
    color: var(--gold);
    content: "+";
    font-size: 1.15rem;
    line-height: 1;
  }

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

  .program-details .check-list {
    padding: 0 0.9rem 0.9rem;
  }

  .mobile-details {
    padding: 1rem;
  }

  .mobile-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    color: var(--champagne);
    cursor: pointer;
  }

  .mobile-details[open] summary {
    margin-bottom: 0.8rem;
  }

  .mobile-details summary::after {
    color: var(--gold);
    content: "+";
    font-family: Manrope, sans-serif;
    font-size: 1.1rem;
  }

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

  .js .faq-extra {
    display: none;
  }

  .js .faq-list.show-all .faq-extra {
    display: block;
  }

  .js .faq-more-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .choice-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.18rem;
    scrollbar-width: none;
  }

  .choice-row::-webkit-scrollbar {
    display: none;
  }

  .choice-row button {
    min-height: 44px;
    flex: 0 0 auto;
  }

  .timeline {
    gap: 0.85rem;
  }

  .timeline::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 1.28rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(201, 167, 106, 0.38), transparent);
  }

  .timeline-item {
    padding-left: 2.6rem;
  }

  .timeline-item::before {
    left: 1rem;
  }

  .mosaic {
    display: flex;
    overflow-x: auto;
    grid-auto-rows: auto;
    gap: 0.8rem;
    max-width: 100%;
    margin-right: 0;
    padding-right: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mosaic::-webkit-scrollbar {
    display: none;
  }

  .mosaic .image-frame {
    flex: 0 0 min(82%, 320px);
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    scroll-snap-align: start;
  }

  .mosaic .image-frame:nth-child(n + 4) {
    display: none;
  }

  .form-wide {
    grid-column: auto;
  }

  .mood-band.section-shell {
    padding: 1.25rem;
  }

  .final-cta.section-shell {
    padding: 2rem;
  }

  .hero-content::before,
  .hero-visual::before,
  .final-cta::before {
    animation: none;
  }
}

@media (max-width: 460px) {
  body {
    line-height: 1.62;
  }

  .site-header {
    padding: 0.75rem;
  }

  .brand strong {
    font-size: 1.55rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .glass-card,
  .program-card,
  .timeline-item,
  .testimonial,
  .principles-card,
  .contact-placeholder,
  .value-panel {
    padding: 1rem;
  }

  .faq-list summary,
  .program-details summary {
    align-items: flex-start;
    gap: 1rem;
  }

  .program-badge {
    position: static;
    width: fit-content;
    margin-bottom: 0.85rem;
  }

  .program-card-featured .duration {
    margin-top: 0;
  }
}
