:root {
  /* Sky Priestess dawn palette (birth-chart-reading/design-brief/brand/BRAND.md) */
  --paper: #f7ecdd;
  --paper-2: #efdcc4;
  --white: #fff8ee;
  --light: #fff4e2;
  --ink: #4a3628;
  --ink-deep: #3b2f2a;
  --ink-soft: #7a4a2a;
  --cream: #4a3628;            /* text colour token kept for the shared JS/markup */
  --cream-soft: #7a4a2a;
  --gold: #c9a15a;
  --gold-soft: #e8c8a8;
  --gold-deep: #bf8c5d;
  --apricot: #d1a784;
  --mist: #9aa7a6;
  --sky: #4a3628;
  --line: rgba(191, 140, 93, 0.45);
  --glass: rgba(255, 248, 238, 0.8);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Century Gothic", "Helvetica Neue", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--serif); font-size: 19px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: var(--gold-deep); }
img { max-width: 100%; }
::selection { background: var(--gold-soft); color: var(--ink-deep); }

/* ---------- the sky behind everything: gold dust (celestial.js), the seed-of-life lattice, two soft dawn clouds ---------- */
#sky { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.lattice { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .11;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'><g fill='none' stroke='%23c9a15a' stroke-width='.7'><circle cx='60' cy='52' r='30'/><circle cx='60' cy='22' r='30'/><circle cx='60' cy='82' r='30'/><circle cx='34' cy='37' r='30'/><circle cx='86' cy='37' r='30'/><circle cx='34' cy='67' r='30'/><circle cx='86' cy='67' r='30'/></g></svg>");
  background-size: 120px 104px; }
.nebula { position: fixed; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.nebula--1 { width: 60vw; height: 60vw; left: -18vw; top: -12vw; background: radial-gradient(circle, rgba(232, 200, 168, .8), rgba(232, 200, 168, 0) 65%); animation: drift1 48s ease-in-out infinite alternate; }
.nebula--2 { width: 50vw; height: 50vw; right: -14vw; top: 30vh; background: radial-gradient(circle, rgba(172, 183, 181, .55), rgba(143, 181, 191, 0) 65%); animation: drift2 62s ease-in-out infinite alternate; }
.nebula--3 { width: 55vw; height: 55vw; left: 25vw; bottom: -25vw; background: radial-gradient(circle, rgba(233, 213, 164, .5), rgba(233, 213, 164, 0) 65%); animation: drift3 74s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(9vw, 7vh) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(-10vw, -8vh) scale(.9); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-8vw, -6vh) scale(1.1); } }

