:root {
  --plum: #241426;
  --plum-2: #3c213e;
  --wine: #6e374d;
  --gold: #d8b878;
  --cream: #f4ecdf;
  --paper: #fbf7f0;
  --ink: #2e202a;
  --muted: #766a70;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: Manrope, sans-serif; }
a { color: inherit; text-decoration: none; }
button, textarea { font: inherit; }
button { cursor: pointer; }

.nav {
  height: 82px; padding: 0 clamp(22px, 5vw, 80px); display: flex; align-items: center;
  justify-content: space-between; color: #fff; background: var(--plum);
  border-bottom: 1px solid rgba(255,255,255,.12); position: relative; z-index: 10;
}
.logo { font-family: Prata, serif; font-size: 20px; letter-spacing: .02em; }
.logo-mark { color: var(--gold); margin-right: 9px; }
.nav nav { display: flex; gap: 36px; font-size: 13px; color: rgba(255,255,255,.72); }
.nav nav a:hover { color: var(--gold); }
.nav-cta { border: 1px solid rgba(216,184,120,.55); border-radius: 99px; padding: 11px 18px; font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px 9px; background: transparent; border: 1px solid rgba(216,184,120,.42); border-radius: 50%; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 4px auto; background: var(--gold); transition: transform .2s, opacity .2s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 82px); background: var(--plum); color: white; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; padding: 70px clamp(22px, 7vw, 112px) 100px;
}
.hero-copy { max-width: 700px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 24px; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 600; }
h1, h2 { font-family: Prata, serif; font-weight: 400; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(48px, 6.1vw, 92px); letter-spacing: -.035em; }
h1 em, h2 em { color: var(--gold); font-weight: inherit; }
.lead { max-width: 590px; color: rgba(255,255,255,.7); line-height: 1.75; font-size: 16px; margin: 30px 0; }
.hero-actions { display: flex; gap: 28px; align-items: center; }
.button { border: 0; border-radius: 99px; padding: 16px 23px; display: inline-flex; gap: 18px; align-items: center; justify-content: center; }
.button-primary { color: #28192a; background: var(--gold); box-shadow: 0 8px 30px rgba(216,184,120,.14); }
.button-primary:hover { background: #e8cb91; transform: translateY(-1px); }
.text-link { font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.25); padding: 8px 0; }
.trust { display: flex; gap: 14px; margin-top: 44px; align-items: center; }
.trust p { margin: 0; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.6; }
.trust b { color: rgba(255,255,255,.82); font-weight: 500; }
.moon { width: 40px; height: 40px; border: 1px solid rgba(216,184,120,.4); color: var(--gold); border-radius: 50%; display: grid; place-items: center; }

.hero-visual { width: min(430px, 34vw); justify-self: end; position: relative; z-index: 2; }
.photo-frame { aspect-ratio: .78; border-radius: 48% 48% 5px 5px; overflow: hidden; border: 1px solid rgba(216,184,120,.35); padding: 9px; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; filter: sepia(.12) saturate(.8); }
.floating-note { position: absolute; left: -110px; bottom: 40px; padding: 17px 22px; background: rgba(50,29,49,.91); border: 1px solid rgba(216,184,120,.34); display: flex; gap: 14px; align-items: center; backdrop-filter: blur(9px); }
.floating-note span { color: var(--gold); }
.floating-note p { font-size: 11px; line-height: 1.5; margin: 0; color: rgba(255,255,255,.65); }
.floating-note b { color: white; font-weight: 500; }
.star { position: absolute; color: var(--gold); }
.star-a { top: 15%; left: -13%; font-size: 25px; }.star-b { right: -11%; bottom: 22%; font-size: 16px; }
.hero-orbit { position: absolute; border: 1px solid rgba(216,184,120,.12); border-radius: 50%; }
.orbit-one { width: 770px; height: 770px; right: -250px; top: -140px; }
.orbit-two { width: 950px; height: 950px; right: -320px; top: -230px; }
.scroll-cue { position: absolute; left: clamp(22px, 7vw, 112px); bottom: 26px; color: rgba(255,255,255,.42); font-size: 10px; text-transform: uppercase; letter-spacing: .17em; }
.scroll-cue span { color: var(--gold); margin-right: 14px; }

.section { padding: 110px clamp(22px, 7vw, 112px); }
.section-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #9a8d94; border-bottom: 1px solid #ded3ca; padding-bottom: 16px; margin-bottom: 62px; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12%; }
.eyebrow.dark { color: var(--wine); }
h2 { font-size: clamp(38px, 4.6vw, 68px); }
.about h2 em, .services h2 em { color: var(--wine); }
.about-copy { padding-top: 44px; color: var(--muted); font-family: Prata, serif; font-size: 17px; line-height: 1.8; }
.principles { margin-top: 80px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #ded3ca; }
.principles article { padding: 32px 30px 10px 0; }
.principles article + article { border-left: 1px solid #ded3ca; padding-left: 30px; }
.principles span, .service > span { font-size: 10px; color: var(--wine); letter-spacing: .1em; }
.principles h3 { font-family: Prata, serif; font-weight: 400; font-size: 21px; margin: 25px 0 10px; }
.principles p { color: var(--muted); font-size: 13px; }

.practice { background: var(--plum); color: white; }
.practice-heading { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 12%; margin-bottom: 60px; }
.practice-heading > p { color: rgba(255,255,255,.6); line-height: 1.75; }
.cards-stage { border: 1px solid rgba(216,184,120,.25); padding: 28px; background: rgba(255,255,255,.02); }
.stage-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 11px; }
.pulse { display: inline-block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 0 5px rgba(216,184,120,.1); }
.shuffle, .ghost-button, .text-button { background: none; border: 0; color: inherit; opacity: .65; }
.shuffle:hover, .ghost-button:hover, .text-button:hover { opacity: 1; }
.cards { display: grid; grid-template-columns: repeat(10,1fr); gap: 12px; margin: 35px 0; perspective: 1200px; }
.tarot-card { aspect-ratio: .58; padding: 5px; border: 0; background: var(--gold); transition: transform .25s, filter .25s; }
.tarot-card:hover { transform: translateY(-10px) rotate(var(--tilt)); filter: brightness(1.12); }
.card-back { height: 100%; border: 1px solid rgba(216,184,120,.75); background: #392139; display: grid; place-items: center; position: relative; overflow: hidden; }
.card-back:before, .card-back:after { content: ""; position: absolute; width: 65%; aspect-ratio: 1; border: 1px solid rgba(216,184,120,.38); transform: rotate(45deg); }
.card-back:after { width: 42%; }
.card-back span { color: var(--gold); font-size: 18px; z-index: 1; }
.stage-hint { margin: 0; text-align: center; color: rgba(255,255,255,.42); font-family: Prata, serif; font-style: italic; font-size: 13px; }
.hidden { display: none !important; }

.free-reading { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 45px; align-items: start; padding: clamp(28px,4vw,55px); border: 1px solid rgba(216,184,120,.25); background: rgba(255,255,255,.025); }
.free-card-column { text-align: center; }
.free-reading-content h3, .deep-offer h3 { font-family: Prata,serif; font-weight: 400; }
.free-reading-content > h3 { margin: 0 0 18px; color: var(--gold); font-size: clamp(32px,4vw,52px); line-height: 1.05; }
.free-message { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.13); }
.free-message > span { color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.free-message p { margin: 7px 0 0; color: rgba(255,255,255,.74); font-family: Prata,serif; font-size: 15px; line-height: 1.52; }
.free-message.accent { margin-top: 4px; padding: 16px 18px; border: 1px solid rgba(216,184,120,.35); background: rgba(216,184,120,.08); }
.free-note { margin: 20px 0 0; color: rgba(255,255,255,.34); font-size: 9px; line-height: 1.6; }
.free-next-step { margin-top: 14px; padding: 16px 18px; display: flex; gap: 22px; align-items: center; justify-content: space-between; border: 1px solid rgba(216,184,120,.3); background: linear-gradient(135deg,rgba(216,184,120,.09),rgba(255,255,255,.025)); }
.free-next-step p { max-width: 650px; margin: 0; color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.55; }
.free-reading-cta { flex: 0 0 auto; min-width: 210px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; color: #1f1420; background: var(--gold); border-radius: 999px; font-size: 11px; font-weight: 500; }
.free-reading-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.deep-offer { grid-column: 1 / -1; padding: 28px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 26px 34px; background: var(--cream); color: var(--ink); }
.deep-offer .eyebrow { color: var(--wine); margin-bottom: 15px; }
.deep-offer h3 { margin: 0 0 18px; font-size: 25px; line-height: 1.35; }
.deep-offer > p:not(.eyebrow) { color: var(--muted); font-size: 12px; line-height: 1.7; }
.deep-offer-result { padding: 15px 0 0; color: var(--wine) !important; font-weight: 600; border-top: 1px solid #ddcfc3; }
.deep-offer ul { margin: 22px 0; padding: 0; list-style: none; }
.deep-offer li { position: relative; padding: 8px 0 8px 20px; border-top: 1px solid #ddcfc3; font-size: 11px; }
.deep-offer li:before { content: "✦"; position: absolute; left: 0; color: var(--wine); }
.deep-offer .button { width: 100%; font-size: 11px; padding-inline: 15px; }
.deep-offer .button + .button { margin-top: 10px; }
.deep-paths { grid-column: 2; grid-row: 1 / span 5; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.deep-paths article { padding: 18px; display: flex; flex-direction: column; border: 1px solid #ddcfc3; background: rgba(255,255,255,.38); }
.deep-paths article:first-child { background: rgba(126,55,86,.07); }
.deep-paths span { display: block; margin-bottom: 18px; color: var(--gold); font-size: 9px; letter-spacing: .12em; }
.deep-paths h4 { margin: 0 0 10px; font-family: Prata,serif; font-size: 18px; font-weight: 400; line-height: 1.35; }
.deep-paths p { margin: 0 0 16px; color: var(--muted); font-size: 10px; line-height: 1.65; }
.deep-paths .button { margin-top: auto; }
#startTarotAnalysis { border: 1px solid var(--wine); background: var(--wine); color: #fff; }
#startTarotAnalysis:hover { background: #653b4f; }
.deep-offer small { display: block; margin-top: 11px; color: #968a90; text-align: center; font-size: 9px; }

.session { display: grid; grid-template-columns: 260px 1fr; gap: 70px; padding: 55px; border: 1px solid rgba(216,184,120,.25); }
.session-card { text-align: center; }
.revealed-card { aspect-ratio: .59; border: 7px solid var(--gold); background: linear-gradient(155deg,#51334e,#291729); overflow: hidden; }
.revealed-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.deck-source { margin: 10px 0 0; color: rgba(255,255,255,.38); font-size: 8px; line-height: 1.55; }
.deck-source a { border-bottom: 1px solid rgba(255,255,255,.2); }
.ghost-button { margin-top: 18px; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.3); padding: 6px 0; }
.progress { height: 2px; background: rgba(255,255,255,.12); }.progress span { display: block; height: 100%; width: 12.5%; background: var(--gold); transition: width .3s; }
.step-count { text-align: right; font-size: 10px; color: rgba(255,255,255,.4); }
.session-content h3 { font-family: Prata,serif; font-weight: 400; font-size: clamp(28px,3vw,42px); margin: 10px 0 18px; }
.session-content > p:not(.step-count,.eyebrow) { color: rgba(255,255,255,.62); line-height: 1.75; }
.name-step { padding: clamp(24px,4vw,42px); border: 1px solid rgba(216,184,120,.28); background: rgba(255,255,255,.035); }
.name-step h3 { margin-top: 0; }
.name-step h3 + p { display: none; }
.name-step > p:not(.eyebrow,.form-error) { color: rgba(255,255,255,.62); line-height: 1.7; }
.name-field { display: block; margin: 24px 0 14px; }
.name-field span { display: block; margin-bottom: 8px; color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.name-field input { width: 100%; min-height: 58px; padding: 14px 18px; color: white; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); outline: none; font: inherit; }
.name-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,184,120,.08); }
.name-step .button { margin-top: 10px; }
.legal-consent { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.55; }
.legal-consent input { width: 16px; height: 16px; min-height: 0; margin-top: 2px; accent-color: var(--gold); flex: 0 0 auto; }
.legal-consent button { padding: 0; color: var(--gold); background: none; border: 0; border-bottom: 1px solid rgba(216,184,120,.45); font: inherit; cursor: pointer; }
.legal-consent button:hover { border-color: var(--gold); }
.numerology-form .legal-consent { display: flex; margin: 14px 0 0; max-width: 390px; color: rgba(255,255,255,.48); text-transform: none; letter-spacing: 0; }
.numerology-form .legal-consent > span,
.matrix-form .legal-consent > span { display: inline; margin: 0; color: inherit; font-size: inherit; letter-spacing: 0; text-transform: none; }
.matrix-form .legal-consent { grid-column: 1 / -1; grid-row: 2; margin: 0; color: rgba(255,255,255,.48); text-transform: none; letter-spacing: 0; }
.jyotish-form .legal-consent { grid-column: 1 / -1; grid-row: 4; margin: -8px 0 0; max-width: 880px; }
.numerology-form .legal-consent input,
.matrix-form .legal-consent input,
.jyotish-form .legal-consent input { width: 16px; min-width: 16px; max-width: 16px; height: 16px; min-height: 16px; padding: 0; margin-top: 1px; background: transparent; border-radius: 3px; }
textarea { resize: vertical; width: 100%; color: white; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); padding: 16px; margin: 18px 0; outline: none; }
textarea:focus { border-color: var(--gold); }
.session-actions { display: flex; justify-content: space-between; align-items: center; }
.text-button { padding: 12px 0; }
.completion { margin-top: 32px; padding: 25px; border: 1px solid rgba(216,184,120,.35); background: rgba(216,184,120,.06); display: grid; grid-template-columns: 35px 1fr; gap: 18px; }
.completion-mark { color: var(--gold); font-size: 22px; }
.completion .eyebrow { margin: 0 0 8px; }
.completion h3 { font-size: 25px; margin: 0 0 10px; }
.completion p:not(.eyebrow) { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.65; }
.completion-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.completion-actions .ghost-button { margin: 0; }
.completion-actions .button { font-size: 11px; padding: 12px 17px; }
.interpretation { margin-top: 32px; padding: clamp(24px,4vw,42px); color: var(--ink); background: var(--cream); border-top: 3px solid var(--gold); }
.interpretation-head { display: grid; grid-template-columns: 35px 1fr; gap: 18px; border-bottom: 1px solid #d8c9bb; padding-bottom: 24px; }
.interpretation .eyebrow { color: var(--wine); margin: 0 0 8px; }
.interpretation h3 { margin: 0; font-size: clamp(26px,3vw,38px); }
.interpretation-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.reading-part { padding: 24px 0; border-bottom: 1px solid #d8c9bb; }
.reading-part h4 { margin: 0 0 10px; color: var(--wine); font-family: Prata,serif; font-size: 17px; font-weight: 400; }
.reading-part p { margin: 0; color: #61555b; font-family: Prata,serif; font-size: 14px; line-height: 1.75; }
.reading-part.recommendation { grid-column: 1 / -1; border: 1px solid #d3b779; padding: 22px; margin-top: 24px; background: rgba(216,184,120,.12); }
.reading-part.recommendation h4 { color: var(--ink); }
.interpretation-note { margin: 26px 0 0; color: #8c7f85; font-size: 10px; line-height: 1.6; }

.numerology { overflow: hidden; background: var(--paper); }
.numerology-intro { display: grid; grid-template-columns: 1.08fr .82fr; gap: 12%; align-items: end; }
.numerology h2 em { color: var(--wine); }
.numerology-lead { color: var(--muted); font-family: Prata,serif; font-size: 16px; line-height: 1.8; }
.numerology-calculator { min-height: 570px; margin-top: 70px; display: grid; grid-template-columns: minmax(290px,.68fr) 1.32fr; color: white; background: var(--plum); position: relative; }
.numerology-form { padding: clamp(30px,4.5vw,62px); border-right: 1px solid rgba(216,184,120,.22); }
.form-number { display: block; margin-bottom: 55px; color: var(--gold); font-family: Prata,serif; font-size: 11px; }
.numerology-form h3 { max-width: 390px; margin: 0 0 18px; font-family: Prata,serif; font-size: clamp(29px,3vw,42px); font-weight: 400; line-height: 1.25; }
.numerology-form > p:not(.eyebrow,.form-error) { max-width: 400px; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.7; }
.numerology-form label { display: block; margin: 34px 0 9px; color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.numerology-form input { width: 100%; max-width: 380px; padding: 15px 16px; color: white; color-scheme: dark; background: rgba(255,255,255,.06); border: 1px solid rgba(216,184,120,.32); outline: none; }
.numerology-form input:focus { border-color: var(--gold); }
.numerology-form .button { margin-top: 20px; }
.form-error { color: #e7a8a8; font-size: 10px; }
.numerology-placeholder { min-height: 570px; display: grid; place-content: center; justify-items: center; position: relative; overflow: hidden; }
.numerology-placeholder:before, .numerology-placeholder:after { content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(216,184,120,.08); border-radius: 50%; }
.numerology-placeholder:after { width: 400px; height: 400px; }
.number-orbit { width: 280px; height: 280px; position: relative; border: 1px solid rgba(216,184,120,.28); border-radius: 50%; animation: slow-spin 40s linear infinite; }
.number-orbit:before { content: "✦"; position: absolute; inset: 50% auto auto 50%; color: var(--gold); font-size: 28px; transform: translate(-50%,-50%); }
.number-orbit span { position: absolute; inset: 50% auto auto 50%; width: 28px; height: 28px; color: var(--gold); display: grid; place-items: center; font-family: Prata,serif; font-size: 13px; transform: rotate(calc((var(--i) - 1) * 40deg)) translateY(-140px) rotate(calc((var(--i) - 1) * -40deg)); }
.number-orbit span:nth-child(1){--i:1}.number-orbit span:nth-child(2){--i:2}.number-orbit span:nth-child(3){--i:3}.number-orbit span:nth-child(4){--i:4}.number-orbit span:nth-child(5){--i:5}.number-orbit span:nth-child(6){--i:6}.number-orbit span:nth-child(7){--i:7}.number-orbit span:nth-child(8){--i:8}.number-orbit span:nth-child(9){--i:9}
.numerology-placeholder > p { margin: 38px 0 5px; color: rgba(255,255,255,.67); font-family: Prata,serif; letter-spacing: .08em; }
.numerology-placeholder small { color: rgba(255,255,255,.3); font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

.numerology-results { padding: clamp(28px,4vw,52px); }
.result-heading { display: flex; justify-content: space-between; align-items: center; }
.result-heading .eyebrow { margin: 0; }
.result-heading .text-button { color: white; }
.core-numbers { margin-top: 36px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(216,184,120,.24); border-bottom: 1px solid rgba(216,184,120,.24); }
.number-result { min-height: 290px; padding: 25px 26px 28px 0; }
.number-result + .number-result { padding-left: 26px; border-left: 1px solid rgba(216,184,120,.2); }
.number-label { color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.number-result strong { display: block; margin: 16px 0 12px; color: var(--gold); font-family: Prata,serif; font-size: 70px; font-weight: 400; line-height: 1; }
.number-result h3 { margin: 0 0 13px; font-family: Prata,serif; font-size: 17px; font-weight: 400; }
.number-result p { margin: 0; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.65; }
.year-reading { margin-top: 34px; display: grid; grid-template-columns: 115px 1fr; gap: 30px; align-items: center; }
.year-number { min-height: 115px; display: grid; place-items: center; border: 1px solid rgba(216,184,120,.35); position: relative; }
.year-number span { position: absolute; top: 8px; left: 9px; color: rgba(255,255,255,.35); font-size: 8px; }
.year-number strong { color: var(--gold); font-family: Prata,serif; font-size: 53px; font-weight: 400; }
.year-reading .eyebrow { margin: 0 0 7px; color: var(--gold); }
.year-reading h3 { margin: 0 0 8px; font-family: Prata,serif; font-size: 22px; font-weight: 400; }
.year-reading p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.65; }
.year-reading .year-note { margin-top: 8px !important; color: rgba(216,184,120,.72) !important; }
.calculation-note { margin: 32px 0 0; color: rgba(255,255,255,.28); font-size: 8px; line-height: 1.6; }

.numerology-depth { margin-top: 52px; display: grid; grid-template-columns: 1.3fr .7fr; }
.matrix-story { min-height: 520px; padding: clamp(30px,5vw,65px); color: white; background: var(--wine); }
.matrix-story .eyebrow { color: var(--gold); }
.matrix-story > h3 { max-width: 700px; margin: 0 0 22px; font-family: Prata,serif; font-size: clamp(30px,3.5vw,48px); font-weight: 400; line-height: 1.25; }
.matrix-story > p:not(.eyebrow,.matrix-caution) { max-width: 720px; color: rgba(255,255,255,.64); font-family: Prata,serif; font-size: 14px; line-height: 1.75; }
.period-layers { margin-top: 42px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.2); }
.period-layers div { padding: 25px 20px 12px 0; }
.period-layers div + div { border-left: 1px solid rgba(255,255,255,.17); padding-left: 20px; }
.period-layers span { color: var(--gold); font-size: 9px; }
.period-layers b { display: block; margin: 12px 0 7px; font-family: Prata,serif; font-size: 16px; font-weight: 400; }
.period-layers p { margin: 0; color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.55; }
.matrix-caution { margin: 34px 0 0; padding: 18px; border: 1px solid rgba(216,184,120,.35); color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.65; }
.full-portrait { padding: clamp(30px,4vw,52px); border: 1px solid #ded3ca; background: var(--cream); }
.full-portrait .form-number { color: var(--wine); margin-bottom: 55px; }
.full-portrait h3 { margin: 0 0 25px; font-family: Prata,serif; font-size: 28px; font-weight: 400; line-height: 1.35; }
.full-portrait ul { margin: 0 0 30px; padding: 0; list-style: none; }
.full-portrait li { position: relative; padding: 11px 0 11px 21px; border-top: 1px solid #d9cbbf; color: var(--muted); font-size: 10px; line-height: 1.5; }
.full-portrait li:before { content: "✦"; position: absolute; left: 0; color: var(--wine); }
.full-portrait .button { width: 100%; font-size: 11px; }
.full-portrait small { display: block; margin-top: 12px; color: #998d91; text-align: center; font-size: 8px; }

.matrix-lab { margin-top: 95px; padding: clamp(35px,6vw,78px); color: white; background: #1d111f; position: relative; overflow: hidden; }
.matrix-lab:before { content: ""; position: absolute; width: 720px; height: 720px; right: -370px; top: -420px; border: 1px solid rgba(216,184,120,.1); border-radius: 50%; pointer-events: none; }
.matrix-lab-head { display: grid; grid-template-columns: 1.15fr .65fr; gap: 12%; align-items: end; position: relative; }
.matrix-lab-head h2 { font-size: clamp(38px,4.5vw,67px); }
.matrix-lab-head > p { margin: 0; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.8; }
.matrix-form { margin-top: 50px; padding: 24px; display: grid; grid-template-columns: 1fr 1fr .7fr auto; gap: 18px; align-items: end; border: 1px solid rgba(216,184,120,.28); background: rgba(255,255,255,.025); position: relative; }
.matrix-form label > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.matrix-form input { width: 100%; min-height: 49px; padding: 12px 14px; color: white; color-scheme: dark; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); outline: none; }
.matrix-form input:focus { border-color: var(--gold); }
.matrix-form .button { grid-column: 4; grid-row: 1; min-height: 49px; white-space: nowrap; }
.matrix-form .form-error { grid-column: 1 / -1; margin: 0; }
.matrix-results { margin-top: 46px; }
.print-report-header { display: none; }
.matrix-summary { padding-bottom: 25px; display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; border-bottom: 1px solid rgba(216,184,120,.22); }
.matrix-personal .eyebrow { margin-bottom: 15px; }
.personal-numbers { display: flex; gap: 25px; flex-wrap: wrap; }
.personal-numbers span { color: rgba(255,255,255,.45); font-size: 10px; }
.personal-numbers b { margin-left: 6px; color: var(--gold); font-family: Prata,serif; font-size: 19px; font-weight: 400; }
.matrix-personal > p:last-child { margin: 14px 0 0; color: rgba(255,255,255,.55); font-size: 10px; }
.matrix-summary .text-button { color: white; }
.report-actions { padding: 22px 0; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; border-bottom: 1px solid rgba(216,184,120,.22); }
.report-actions .button { padding-block: 13px; font-size: 10px; }
.report-secondary { padding: 11px 2px; color: rgba(255,255,255,.65); background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); font-size: 9px; }
.report-secondary:hover { color: white; border-color: var(--gold); }
.matrix-year-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.matrix-year-card { min-height: 360px; padding: 34px; border-bottom: 1px solid rgba(216,184,120,.25); border-left: 1px solid rgba(216,184,120,.19); }
.matrix-year-card:first-child { border-left: 0; }
.matrix-year-card.main { background: rgba(216,184,120,.07); }
.matrix-year-card > span { color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.matrix-year-card strong { display: block; margin: 28px 0 20px; color: var(--gold); font-family: Prata,serif; font-size: 76px; font-weight: 400; line-height: .8; }
.matrix-year-card h3 { margin: 0 0 14px; font-family: Prata,serif; font-size: 22px; font-weight: 400; }
.matrix-year-card p { margin: 0; color: rgba(255,255,255,.49); font-size: 10px; line-height: 1.72; }
.matrix-synthesis { margin-top: 36px; padding: clamp(25px,4vw,44px); color: var(--ink); background: var(--cream); border-top: 3px solid var(--gold); }
.matrix-synthesis .eyebrow { margin-bottom: 12px; }
.matrix-synthesis h3 { margin: 0 0 13px; font-family: Prata,serif; font-size: clamp(25px,3vw,38px); font-weight: 400; }
.matrix-synthesis > p:last-child { max-width: 930px; margin: 0; color: var(--muted); font-family: Prata,serif; font-size: 14px; line-height: 1.8; }
.annual-guidance { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid rgba(216,184,120,.22); }
.annual-guidance article { min-height: 270px; padding: 34px 30px 34px 0; }
.annual-guidance article + article { padding-left: 30px; border-left: 1px solid rgba(216,184,120,.18); }
.annual-guidance span { color: var(--gold); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.annual-guidance h3 { margin: 23px 0 12px; font-family: Prata,serif; font-size: 21px; font-weight: 400; }
.annual-guidance p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; line-height: 1.75; }
.key-periods { margin-top: 42px; padding: 30px; display: grid; grid-template-columns: .65fr 1.35fr; gap: 8%; border: 1px solid rgba(216,184,120,.3); background: rgba(216,184,120,.055); }
.key-periods .eyebrow { margin-bottom: 10px; }
.key-periods h3 { margin: 0; font-family: Prata,serif; font-size: 25px; font-weight: 400; }
#keyPeriodsList { display: grid; gap: 11px; }
.key-period { padding-bottom: 11px; display: grid; grid-template-columns: 78px 1fr; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.11); }
.key-period:last-child { padding-bottom: 0; border-bottom: 0; }
.key-period b { color: var(--gold); font-family: Prata,serif; font-size: 13px; font-weight: 400; }
.key-period p { margin: 0; color: rgba(255,255,255,.52); font-size: 9px; line-height: 1.6; }
.months-heading { margin-top: 55px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.months-heading .eyebrow { margin-bottom: 8px; color: var(--gold); }
.months-heading h3 { margin: 0; font-family: Prata,serif; font-size: 29px; font-weight: 400; }
.months-legend { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.43); font-size: 8px; }
.dot { width: 6px; height: 6px; display: inline-block; margin-right: 5px; border-radius: 50%; }
.dot.soul { background: #c9a7cf; }.dot.karma { background: var(--gold); }.dot.dharma { background: #b5c6a5; }
.months-scroll { margin-top: 22px; overflow-x: auto; scrollbar-color: var(--gold) rgba(255,255,255,.05); }
.months-matrix { width: 100%; min-width: 850px; border-collapse: collapse; }
.months-matrix th, .months-matrix td { width: 7.2%; height: 54px; text-align: center; border: 1px solid rgba(255,255,255,.12); }
.months-matrix th { color: rgba(255,255,255,.38); font-size: 8px; font-weight: 500; text-transform: uppercase; }
.months-matrix tbody th { width: 10%; padding: 0 13px; text-align: left; }
.months-matrix td { font-family: Prata,serif; font-size: 17px; }
#monthsSoul td { color: #d9bce0; background: rgba(201,167,207,.035); }
#monthsKarma td { color: var(--gold); background: rgba(216,184,120,.035); }
#monthsDharma td { color: #c4d5b5; background: rgba(181,198,165,.035); }
.monthly-readings-head { margin-top: 65px; max-width: 760px; }
.monthly-readings-head .eyebrow { margin-bottom: 10px; }
.monthly-readings-head h3 { margin: 0; font-family: Prata,serif; font-size: clamp(28px,3.4vw,44px); font-weight: 400; }
.monthly-readings-head > p:last-child { color: rgba(255,255,255,.46); font-size: 10px; line-height: 1.7; }
.monthly-readings { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.month-reading { padding: 30px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.025); position: relative; }
.month-reading.emphasis { border-color: rgba(216,184,120,.52); background: rgba(216,184,120,.065); }
.month-reading.transformational:before { content: "Трансформационный акцент"; position: absolute; top: 0; right: 0; padding: 6px 9px; color: #28192a; background: var(--gold); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.month-reading-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.month-reading-head h4 { margin: 0; font-family: Prata,serif; font-size: 24px; font-weight: 400; }
.month-code { display: flex; gap: 5px; }
.month-code span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); font-family: Prata,serif; font-size: 12px; }
.month-code span:nth-child(1) { color: #d9bce0; }.month-code span:nth-child(2) { color: var(--gold); }.month-code span:nth-child(3) { color: #c4d5b5; }
.month-focus { margin: 22px 0 15px; color: white; font-family: Prata,serif; font-size: 16px; line-height: 1.55; }
.month-reading > p:not(.month-focus) { margin: 0; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.7; }
.month-details { margin: 20px 0 0; display: grid; gap: 10px; }
.month-detail { padding-top: 10px; display: grid; grid-template-columns: 92px 1fr; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.month-detail b { color: rgba(216,184,120,.8); font-size: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.month-detail p { margin: 0; color: rgba(255,255,255,.47); font-size: 9px; line-height: 1.6; }
.month-recommendation { margin-top: 20px !important; padding: 15px; color: rgba(255,255,255,.72) !important; border-left: 2px solid var(--gold); background: rgba(216,184,120,.07); }
.matrix-footnote { margin: 22px 0 0; color: rgba(255,255,255,.28); font-size: 8px; line-height: 1.65; }

.jyotish { background: #f2e9dc; }
.jyotish-intro { display: grid; grid-template-columns: 1.05fr .85fr; gap: 12%; align-items: end; }
.jyotish-intro h2 em { color: var(--wine); }
.jyotish-intro-copy { color: var(--muted); font-family: Prata,serif; font-size: 15px; line-height: 1.8; }
.jyotish-intro-copy p { margin: 0 0 18px; }
.jyotish-method { padding-left: 18px; color: var(--wine); border-left: 2px solid var(--gold); font-family: Manrope,sans-serif; font-size: 10px; }
.jyotish-lab { margin-top: 75px; padding: clamp(35px,6vw,78px); color: white; background: #1d111f; position: relative; overflow: hidden; }
.jyotish-lab:before { content: ""; position: absolute; width: 660px; height: 660px; right: -330px; top: -390px; border: 1px solid rgba(216,184,120,.12); border-radius: 50%; pointer-events: none; }
.jyotish-lab:after { content: ""; position: absolute; width: 470px; height: 470px; right: -230px; top: -300px; border: 1px solid rgba(216,184,120,.08); border-radius: 50%; pointer-events: none; }
.jyotish-lab-head { display: grid; grid-template-columns: 1.1fr .7fr; gap: 11%; align-items: end; position: relative; z-index: 1; }
.jyotish-lab-head h2 { font-size: clamp(38px,4.5vw,66px); }
.jyotish-lab-head > p { margin: 0; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.8; }
.jyotish-form { margin-top: 48px; padding: 32px 36px; display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; align-items: end; border: 1px solid rgba(216,184,120,.32); border-radius: 12px; background: linear-gradient(135deg,rgba(255,255,255,.035),rgba(255,255,255,.012)); position: relative; z-index: 1; }
.jyotish-form .client-name-field { grid-column: 1 / 5; grid-row: 1; }
.jyotish-form .birth-date-field { grid-column: 5 / 8; grid-row: 1; }
.jyotish-form .birth-time-field { grid-column: 8 / 10; grid-row: 1; }
.jyotish-form .timezone-field { grid-column: 10 / 13; grid-row: 1; }
.jyotish-form .place-field { grid-column: 1 / 10; grid-row: 2; }
.jyotish-form label > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.jyotish-form input, .jyotish-form select { width: 100%; min-height: 58px; padding: 14px 18px; color: white; color-scheme: dark; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.2); border-radius: 7px; outline: none; font: inherit; font-size: 13px; transition: border-color .2s, background .2s, box-shadow .2s; }
.jyotish-form input:focus, .jyotish-form select:focus { border-color: var(--gold); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(216,184,120,.08); }
.jyotish-form input[readonly] { color: var(--gold); background: rgba(216,184,120,.065); cursor: default; }
.place-hint { display: block; margin-top: 7px; color: rgba(255,255,255,.34); font-size: 8px; line-height: 1.5; }
.place-hint.found { color: var(--gold); }
.jyotish-form .button { grid-column: 10 / 13; grid-row: 2; min-height: 58px; width: 100%; white-space: nowrap; font-size: 13px; }
.jyotish-form .form-error { grid-column: 1 / -1; grid-row: 5; margin: 0; }
.jyotish-privacy { grid-column: 1 / 13; grid-row: 3; margin: 0; color: rgba(255,255,255,.32); font-size: 8px; line-height: 1.65; }
.jyotish-results { margin-top: 48px; position: relative; z-index: 1; }
.jyotish-report-head { padding-bottom: 24px; display: flex; justify-content: space-between; gap: 25px; align-items: flex-start; border-bottom: 1px solid rgba(216,184,120,.22); }
.jyotish-report-head h3 { margin: 0 0 13px; font-family: Prata,serif; font-size: clamp(28px,3.4vw,46px); font-weight: 400; }
.jyotish-report-head > div > p:last-child { margin: 0; color: rgba(255,255,255,.45); font-size: 10px; }
.jyotish-report-head .text-button { color: white; }
.calculation-status { margin: 34px 0; padding: 24px; display: flex; gap: 20px; align-items: center; border: 1px solid rgba(216,184,120,.28); background: rgba(216,184,120,.07); }
.status-orbit { width: 50px; height: 50px; flex: 0 0 auto; display: grid; place-items: center; color: var(--gold); border: 1px solid rgba(216,184,120,.42); border-radius: 50%; }
.calculation-status b { color: var(--gold); font-family: Prata,serif; font-size: 17px; font-weight: 400; }
.calculation-status p { margin: 7px 0 0; color: rgba(255,255,255,.5); font-size: 10px; line-height: 1.7; }
.calculated-facts { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 7px; }
.calculated-facts span { padding: 7px 10px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); font-size: 9px; }
.rashi-preview { padding: clamp(25px,4vw,42px); display: grid; grid-template-columns: .65fr 1fr; gap: 8%; align-items: center; border: 1px solid rgba(216,184,120,.24); }
.rashi-copy h3 { margin: 0 0 18px; font-family: Prata,serif; font-size: clamp(25px,3vw,38px); font-weight: 400; }
.rashi-copy > p:last-child { color: rgba(255,255,255,.44); font-size: 10px; line-height: 1.75; }
.north-chart { width: min(100%,580px); aspect-ratio: 1; justify-self: end; filter: drop-shadow(0 0 16px rgba(216,184,120,.08)); }
.north-chart svg { width: 100%; height: 100%; display: block; }
.chart-line { fill: none; stroke: rgba(229,197,132,.82); stroke-width: 1.8; }
.chart-aspect-line { fill: none; stroke: rgba(214,211,218,.22); stroke-width: .9; stroke-dasharray: 5 8; marker-end: url(#aspectArrow); }
.chart-aspect-opposition { stroke: rgba(214,211,218,.13); stroke-width: .75; stroke-dasharray: 3 10; }
.chart-aspect-special { stroke: rgba(214,211,218,.25); }
.chart-aspect-arrow { fill: none; stroke: rgba(214,211,218,.32); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.chart-house-number { fill: rgba(229,197,132,.9); font: 600 15px Manrope,sans-serif; text-anchor: middle; }
.chart-planets { fill: rgba(255,255,255,.94); font: 15px Prata,serif; text-anchor: middle; }
.chart-asc { fill: var(--gold); font-weight: 600; }
.jyotish-technique-notes:empty { display: none; }
.jyotish-technique-notes { margin: -1px 0 36px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(216,184,120,.2); background: rgba(255,255,255,.025); }
.jyotish-technique-notes article { min-height: 120px; padding: 20px 22px; }
.jyotish-technique-notes article + article { border-left: 1px solid rgba(216,184,120,.16); }
.jyotish-technique-notes span { display: block; margin-bottom: 14px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.jyotish-technique-notes b { display: block; color: #f7efe6; font-family: Prata,serif; font-size: 17px; font-weight: 400; line-height: 1.45; }
.aspect-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.aspect-chips i, .aspect-chips em { padding: 6px 9px; color: #f7efe6; background: rgba(255,255,255,.055); border: 1px solid rgba(216,184,120,.18); border-radius: 999px; font-style: normal; font-size: 10px; line-height: 1; white-space: nowrap; }
.jyotish-technique-notes p { margin: 12px 0 0; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.65; }
.jyotish-levels { display: grid; grid-template-columns: .82fr 1.18fr; }
.jyotish-level { min-height: 480px; padding: clamp(28px,4vw,45px); border: 1px solid rgba(255,255,255,.13); }
.jyotish-level + .jyotish-level { border-left: 0; }
.jyotish-level > span { color: var(--gold); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.jyotish-level h3 { margin: 20px 0 30px; font-family: Prata,serif; font-size: clamp(25px,3vw,38px); font-weight: 400; }
.jyotish-level ul { margin: 0; padding: 0; list-style: none; }
.jyotish-level li { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); }
.jyotish-level b, .paid-topics b { display: block; font-family: Prata,serif; font-size: 15px; font-weight: 400; }
.jyotish-level small, .paid-topics small { display: block; margin-top: 5px; color: rgba(255,255,255,.43); font-size: 9px; line-height: 1.5; }
.jyotish-level > p { color: rgba(255,255,255,.46); font-size: 10px; line-height: 1.7; }
.jyotish-level.free { background: rgba(255,255,255,.025); }
.jyotish-level.paid { background: var(--wine); border-color: var(--wine); }
.paid-topics { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.14); }
.paid-topics > div { min-height: 100px; padding: 17px; background: var(--wine); }
.jyotish-level .paid-note { margin-top: 25px; color: rgba(255,255,255,.62); }
.free-portrait { padding: clamp(28px,4vw,48px); color: var(--ink); background: var(--cream); border-top: 3px solid var(--gold); }
.free-portrait-head { display: grid; grid-template-columns: 1fr .75fr; gap: 10%; align-items: end; }
.free-portrait-head span { color: var(--wine); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.free-portrait-head h3 { margin: 18px 0 0; font-family: Prata,serif; font-size: clamp(27px,3.5vw,43px); font-weight: 400; }
.free-portrait-head > p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.75; }
.portrait-parts { margin-top: 38px; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #d8c9bb; border-left: 1px solid #d8c9bb; }
.portrait-parts > div { min-height: 135px; padding: 25px; border-right: 1px solid #d8c9bb; border-bottom: 1px solid #d8c9bb; }
.portrait-parts b { display: block; margin-bottom: 10px; color: var(--wine); font-family: Prata,serif; font-size: 17px; font-weight: 400; }
.portrait-parts small { color: var(--muted); font-size: 12px; line-height: 1.78; }
.portrait-recommendations { margin-top: 35px; padding: 28px; background: white; border-left: 3px solid var(--gold); }
.portrait-recommendations .eyebrow { margin-bottom: 10px; }
.portrait-recommendations h4 { margin: 0 0 12px; font-family: Prata,serif; font-size: clamp(20px,2.4vw,29px); font-weight: 400; }
.portrait-recommendations > p:last-child { max-width: 850px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.recommendation-grid { margin-top: 25px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #e0d4c8; border-left: 1px solid #e0d4c8; }
.recommendation-grid article { min-height: 240px; padding: 25px; background: var(--paper); border-right: 1px solid #e0d4c8; border-bottom: 1px solid #e0d4c8; }
.recommendation-grid span { display: block; margin-bottom: 24px; color: var(--wine); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.recommendation-grid b { display: block; margin-bottom: 12px; font-family: Prata,serif; font-size: 16px; font-weight: 400; line-height: 1.45; }
.recommendation-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.deep-directions { margin-top: 38px; }
.deep-directions-head { display: grid; grid-template-columns: 1fr 1.1fr .85fr; gap: 6%; align-items: end; margin-bottom: 28px; }
.deep-directions-head .eyebrow { margin: 0; }
.deep-directions-head h3 { margin: 0; font-family: Prata,serif; font-size: clamp(26px,3vw,38px); font-weight: 400; }
.deep-directions-head > p:last-child { margin: 0; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.7; }
.direction-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.direction-grid article { min-height: 520px; padding: 30px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.14); transition: background .2s, border-color .2s; }
.direction-grid article:hover { background: rgba(255,255,255,.025); border-color: rgba(216,184,120,.34); }
.direction-grid article + article { border-left: 0; }
.direction-grid span { color: var(--gold); font-size: 9px; }
.direction-grid h4 { margin: 38px 0 24px; font-family: Prata,serif; font-size: 23px; font-weight: 400; line-height: 1.35; }
.direction-grid p { margin: 0 0 20px; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.75; }
.direction-grid p b { display: block; margin-bottom: 6px; color: rgba(255,255,255,.88); font-size: 8px; font-family: Manrope,sans-serif; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.direction-grid .direction-result { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.direction-grid .direction-format { margin-top: auto; margin-bottom: 16px; color: rgba(216,184,120,.7); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.direction-grid a { margin-top: 0; padding-top: 18px; color: var(--gold); font-size: 10px; border-top: 1px solid rgba(216,184,120,.22); }
.deep-format { margin: 20px 0 0; color: rgba(255,255,255,.35); font-size: 9px; text-align: center; }
.jyotish-principle { margin-top: 35px; padding: clamp(28px,4vw,45px); color: var(--ink); background: var(--cream); border-top: 3px solid var(--gold); }
.jyotish-principle h3 { margin: 0 0 15px; font-family: Prata,serif; font-size: clamp(25px,3vw,38px); font-weight: 400; }
.jyotish-principle > p:last-child { max-width: 960px; margin: 0; color: var(--muted); font-family: Prata,serif; font-size: 14px; line-height: 1.8; }

.services-head { display: grid; grid-template-columns: 1.2fr .7fr; gap: 10%; align-items: end; }
.services-head > p { color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 60px; }
.service { min-height: 340px; border: 1px solid #ded3ca; padding: 30px; display: flex; flex-direction: column; }
.service + .service { border-left: 0; }
.service > p { margin-top: auto; color: var(--wine); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.service h3 { font-family: Prata,serif; font-weight: 400; font-size: 25px; line-height: 1.4; margin: 8px 0 32px; }
.service a { font-size: 12px; border-bottom: 1px solid #cfc0b4; padding-bottom: 8px; align-self: flex-start; }
.service.featured { background: var(--wine); color: white; border-color: var(--wine); }
.service.featured > span, .service.featured > p { color: var(--gold); }

footer { background: #1b101c; color: white; padding: 38px clamp(22px,7vw,112px) 22px; display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 34px; align-items: center; }
footer p { color: rgba(255,255,255,.36); font-size: 10px; }
.footer-brand p { margin: 10px 0 0 29px; color: rgba(255,255,255,.22); font-size: 9px; }
.footer-contact { text-align: center; }
.footer-contact p { margin: 0 0 12px; }
.contact-links { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; }
.contact-links a { padding: 9px 13px; color: white; border: 1px solid rgba(255,255,255,.2); font-size: 10px; }
.contact-links a:hover { color: var(--gold); border-color: var(--gold); }
.legal-links { margin-top: 14px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.legal-links button { padding: 0; color: rgba(255,255,255,.38); background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 9px; cursor: pointer; }
.legal-links button:hover { color: var(--gold); border-color: var(--gold); }
.footer-legal-info { justify-self: end; max-width: 360px; text-align: right; }
.footer-legal-info p { margin: 0 0 5px; color: rgba(255,255,255,.28); font-size: 9px; line-height: 1.5; }
.footer-legal-info b { color: rgba(255,255,255,.5); font-weight: 500; }
.footer-legal-info a { color: rgba(255,255,255,.34); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-legal-info a:hover { color: var(--gold); border-color: var(--gold); }
.footer-disclaimer { grid-column: 1 / -1; justify-self: center; max-width: 980px; margin-top: 18px; color: rgba(255,255,255,.16); font-size: 8px; line-height: 1.5; text-align: center; }
.contact-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.contact-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(20,10,20,.78); border: 0; }
.contact-modal-card { position: relative; z-index: 1; width: min(460px,100%); padding: clamp(28px,5vw,45px); background: var(--cream); color: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.35); }
.contact-modal-card h3 { margin: 12px 40px 10px 0; font-family: Prata,serif; font-size: clamp(25px,4vw,35px); font-weight: 400; }
.contact-modal-card > p:not(.eyebrow) { color: var(--muted); font-size: 11px; line-height: 1.6; }
.contact-modal-close { position: absolute; top: 18px; right: 18px; width: 35px; height: 35px; color: var(--muted); background: transparent; border: 1px solid #d7c9bd; border-radius: 50%; font-size: 19px; }
.contact-modal-links { display: grid; gap: 9px; margin: 24px 0 15px; }
.contact-modal-links a { display: flex; justify-content: space-between; padding: 14px 16px; color: white; background: var(--wine); font-size: 11px; }
.contact-modal-links a:hover { background: #653b4f; }
.contact-modal-links .contact-max { color: #28192a; background: var(--gold); }
.contact-modal-links .contact-max:hover { background: #e8cb91; }
.contact-modal-card small { color: #93868c; font-size: 9px; }
.legal-modal { position: fixed; inset: 0; z-index: 1010; display: grid; place-items: center; padding: 20px; }
.legal-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(20,10,20,.78); border: 0; }
.legal-modal-card { position: relative; z-index: 1; width: min(760px,100%); max-height: min(82vh,760px); overflow: auto; padding: clamp(26px,5vw,46px); background: var(--cream); color: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.35); }
.legal-modal-card h3 { margin: 12px 44px 18px 0; font-family: Prata,serif; font-size: clamp(25px,4vw,36px); font-weight: 400; }
.legal-modal-close { position: absolute; top: 18px; right: 18px; width: 35px; height: 35px; color: var(--muted); background: transparent; border: 1px solid #d7c9bd; border-radius: 50%; font-size: 19px; }
.legal-modal-content { color: #61555b; font-size: 11px; line-height: 1.7; }
.legal-modal-content h4 { margin: 24px 0 8px; color: var(--wine); font-family: Prata,serif; font-size: 17px; font-weight: 400; }
.legal-modal-content p { margin: 0 0 10px; }
.legal-modal-content ul { margin: 0 0 12px; padding-left: 18px; }
.legal-modal-content li { margin: 4px 0; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .nav nav {
    display: none; position: absolute; z-index: 1; top: 100%; left: 0; right: 0;
    padding: 18px 22px 24px; flex-direction: column; gap: 0;
    color: rgba(255,255,255,.82); background: #1b101c;
    border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 18px 35px rgba(0,0,0,.28);
  }
  .nav nav.open { display: flex; }
  .nav nav a { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-visual { width: min(80vw,430px); margin: 65px auto 0; justify-self: center; }
  .about-grid, .practice-heading, .services-head, .jyotish-intro, .jyotish-lab-head, .free-portrait-head, .deep-directions-head, .rashi-preview, .jyotish-technique-notes { grid-template-columns: 1fr; gap: 20px; }
  .north-chart { justify-self: center; }
  .jyotish-technique-notes { gap: 0; }
  .jyotish-technique-notes article + article { border-left: 0; border-top: 1px solid rgba(216,184,120,.16); }
  .numerology-intro { grid-template-columns: 1fr; gap: 22px; }
  .numerology-calculator { grid-template-columns: 1fr; }
  .numerology-form { border-right: 0; border-bottom: 1px solid rgba(216,184,120,.22); }
  .numerology-depth { grid-template-columns: 1fr; }
  .matrix-lab-head { grid-template-columns: 1fr; gap: 20px; }
  .matrix-form { grid-template-columns: 1fr 1fr; }
  .matrix-form .legal-consent, .matrix-form .button { grid-column: 1 / -1; grid-row: auto; }
  .jyotish-form { grid-template-columns: 1fr 1fr; }
  .jyotish-form .client-name-field, .jyotish-form .birth-date-field, .jyotish-form .birth-time-field, .jyotish-form .timezone-field { grid-column: auto; }
  .jyotish-form .place-field { grid-column: 1 / -1; grid-row: auto; }
  .jyotish-form .legal-consent, .jyotish-form .button { grid-column: 1 / -1; grid-row: auto; }
  .jyotish-privacy { grid-column: 1 / -1; grid-row: auto; }
  .direction-grid { grid-template-columns: repeat(2,1fr); }
  .direction-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); }
  .direction-grid article:nth-child(n+3) { border-top: 0; }
  .annual-guidance { grid-template-columns: 1fr; }
  .annual-guidance article { min-height: 0; padding: 28px 0; }
  .annual-guidance article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(216,184,120,.18); }
  .key-periods { grid-template-columns: 1fr; gap: 25px; }
  .cards { grid-template-columns: repeat(5,1fr); }
  .free-reading { grid-template-columns: 190px 1fr; }
  .deep-offer { grid-column: 1 / -1; }
  .session { grid-template-columns: 190px 1fr; gap: 35px; padding: 35px; }
}
@media (max-width: 620px) {
  .nav { height: 68px; }.nav-cta { display: none; }
  .hero { min-height: auto; padding-bottom: 90px; }
  h1 { font-size: clamp(36px,11.5vw,43px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-visual { width: min(86vw,390px); margin-top: 45px; }
  .floating-note { position: static; margin-top: 12px; padding: 14px 16px; }
  .section { padding-top: 75px; padding-bottom: 75px; }
  .principles, .service-grid { grid-template-columns: 1fr; }
  .principles article + article { border-left: 0; border-top: 1px solid #ded3ca; padding-left: 0; }
  .service + .service { border-left: 1px solid #ded3ca; border-top: 0; }
  .numerology-placeholder { min-height: 450px; }
  .core-numbers { grid-template-columns: 1fr; }
  .number-result { min-height: 0; padding: 24px 0; }
  .number-result + .number-result { padding-left: 0; border-left: 0; border-top: 1px solid rgba(216,184,120,.2); }
  .number-result strong { font-size: 55px; }
  .year-reading { grid-template-columns: 85px 1fr; gap: 18px; }
  .year-number { min-height: 85px; }
  .period-layers { grid-template-columns: 1fr; }
  .period-layers div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.17); padding-left: 0; }
  .matrix-lab { margin-inline: -22px; padding-inline: 22px; }
  .jyotish-lab { margin-inline: -22px; padding-inline: 22px; }
  .matrix-form { grid-template-columns: 1fr; padding: 18px; }
  .jyotish-form { grid-template-columns: 1fr; padding: 18px; }
  .jyotish-form .client-name-field, .jyotish-form .birth-date-field, .jyotish-form .birth-time-field, .jyotish-form .timezone-field,
  .jyotish-form .place-field, .jyotish-form .button, .jyotish-form .legal-consent, .jyotish-privacy { grid-column: auto; grid-row: auto; }
  .jyotish-levels { grid-template-columns: 1fr; }
  .jyotish-level { min-height: 0; }
  .jyotish-level + .jyotish-level { border-left: 1px solid rgba(255,255,255,.13); border-top: 0; }
  .paid-topics { grid-template-columns: 1fr; }
  .portrait-parts, .direction-grid, .recommendation-grid { grid-template-columns: 1fr; }
  .direction-grid article + article, .direction-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); border-top: 0; }
  .jyotish-report-head { display: block; }
  .jyotish-report-head .text-button { margin-top: 20px; }
  .matrix-form .legal-consent, .matrix-form .button { grid-column: auto; grid-row: auto; }
  .matrix-year-grid { grid-template-columns: 1fr; }
  .matrix-year-card { min-height: 0; border-left: 0; }
  .matrix-year-card + .matrix-year-card { border-top: 1px solid rgba(216,184,120,.18); }
  .matrix-year-card strong { font-size: 58px; }
  .months-heading { align-items: flex-start; flex-direction: column; }
  .monthly-readings { grid-template-columns: 1fr; }
  .month-reading { padding: 24px 20px; }
  .report-actions { align-items: flex-start; flex-direction: column; }
  .cards { grid-template-columns: repeat(5,1fr); gap: 7px; }
  .cards-stage { padding: 18px 10px; }
  .free-reading { grid-template-columns: 1fr; padding: 24px; }
  .free-card-column { width: 180px; margin: auto; }
  .free-next-step { align-items: flex-start; flex-direction: column; padding: 18px; }
  .free-reading-cta { width: 100%; min-width: 0; }
  .deep-offer { grid-column: auto; grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .deep-paths { grid-column: auto; grid-row: auto; grid-template-columns: 1fr; }
  .session { grid-template-columns: 1fr; padding: 24px; }
  .session-card { max-width: 180px; margin: auto; }
  .completion-actions { align-items: flex-start; flex-direction: column; }
  .interpretation-body { grid-template-columns: 1fr; }
  .reading-part.recommendation { grid-column: auto; }
  footer { text-align: center; grid-template-columns: 1fr; gap: 16px; }
  .footer-brand p { margin-left: 0; }
  .footer-legal-info { justify-self: center; text-align: center; }
  .footer-disclaimer { margin-top: 4px; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  html, body { width: auto; color: #2e202a; background: white; font-family: Arial, sans-serif; }
  .nav, .hero, .about, .practice, .services, footer,
  .numerology > .section-label, .numerology-intro, .numerology-calculator,
  .numerology-depth, .matrix-lab-head, .matrix-form, .report-actions,
  .matrix-summary .text-button { display: none !important; }
  .section, .numerology, .matrix-lab { margin: 0; padding: 0; overflow: visible; background: white; }
  .matrix-lab:before { display: none; }
  .matrix-results { display: block !important; margin: 0; color: #2e202a; }
  .print-report-header { margin-bottom: 10mm; padding-bottom: 6mm; display: flex; gap: 4mm; align-items: flex-start; border-bottom: 1px solid #cdbb9b; }
  .print-report-header .logo-mark { color: #8a5369; font-size: 20pt; }
  .print-report-header p { margin: 0 0 2mm; color: #8a5369; font-size: 7pt; letter-spacing: .12em; text-transform: uppercase; }
  .print-report-header h1 { margin: 0; color: #2e202a; font-family: Georgia,serif; font-size: 23pt; font-weight: 400; }
  .print-report-header > div > span { color: #756b70; font-size: 8pt; }
  .matrix-summary { margin-bottom: 6mm; padding-bottom: 4mm; color: #2e202a; border-color: #d8c9bb; }
  .matrix-personal .eyebrow, .matrix-synthesis .eyebrow, .months-heading .eyebrow, .monthly-readings-head .eyebrow, .key-periods .eyebrow { color: #8a5369; }
  .personal-numbers span, .matrix-personal > p:last-child { color: #60565b; }
  .personal-numbers b { color: #8a5369; }
  .matrix-year-grid { break-inside: avoid; border: 1px solid #d8c9bb; }
  .matrix-year-card, .matrix-year-card.main { min-height: 0; padding: 6mm; color: #2e202a; background: white; border-color: #d8c9bb; }
  .matrix-year-card > span { color: #8a7d83; }
  .matrix-year-card strong { margin: 5mm 0 3mm; color: #8a5369; font-size: 36pt; }
  .matrix-year-card h3 { font-size: 12pt; }
  .matrix-year-card p, .annual-guidance p, .key-period p, .monthly-readings-head > p:last-child,
  .month-reading > p:not(.month-focus), .month-detail p { color: #62585d; }
  .matrix-synthesis { margin-top: 6mm; padding: 7mm; color: #2e202a; background: #f7f0e7; border-color: #b99453; break-inside: avoid; }
  .matrix-synthesis > p:last-child { color: #62585d; font-size: 9pt; }
  .annual-guidance { color: #2e202a; border-color: #d8c9bb; break-inside: avoid; }
  .annual-guidance article { min-height: 0; padding: 6mm 5mm 6mm 0; }
  .annual-guidance article + article { padding-left: 5mm; border-color: #d8c9bb; }
  .annual-guidance span { color: #8a5369; }
  .annual-guidance h3 { margin: 4mm 0 2mm; font-size: 12pt; }
  .key-periods { margin-top: 6mm; padding: 6mm; color: #2e202a; background: #faf6ef; border-color: #d8c9bb; break-inside: avoid; }
  .key-periods h3 { font-size: 14pt; }
  .key-period { border-color: #ddd1c6; }
  .key-period b { color: #8a5369; }
  .months-heading { margin-top: 10mm; color: #2e202a; }
  .months-legend { color: #756b70; }
  .months-scroll { overflow: visible; }
  .months-matrix { min-width: 0; color: #2e202a; break-inside: avoid; }
  .months-matrix th, .months-matrix td { height: 9mm; border-color: #d8c9bb; }
  .months-matrix th { color: #6c6066; }
  #monthsSoul td, #monthsKarma td, #monthsDharma td { color: #493d43; background: white; }
  .monthly-readings-head { margin-top: 12mm; color: #2e202a; break-after: avoid; }
  .monthly-readings { grid-template-columns: 1fr; gap: 5mm; }
  .month-reading, .month-reading.emphasis { padding: 7mm; color: #2e202a; background: white; border-color: #d8c9bb; break-inside: avoid; }
  .month-reading.transformational:before { color: white; background: #8a5369; }
  .month-reading-head h4, .month-focus { color: #2e202a; }
  .month-code span { color: #8a5369 !important; border-color: #cdbfb4; }
  .month-detail { border-color: #ddd1c6; }
  .month-detail b { color: #8a5369; }
  .month-recommendation { color: #493d43 !important; background: #f7f0e7; border-color: #b99453; }
  .matrix-footnote { color: #867b80; font-size: 6.5pt; }
}
