:root {
  --night: #06151b;
  --night-soft: #0a2028;
  --ivory: #f4eddb;
  --paper: #e6dcc3;
  --gold: #d7b66b;
  --gold-soft: #f0d994;
  --copper: #a83e26;
  --red: #a83222;
  --red-bright: #ce4b31;
  --blue: #164d62;
  --theme-deep: #06151b;
  --theme-mid: #0a2028;
  --theme-glow: rgba(22, 77, 98, .26);
  --muted: #9daba9;
  --line: rgba(215, 182, 107, .22);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 88% 8%, rgba(168, 50, 34, .18), transparent 30rem),
    radial-gradient(circle at 8% 50%, var(--theme-glow), transparent 38rem),
    var(--theme-deep);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.68;
  overflow-x: hidden;
}
body[data-theme="psycho"] { --theme-deep: #06191c; --theme-mid: #0b3234; --theme-glow: rgba(40, 137, 128, .32); }
body[data-theme="nidra"] { --theme-deep: #100c24; --theme-mid: #25204e; --theme-glow: rgba(89, 74, 184, .36); }
body[data-theme="astro"] { --theme-deep: #061329; --theme-mid: #123869; --theme-glow: rgba(35, 103, 177, .38); }
body[data-theme="dharma"] { --theme-deep: #21110b; --theme-mid: #5d3217; --theme-glow: rgba(190, 113, 39, .31); }
body[data-theme="moon"] { --theme-deep: #0b061a; --theme-mid: #4a1f72; --theme-glow: rgba(180, 85, 235, .38); }
body[data-theme="sun"] { --theme-deep: #280b02; --theme-mid: #9f3508; --theme-glow: rgba(255, 125, 7, .43); }
body[data-theme="atelier"] { --theme-deep: #171912; --theme-mid: #414b34; --theme-glow: rgba(125, 145, 87, .3); }
body[data-theme="dawn"] { --theme-deep: #0a1b1b; --theme-mid: #28524b; --theme-glow: rgba(79, 149, 128, .3); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(215, 182, 107, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 182, 107, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 8%, transparent 76%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; color: var(--night); background: var(--gold-soft); border-radius: 999px; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 182, 107, .12);
  background: color-mix(in srgb, var(--theme-deep) 86%, transparent);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; }
.nav-side { justify-self: start; color: #d8d3c5; font-size: .88rem; text-decoration: none; }
.nav-side:hover { color: var(--gold-soft); }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav > .brand { justify-self: center; }
.brand img { width: 46px; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.3)); }
.brand-name { font-size: 1rem; letter-spacing: .2em; font-weight: 700; }
.brand-name span { color: var(--gold); }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 1.6rem; }
.nav-links a { color: #d8d3c5; font-size: .9rem; text-decoration: none; }
.nav-links a:hover { color: var(--gold-soft); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.25rem;
  border: 1px solid #d65a42;
  border-radius: 999px;
  color: #fff6ea;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  font-size: .92rem;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(168, 50, 34, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(168,50,34,.35); }
.button--quiet { color: #ffdcd2; border-color: rgba(206,75,49,.75); background: rgba(168,50,34,.1); box-shadow: none; }
.button--small { min-height: 42px; padding: .62rem 1rem; font-size: .84rem; }
.button--block { width: 100%; }
.button[aria-disabled="true"] { cursor: not-allowed; opacity: .72; }

.service-hero {
  position: relative;
  padding: 9.4rem 0 6rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 38%, color-mix(in srgb, var(--theme-mid) 78%, transparent), transparent 28rem),
    linear-gradient(135deg, color-mix(in srgb, var(--theme-mid) 26%, transparent), transparent 55%);
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  width: min(48vw, 640px);
  aspect-ratio: 1;
  right: -12%;
  top: 8%;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 48px color-mix(in srgb, var(--theme-mid) 14%, transparent), 0 0 0 49px color-mix(in srgb, var(--gold) 12%, transparent);
  z-index: 0;
  pointer-events: none;
}
.service-hero > .shell { position: relative; z-index: 1; }
body[data-theme="moon"] .service-hero::after,
body[data-theme="sun"] .service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .42;
  background-image: radial-gradient(circle, rgba(255,235,171,.7) 0 1px, transparent 1.5px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 2rem; color: var(--muted); font-size: .84rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-soft); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.hero-aside { display: grid; gap: 1rem; }
.eyebrow { margin: 0 0 1rem; color: var(--gold-soft); font-size: .76rem; font-weight: 760; letter-spacing: .18em; text-transform: uppercase; }
.quest-line { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin: 0 0 1.3rem; color: var(--muted); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.quest-line span:first-child { color: var(--red-bright); font-weight: 800; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; text-wrap: balance; }
h1 { max-width: 820px; margin-bottom: 1.4rem; font-size: clamp(3rem, 7vw, 6.1rem); line-height: .96; letter-spacing: -.052em; }
h2 { margin-bottom: 1.1rem; font-size: clamp(2.25rem, 4.5vw, 4rem); line-height: 1.06; letter-spacing: -.035em; }
h3 { margin-bottom: .55rem; font-size: 1.55rem; }
.hero-intro { max-width: 730px; color: #c7cdca; font-size: clamp(1.05rem, 2vw, 1.2rem); }
.hero-note { max-width: 690px; margin: 1.4rem 0 0; color: var(--muted); font-size: .9rem; }

.offer-card {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(215,182,107,.54);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(168,62,38,.24), transparent 16rem),
    color-mix(in srgb, var(--theme-mid) 56%, rgba(8,29,36,.82));
  box-shadow: 0 28px 75px rgba(0,0,0,.32);
  overflow: hidden;
}
.offer-card::after { content: "ॐ"; position: absolute; right: -1rem; top: -2.6rem; color: rgba(215,182,107,.07); font-family: var(--serif); font-size: 9rem; }
.offer-label { position: relative; z-index: 1; margin: 0 0 2rem; color: var(--gold); font-size: .72rem; font-weight: 760; letter-spacing: .16em; text-transform: uppercase; }
.price { position: relative; z-index: 1; margin: 0 0 .3rem; font-family: var(--serif); font-size: 3rem; line-height: 1; }
.duration { position: relative; z-index: 1; margin: 0 0 1.4rem; color: var(--muted); font-size: .86rem; }
.offer-card .button { position: relative; z-index: 1; }
.microcopy { margin: .75rem 0 0; color: var(--muted); font-size: .75rem; text-align: center; }

.content { padding: 6rem 0; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.main-copy { min-width: 0; }
.section-block { padding: 0 0 4.7rem; }
.section-block + .section-block { padding-top: 4.7rem; border-top: 1px solid var(--line); }
.section-kicker { margin: 0 0 .85rem; color: var(--gold); font-size: .76rem; font-weight: 760; letter-spacing: .18em; text-transform: uppercase; }
.lead { color: #c9cecb; font-size: 1.12rem; }
.quiet { color: var(--muted); }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 2rem; }
.check-item { min-height: 126px; padding: 1.2rem; border: 1px solid var(--line); border-radius: .85rem; background: rgba(255,255,255,.025); }
.check-item::before { content: "◇"; display: block; margin-bottom: .5rem; color: var(--gold); }
.check-item p { margin: 0; color: #c6cbc8; }

.included { display: grid; gap: 1px; margin-top: 2rem; border: 1px solid var(--line); background: var(--line); }
.included-item { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.25rem; background: color-mix(in srgb, var(--theme-deep) 91%, #000); }
.included-item span { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.included-item p { margin: 0; color: #c6cbc8; }

.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; margin-top: 2rem; border: 1px solid var(--line); background: var(--line); }
.process-step { min-height: 210px; padding: 1.35rem; background: color-mix(in srgb, var(--theme-deep) 91%, #000); }
.process-number { display: block; margin-bottom: 3rem; color: var(--gold); font-size: .76rem; letter-spacing: .15em; }
.process-step p { margin: 0; color: var(--muted); }


.audience { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.audience span { padding: .55rem .85rem; border: 1px solid var(--line); border-radius: 999px; color: #d3d5ce; background: rgba(255,255,255,.02); font-size: .84rem; }

.variants { display: grid; gap: .8rem; margin-top: 2rem; }
.variant { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.25rem; border: 1px solid var(--line); border-radius: .9rem; background: rgba(255,255,255,.025); }
.variant h3 { margin: 0 0 .15rem; }
.variant p { margin: 0; color: var(--muted); font-size: .87rem; }
.variant-price { color: var(--gold-soft); font-family: var(--serif); font-size: 1.8rem; white-space: nowrap; }
.variant .button { grid-column: 1 / -1; }

.sticky-card { position: sticky; top: 106px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 1rem; background: color-mix(in srgb, var(--theme-mid) 58%, rgba(9,31,39,.72)); backdrop-filter: blur(14px); }
.sticky-card h3 { font-size: 1.38rem; }
.sticky-card ul { margin: 1.1rem 0 1.4rem; padding: 0; list-style: none; color: var(--muted); font-size: .87rem; }
.sticky-card li { display: flex; gap: .55rem; padding: .3rem 0; }
.sticky-card li::before { content: "—"; color: var(--gold); }

.final-cta { padding: 5.5rem 0; border-top: 1px solid var(--line); text-align: center; }
.final-cta-inner { max-width: 800px; margin-inline: auto; }
.final-cta p { max-width: 650px; margin: 0 auto 1.5rem; color: var(--muted); }

footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-inner p { margin: 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--muted); font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold-soft); }

@media (max-width: 880px) {
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .offer-card { max-width: 520px; }
  .sticky-card { position: static; }
}
@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav { grid-template-columns: 1fr auto 1fr; gap: .5rem; }
  .nav-side { font-size: 0; }
  .nav-side::before { content: "←"; font-size: 1.15rem; }
  .nav .brand-name { display: none; }
  .nav-links a:not(.button) { display: none; }
  .nav-links .button { min-width: 0; padding-inline: .75rem; font-size: .76rem; }
  .service-hero { padding: 8rem 0 4.5rem; }
  .content { padding: 4.5rem 0; }
  .check-grid, .process { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-number { margin-bottom: 1.8rem; }
  .section-block { padding-bottom: 3.7rem; }
  .section-block + .section-block { padding-top: 3.7rem; }
  .variant { grid-template-columns: 1fr; }
  .variant-price { justify-self: start; }
  .footer-inner { align-items: start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