.page { position: relative; z-index: 1; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; margin: 0 auto; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 5; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: linear-gradient(rgba(247,236,221,.94), rgba(247,236,221,.66)); border-bottom: 1px solid rgba(191,140,93,.25); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 62px; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 400; letter-spacing: .32em; text-transform: uppercase; font-size: 11.5px; color: var(--gold-deep); text-decoration: none; white-space: nowrap; }
.brand svg { width: 22px; height: 29px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 20px; }
.nav__links a { font-family: var(--sans); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; }
.nav__links a:hover { color: var(--gold-deep); }
.nav__cta, .nav__links .nav__cta { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--white); background: var(--gold-deep); padding: 10px 18px; border-radius: 999px; text-decoration: none; transition: transform .25s, background .25s; }
.nav__cta:hover, .nav__links .nav__cta:hover { background: #a8764a; color: var(--white); transform: translateY(-1px); }

/* ---------- hero ---------- */
.hero { min-height: 100vh; text-align: center; position: relative; padding: 0 0 64px; overflow: hidden; }
.hero__bg { position: absolute; left: 0; right: 0; top: 0; height: 100vh; z-index: 0; background: url(img/ss-hero-sky-at-birth.jpg) center 28% / cover no-repeat; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(247,236,221,.14) 0%, rgba(247,236,221,0) 30%, rgba(247,236,221,.16) 52%, rgba(247,236,221,.72) 70%, rgba(247,236,221,.94) 86%, var(--paper) 100%); }
.hero__ring { position: absolute; width: min(120vw, 1100px); height: min(120vw, 1100px); left: 50%; top: 50vh; transform: translate(-50%, -50%); opacity: .09; pointer-events: none; z-index: 1; }
.ring--slow { animation: spin 240s linear infinite; }
.ring--counter { animation: spin 360s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 56vh 20px 0; }
.hero__inner::before { content: ""; position: absolute; left: -120px; right: -120px; top: calc(56vh - 300px); bottom: -120px; z-index: -1; pointer-events: none; background: radial-gradient(ellipse 60% 48% at 50% 62%, rgba(247,236,221,.88) 0%, rgba(247,236,221,.6) 40%, rgba(247,236,221,0) 100%); }
.hero__inner .eyebrow { color: var(--ink-soft); }
.eyebrow { font-family: var(--sans); font-weight: 400; letter-spacing: .38em; text-transform: uppercase; font-size: 12px; color: var(--gold-deep); margin: 0 0 20px; }
h1 { font-weight: 400; font-size: clamp(40px, 6.4vw, 72px); line-height: 1.06; margin: 0 0 20px; letter-spacing: -.01em; color: var(--ink-deep); }
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }
.lede { font-size: clamp(19px, 2.2vw, 23px); color: var(--ink-soft); max-width: 680px; margin: 0 auto 30px; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.btn { display: inline-block; font-family: var(--sans); font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--white); background: var(--gold-deep); padding: 15px 28px; border-radius: 999px; text-decoration: none; border: 0; cursor: pointer; transition: transform .25s, background .25s, box-shadow .25s; box-shadow: 0 14px 40px -14px rgba(122,74,42,.55); }
.btn:hover { background: #a8764a; transform: translateY(-2px); box-shadow: 0 18px 50px -14px rgba(122,74,42,.6); }
.btn--ghost { background: rgba(255,248,238,.55); color: var(--ink-soft); border: 1px solid var(--line); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,248,238,.92); color: var(--ink-deep); }
.hero__meta { margin: 22px 0 0; font-family: var(--sans); font-weight: 400; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); opacity: .85; }
.moon { width: 52px; height: 52px; margin: 0 auto 22px; filter: drop-shadow(0 0 18px rgba(199,155,69,.35)); }
.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--mist); animation: bob 3s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
h2 { font-weight: 500; font-size: clamp(30px, 4.2vw, 46px); line-height: 1.12; margin: 0 0 14px; color: var(--ink-deep); }
h3 { font-weight: 500; font-size: 24px; margin: 0 0 8px; color: var(--ink-deep); }
.sub { color: var(--ink-soft); font-size: 20px; margin: 0; }
.rule { width: 48px; height: 1px; background: var(--gold); margin: 24px auto; }
.marker { display: block; width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 0 0 5px rgba(247,236,221,.9), 0 0 0 6px rgba(191,140,93,.35), 0 14px 30px -14px rgba(59,47,42,.4); }

/* a figure from the library beside a column of cards */
.codex { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.codex__figure { position: relative; max-width: 380px; margin: 0 auto; width: 100%; }
.codex__figure img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 190px 190px 24px 24px; box-shadow: 0 30px 70px -36px rgba(59,47,42,.5); display: block; }
.codex__figure::after { content: ""; position: absolute; inset: -12px; border: 1px solid var(--line); border-radius: 202px 202px 34px 34px; pointer-events: none; }
.codex__figure--door img { border-radius: 24px 24px 190px 190px; }
.codex__figure--door::after { border-radius: 34px 34px 202px 202px; }
.codex__figure--book img { aspect-ratio: 4 / 5; object-position: 84% 50%; border-radius: 24px; }
.codex__figure--book::after { border-radius: 34px; }
.codex__figure--square img { aspect-ratio: 1 / 1; border-radius: 50%; }
.codex__figure--square::after { border-radius: 50%; }
.codex__caption { text-align: center; font-family: var(--sans); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); margin: 22px 0 0; }
.cols { display: grid; grid-template-columns: 1fr; gap: 14px; }
.col { border: 1px solid var(--line); background: rgba(255,248,238,.78); border-radius: 18px; padding: 22px 24px; box-shadow: 0 18px 50px -34px rgba(59,47,42,.35); }
.col .tag { display: block; font-family: var(--sans); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.col p { margin: 0; color: var(--ink-soft); font-size: 17.5px; }

/* the six parts, numbered */
.acts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.act { border: 1px solid var(--line); background: rgba(255,248,238,.82); border-radius: 16px; padding: 16px 18px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.act i { font-style: normal; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); font-family: var(--sans); font-size: 12px; display: grid; place-items: center; margin-top: 2px; }
.act b { display: block; font-weight: 500; font-size: 21px; color: var(--ink-deep); }
.act span { color: var(--ink-soft); font-size: 17px; line-height: 1.45; }

/* the numbered steps */
.steps { counter-reset: step; display: grid; grid-template-columns: 1fr; gap: 14px; }
.step { position: relative; padding: 22px 22px 22px 64px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,248,238,.72); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 20px; top: 20px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); font-family: var(--sans); font-size: 13px; display: grid; place-items: center; }
.step b { display: block; font-weight: 500; font-size: 21px; color: var(--ink-deep); }
.step span { color: var(--ink-soft); font-size: 17.5px; }

/* ---------- Your Codes and Your Sky: the two cards and the PDF pages ---------- */
.pages { display: flex; justify-content: center; align-items: flex-end; gap: 14px; margin: 0 auto 44px; max-width: 900px; }
.pages img { width: 30%; max-width: 270px; border-radius: 6px; border: 1px solid rgba(191,140,93,.35); box-shadow: 0 30px 60px -30px rgba(59,47,42,.55), 0 0 0 4px rgba(255,248,238,.8); display: block; transition: transform .4s; background: #fff; }
.pages img:nth-child(1) { transform: rotate(-2.5deg) translateY(10px); }
.pages img:nth-child(3) { transform: rotate(2.5deg) translateY(10px); }
.pages img:hover { transform: translateY(-8px) scale(1.03); z-index: 2; position: relative; }
.pages--two img { width: 44%; max-width: 300px; }
.pages--two img:nth-child(1) { transform: rotate(-2deg); }
.pages--two img:nth-child(2) { transform: rotate(2deg) translateY(8px); }
.pages__note { text-align: center; font-family: var(--sans); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin: -24px 0 40px; }
.twin { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card { border: 1px solid var(--line); background: rgba(255,248,238,.84); border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px -40px rgba(59,47,42,.4); display: flex; flex-direction: column; }
.card__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 40%; display: block; }
.card__body { padding: 24px 26px 28px; }
.card .tag { display: block; font-family: var(--sans); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.card h3 { font-size: 27px; margin: 0 0 8px; }
.card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 17.5px; }
.card p:last-child { margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.chips li { font-family: var(--sans); font-size: 12px; letter-spacing: .06em; color: var(--ink); border: 1px solid var(--line); background: rgba(255,248,238,.7); border-radius: 999px; padding: 6px 12px; }

/* ---------- full-bleed image bands from the library ---------- */
.figure-band { position: relative; min-height: 64vh; overflow: hidden; background: var(--paper-2) center / cover no-repeat; display: grid; align-items: start; }
.figure-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--paper) 0%, rgba(247,236,221,0) 18%, rgba(247,236,221,0) 82%, var(--paper) 100%); }
.figure-band > .wrap { position: relative; z-index: 1; padding-top: 64px; }
.figure-band--moons { background-image: url(img/ss-hero-moon-phases.jpg); background-position: center 45%; min-height: 52vh; }
.figure-band--nile { background-image: url(img/ss-hero-nile-stars.jpg); background-position: center 45%; }
.figure-band--question { background-image: url(img/ss-hero-woman-question.jpg); background-position: center 40%; }
.figure-band--wheel { background-image: url(img/ss-hero-zodiac-wheel.jpg); background-position: center 45%; }
.figure-band__caption { position: absolute; left: 0; right: 0; bottom: 34px; text-align: center; font-family: var(--sans); font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-soft); z-index: 1; }

/* the soft dawn bands behind sections */
.band { position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; z-index: 0; background: url(band-dawn-1.jpg) center 44% / cover no-repeat; opacity: .55; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, var(--paper) 0%, rgba(247,236,221,.45) 16%, rgba(247,236,221,.45) 82%, var(--paper) 100%); }
.band > .wrap { position: relative; z-index: 1; }
.band--sunrise::before { background-image: url(band-dawn-3.jpg); background-position: center 40%; opacity: .34; }
.band--sunrise::after { background: linear-gradient(180deg, var(--paper) 0%, rgba(247,236,221,.62) 14%, rgba(247,236,221,.62) 86%, var(--paper) 100%); }
.band--sky::before { background-image: url(hero-dawn.jpg); background-position: center 30%; opacity: .45; }
.band--head::before { opacity: .5; background-position: center 38%; }
.band--clouds::before { background-image: url(img/ss-clouds-empty-wide.jpg); background-position: center 55%; opacity: .5; }
.band--clouds::after { background: linear-gradient(180deg, var(--paper) 0%, rgba(247,236,221,.66) 10%, rgba(247,236,221,.66) 90%, var(--paper) 100%); }
.band--mist::before { background-image: url(img/ss-mist-empty-portrait.jpg); background-position: center 30%; opacity: .5; }
.band .quote { background: rgba(255,248,238,.78); border-radius: 0 18px 18px 0; padding: 22px 28px; backdrop-filter: blur(6px); box-shadow: 0 18px 50px -34px rgba(59,47,42,.35); }
.band .notice { background: linear-gradient(135deg, rgba(255,248,238,.9), rgba(255,248,238,.8)); }

/* ---------- the sample reading ---------- */
.sample { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.sample__img { position: relative; }
.sample__img > img:first-child { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 22px; display: block; box-shadow: 0 30px 70px -36px rgba(59,47,42,.5); }
.sample__img::after { content: ""; position: absolute; inset: -12px; border: 1px solid var(--line); border-radius: 32px; pointer-events: none; }
.sample__img .sample__portrait { position: absolute; right: -6px; bottom: -22px; width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 1px solid var(--line); box-shadow: 0 0 0 5px rgba(247,236,221,.95), 0 0 0 6px rgba(191,140,93,.35), 0 14px 30px -14px rgba(59,47,42,.5); }
.quote { border-left: 1px solid var(--gold); padding: 6px 0 6px 24px; margin: 0 0 22px; font-size: 20px; line-height: 1.55; color: var(--ink); }
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); margin-top: 10px; }
.sample__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Sacred Union ---------- */
.union { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.union__figures { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; max-width: 460px; margin: 0 auto; }
.union__figures img { width: 100%; object-fit: cover; display: block; box-shadow: 0 30px 70px -36px rgba(59,47,42,.5); }
.union__figures img:first-child { aspect-ratio: 2 / 3; border-radius: 120px 120px 18px 18px; }
.union__figures img:last-child { aspect-ratio: 1 / 1; border-radius: 18px; margin-bottom: 28px; }
.areas { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
.areas li { border: 1px solid var(--line); background: rgba(255,248,238,.78); border-radius: 12px; padding: 12px 14px; font-size: 17px; color: var(--ink-deep); line-height: 1.3; }
.areas li span { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.union__price { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 22px; }
.union__price .price-line { font-size: 30px; color: var(--ink-deep); line-height: 1.1; }
.union__price .price-line small { font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist); display: block; margin-top: 4px; }
.union__author { display: flex; gap: 16px; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(191,140,93,.25); color: var(--ink-soft); font-size: 17.5px; }
.union__author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex: none; border: 1px solid var(--line); box-shadow: 0 0 0 4px rgba(247,236,221,.95), 0 0 0 5px rgba(191,140,93,.35); }
.union__author p { margin: 0; }

.notice { border: 1px solid var(--line); background: linear-gradient(135deg, rgba(233,213,164,.35), rgba(255,255,255,.7)); border-radius: 18px; padding: 30px 32px; }
.notice h3 { margin: 0 0 10px; font-weight: 500; font-size: 26px; color: var(--ink-deep); }
.notice p { margin: 0 0 10px; color: var(--ink-soft); }
.notice p:last-child { margin: 0; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about__photo { position: relative; max-width: 300px; margin: 0 auto; width: 100%; }
.about__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 30%; border-radius: 160px 160px 24px 24px; display: block; box-shadow: 0 30px 70px -36px rgba(59,47,42,.45); }
.about__photo::after { content: ""; position: absolute; inset: -12px; border: 1px solid var(--line); border-radius: 172px 172px 34px 34px; pointer-events: none; }
.about h2 { margin-bottom: 14px; }
.about p { color: var(--ink); font-size: 20px; margin: 0 0 14px; }
.about .sig { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; }
.about .marker { margin-left: 0; }
.about .eyebrow { margin-bottom: 12px; }

/* ---------- form ---------- */
.form-card { border: 1px solid var(--line); background: rgba(255,248,238,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 24px; padding: 34px 24px; box-shadow: 0 40px 90px -50px rgba(59,47,42,.5); }
fieldset { border: 0; padding: 0; margin: 0 0 36px; min-width: 0; }
legend { font-family: var(--sans); font-weight: 400; letter-spacing: .26em; text-transform: uppercase; font-size: 12px; color: var(--gold-deep); margin-bottom: 6px; padding: 0; }
.legend-note { color: var(--ink-soft); font-size: 17px; margin: 0 0 18px; }
.grid2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
label { display: block; margin-bottom: 16px; }
label > span { display: block; font-family: var(--sans); font-weight: 400; font-size: 13.5px; letter-spacing: .04em; color: var(--ink); margin-bottom: 7px; }
label > span small { color: var(--ink-soft); font-weight: 300; letter-spacing: 0; }
.req::after { content: " *"; color: var(--gold-deep); }
input[type=text], input[type=email], input[type=date], input[type=time], select, textarea {
  width: 100%; font-family: var(--serif); font-size: 18px; color: var(--ink-deep);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px;
  transition: border-color .25s, box-shadow .25s; color-scheme: light;
}
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23bf8c5d' stroke-width='1.2'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
input::placeholder, textarea::placeholder { color: #b3a394; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(199,155,69,.16); }
textarea { min-height: 96px; resize: vertical; }
select option { background: var(--white); }
.choices { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 16px; }
.choice { display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; cursor: pointer; transition: border-color .25s, background .25s; background: var(--white); }
.choice:has(input:checked) { border-color: var(--gold); background: rgba(233,213,164,.22); }
.choice input { margin-top: 5px; accent-color: var(--gold); }
.choice b { font-weight: 500; display: block; color: var(--ink-deep); }
.choice small { color: var(--ink-soft); font-size: 16px; }
.check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 17.5px; color: var(--ink); cursor: pointer; }
.check input { margin-top: 6px; accent-color: var(--gold); flex: none; }
.submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 10px; }
.price { font-size: 30px; color: var(--ink-deep); }
.price small { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); display: block; }
.form-msg { margin-top: 18px; color: var(--gold-deep); font-size: 17.5px; min-height: 1.4em; }
.hp { position: absolute; left: -9999px; }
.union-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; margin-bottom: 14px; }
.union-grid img { width: 100%; max-width: 220px; margin: 0 auto; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 90px 90px 14px 14px; border: 1px solid var(--line); box-shadow: 0 18px 40px -26px rgba(59,47,42,.5); display: block; }
.union-grid .legend-note { margin: 0; }
.union-grid.no-img { grid-template-columns: 1fr; }
.form-side { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.form-aside { display: none; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: 1fr; gap: 10px; }
.faq details { border: 1px solid var(--line); background: rgba(255,248,238,.8); border-radius: 16px; padding: 0 22px; transition: background .25s; }
.faq details[open] { background: rgba(255,248,238,.95); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 34px 18px 0; font-weight: 500; font-size: 21px; color: var(--ink-deep); position: relative; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 2px; top: 50%; width: 10px; height: 10px; border-right: 1px solid var(--gold-deep); border-bottom: 1px solid var(--gold-deep); transform: translateY(-70%) rotate(45deg); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details p { margin: 0 0 20px; color: var(--ink-soft); font-size: 17.5px; line-height: 1.55; }

/* ---------- footer ---------- */
.footer { padding: 56px 0 40px; text-align: center; font-family: var(--sans); font-weight: 400; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); line-height: 2; }
.footer a { color: var(--gold-deep); text-decoration: none; }
.footer .mark { display: block; width: 30px; height: 39px; margin: 0 auto 14px; }
.footer .moon { width: 34px; height: 34px; margin: 0 auto 6px; }
.footer__temple { margin-top: 14px; font-size: 11.5px; letter-spacing: .16em; }

/* ---------- thanks ---------- */
.hero--short .hero__bg { opacity: .9; height: 100%; background-image: url(img/ss-clouds-empty-wide.jpg); background-position: center 60%; }
.hero--short .hero__bg::after { background: linear-gradient(180deg, rgba(247,236,221,.35) 0%, rgba(247,236,221,.66) 34%, rgba(247,236,221,.92) 60%, var(--paper) 100%); }
.hero--short .hero__inner { padding-top: 22vh; }
.status { text-align: center; padding: 60px 0; }
.status__orbit { width: 120px; height: 120px; margin: 0 auto 30px; position: relative; }
.status__orbit::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--line); }
.status__orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); top: -5px; left: calc(50% - 5px); box-shadow: 0 0 16px var(--gold-soft); transform-origin: 5px 65px; animation: spin 6s linear infinite; }
.status__orbit.is-done::after { animation: none; top: 50%; left: 50%; width: 22px; height: 22px; margin: -11px; }
.permalink { display: inline-block; margin-top: 12px; padding: 10px 16px; border: 1px dashed var(--line); border-radius: 10px; font-family: var(--sans); font-size: 13px; color: var(--ink); word-break: break-all; background: rgba(255,255,255,.6); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

/* ---------- long-form pages (story, Danni's reading) ---------- */
.article-head { padding: 90px 0 30px; }
.article-head h1 { font-size: clamp(34px, 5vw, 56px); }
.article-head .question { font-style: italic; font-size: 22px; color: var(--gold-deep); max-width: 600px; margin: 0 auto 26px; }
.article { padding: 10px 20px 40px; font-size: 20.5px; line-height: 1.65; }
.article h2 { font-family: var(--sans); font-weight: 400; letter-spacing: .26em; text-transform: uppercase; font-size: 12.5px; color: var(--gold-deep); border-top: 1px solid var(--line); padding-top: 26px; margin: 64px 0 22px; }
.article h3 { font-weight: 500; font-size: 27px; color: var(--ink-deep); margin: 30px 0 12px; }
.article p { margin: 0 0 18px; }
.article em { color: var(--ink-deep); }
.article strong { font-weight: 600; color: var(--ink-deep); }
.article ol, .article ul { padding-left: 24px; margin: 0 0 18px; }
.article li { margin-bottom: 8px; }
.article blockquote { border-left: 1px solid var(--gold); margin: 0 0 18px; padding: 4px 0 4px 22px; color: var(--ink-soft); }
.rsec:first-child h2 { border-top: 0; margin-top: 10px; }
.chart { font-size: 17px; }
.chart__meta { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); margin-bottom: 18px; }
.chart h3 { font-size: 22px; margin: 26px 0 10px; }
.chart h3 small { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mist); }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.fact { border: 1px solid var(--line); background: rgba(255,255,255,.7); border-radius: 12px; padding: 12px 14px; }
.fact span { display: block; font-family: var(--sans); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.fact b { font-weight: 500; font-size: 19px; color: var(--ink-deep); }
.fact em { display: block; font-style: normal; font-family: var(--sans); font-size: 12px; color: var(--mist); }
.chart__grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.chart table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.chart th { text-align: left; font-family: var(--sans); font-weight: 400; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); padding: 6px 8px 8px 0; border-bottom: 1px solid var(--line); }
.chart td { padding: 7px 8px 7px 0; border-bottom: 1px solid rgba(199,155,69,.16); color: var(--ink); vertical-align: top; }
.chart td:first-child { color: var(--ink-deep); }
.chart td small { font-family: var(--sans); font-size: 11px; color: var(--mist); }
.chart__list { margin: 0 0 8px; color: var(--ink); }
.table--narrow { max-width: 520px; }

/* ---------- wider screens ---------- */
@media (min-width: 720px) {
  .wrap { padding: 0 24px; }
  .acts { grid-template-columns: repeat(2, 1fr); }
  .twin { grid-template-columns: 1fr 1fr; }
  .union__figures { max-width: none; }
  .about__photo { max-width: none; }
  .grid2, .choices { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 44px 40px; }
  .union-grid { grid-template-columns: 150px 1fr; }
  .union-grid img { max-width: none; }
  .chart__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 110px 0; }
  .article { padding: 10px 24px 40px; }
}
@media (min-width: 980px) {
  .codex { grid-template-columns: 340px 1fr; gap: 48px; }
  .codex--flip { grid-template-columns: 1fr 340px; }
  .codex--flip .codex__figure { order: 2; }
  .codex--wide { grid-template-columns: 400px 1fr; }
  .sample { grid-template-columns: 1.05fr 1fr; gap: 56px; }
  .union { grid-template-columns: 440px 1fr; gap: 48px; }
  .about { grid-template-columns: 300px 1fr; gap: 56px; }
  .form-side { grid-template-columns: 1fr 260px; gap: 36px; }
  .form-aside { display: block; position: sticky; top: 90px; }
  .form-aside img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 130px 130px 18px 18px; display: block; box-shadow: 0 30px 70px -36px rgba(59,47,42,.5); }
  .form-aside .aside__note { margin: 20px 0 0; font-size: 17px; color: var(--ink-soft); }
  .form-aside .aside__note b { display: block; font-weight: 500; color: var(--ink-deep); font-size: 20px; }
}
@media (max-width: 719px) {
  body { font-size: 18px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .hero { min-height: 0; }
  .hero__bg { height: 60vh; background-position: 42% center; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(247,236,221,.15) 0%, rgba(247,236,221,0) 36%, rgba(247,236,221,.3) 68%, rgba(247,236,221,.85) 90%, var(--paper) 100%); }
  .hero__inner { padding-top: 46vh; }
  .hero__inner::before { top: calc(46vh - 220px); left: -40px; right: -40px; }
  .hero__ring { top: 30vh; }
  .figure-band { min-height: 40vh; }
  .figure-band--moons { min-height: 32vh; }
  .pages { gap: 8px; }
  .pages img { width: 32%; }
  .pages__note { margin-top: -10px; }
  .union__figures { gap: 10px; }
  .form-card { padding: 30px 18px; border-radius: 18px; }
  .section { padding: 80px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nebula, .ring--slow, .ring--counter, .scroll-hint, .status__orbit::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- the pitch to Sky Priestess ---------- */
.pitch { position: relative; overflow: hidden; padding: 120px 0 110px; text-align: center; }
.pitch__bg { position: absolute; inset: 0; z-index: 0; }
.pitch__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .55; }
.pitch__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--paper) 0%, rgba(247,236,221,.25) 35%, rgba(247,236,221,.25) 65%, var(--paper) 100%); }
.pitch__inner { position: relative; z-index: 1; max-width: 760px; }
.pitch h2 { font-weight: 400; font-size: clamp(30px, 4.6vw, 48px); line-height: 1.12; margin: 0 0 18px; color: var(--ink-deep); }
.pitch h2 em { font-style: italic; color: var(--gold-deep); }
.pitch .btn + .btn { margin-left: 10px; }
@media (max-width: 640px) { .pitch { padding: 80px 0 70px; } .pitch .btn + .btn { margin: 12px 0 0; } }
