:root {
  --ink: #090908;
  --ink-soft: #11110f;
  --paper: #f0eadf;
  --paper-soft: #cfc6b7;
  --gold: #c6a35d;
  --gold-light: #e6cc91;
  --midnight: #101727;
  --plum: #4b263f;
  --rose: #b7837d;
  --ivory: #f3eee7;
  --line: rgba(198, 163, 93, 0.26);
  --white-line: rgba(240, 234, 223, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  z-index: 20;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: .6rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  height: 94px;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.site-header.is-scrolled {
  background: rgba(9, 9, 8, .93);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.brand {
  display: inline-flex;
  position: relative;
  align-items: center;
  text-decoration: none;
  padding-top: 1.1rem;
  color: var(--gold-light);
}
.brand-word {
  font-family: var(--serif);
  font-size: 3.45rem;
  font-style: italic;
  font-weight: 600;
  line-height: .72;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.brand-orbit {
  position: absolute;
  top: -.45rem;
  left: 50%;
  width: 6.3rem;
  height: 2.1rem;
  overflow: visible;
  transform: translateX(-50%);
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: .9;
}
.brand-orbit .brand-star { fill: var(--gold-light); stroke: none; }
.brand-orbit circle { fill: var(--gold-light); stroke: none; opacity: .75; }
.site-nav { display: flex; align-items: center; gap: 2.1rem; }
.site-nav a {
  text-decoration: none;
  color: var(--paper-soft);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-light); }
.site-nav .nav-cta {
  border: 1px solid var(--line);
  padding: .75rem 1.1rem;
  color: var(--gold-light);
}
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 132px clamp(1.25rem, 7vw, 7.5rem) 72px;
  position: relative;
  overflow: hidden;
}
.celestial-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .34;
  z-index: 0;
}
.celestial-dots circle { fill: var(--gold-light); }
.celestial-stars path {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.2;
  stroke-linecap: round;
}
.celestial-crescent {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.25;
}
.crescent-two { opacity: .55; }
.hero-copy,
.hero-art,
.hero-note { position: relative; z-index: 1; }
.hero::after {
  content: "";
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: .4;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
  font-weight: 600;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { margin: 0; max-width: 13ch; font-size: clamp(3.3rem, 6.4vw, 7.1rem); letter-spacing: -.045em; }
h1 em { color: var(--gold-light); font-weight: 500; }
.hero-intro { max-width: 600px; margin: 2rem 0; color: var(--paper-soft); font-size: clamp(1rem, 1.25vw, 1.14rem); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.button {
  border: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.4rem;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #11100d; }
.button-primary:hover { background: var(--gold-light); }
.text-link { text-underline-offset: .4rem; color: var(--paper-soft); font-size: .82rem; }
.text-link span { color: var(--gold); margin-left: .3rem; }
.hero-art { display: grid; place-items: center; min-width: 0; position: relative; }
.hero-portrait {
  width: min(43vw, 620px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(230,204,145,.28);
  box-shadow: 0 32px 100px rgba(0,0,0,.4);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8,8,10,.78));
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-portrait figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1.2rem, 3vw, 2.5rem);
  right: clamp(1.2rem, 3vw, 2.5rem);
  bottom: 1.7rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.1;
}
.chart-wheel {
  width: min(21vw, 260px);
  aspect-ratio: 1;
  position: absolute;
  right: -4%;
  top: 4%;
  padding: .8rem;
  border-radius: 50%;
  background: rgba(9,9,8,.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.chart-wheel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,163,93,.14), rgba(198,163,93,0) 68%);
  filter: blur(20px);
}
.chart-wheel svg { width: 100%; height: 100%; overflow: visible; position: relative; }
.wheel-orbit,
.wheel-core,
.wheel-spokes line {
  fill: none;
  stroke: rgba(198,163,93,.36);
  stroke-width: .8;
}
.wheel-orbit-strong { stroke: rgba(230,204,145,.72); stroke-width: 1.2; }
.wheel-core { stroke: rgba(198,163,93,.5); }
.zodiac-glyphs text {
  fill: #e6c77e;
  color: #e6c77e;
  font-family: "Times New Roman", "DejaVu Sans", serif;
  font-size: 31px;
  font-variant-emoji: text;
  text-anchor: middle;
  dominant-baseline: middle;
}
.house-numbers text {
  fill: #8e8578;
  font-family: var(--serif);
  font-size: 13px;
  text-anchor: middle;
  dominant-baseline: middle;
}
.wheel-center-title {
  fill: var(--gold-light);
  font-family: "Palace Script MT", "Parisienne", cursive;
  font-size: 37px;
  font-weight: 400;
  letter-spacing: 0;
  text-anchor: middle;
  dominant-baseline: middle;
}
.hero-note { position: absolute; bottom: 2rem; right: 7vw; margin: 0; color: #8c8579; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.vision { background: var(--ivory); color: #17151b; padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7.5rem); scroll-margin-top: 94px; }
.vision-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .58fr); gap: 2rem 5rem; align-items: end; margin-bottom: 4rem; }
.vision-intro .eyebrow { grid-column: 1 / -1; color: #875f77; margin-bottom: 0; }
.vision-intro h2 { margin: 0; font-size: clamp(3rem, 6vw, 6.4rem); letter-spacing: -.045em; }
.vision-intro h2 em { color: var(--plum); font-weight: 500; }
.vision-intro > p:last-child { margin: 0; color: #5f5860; }
.editorial-cards { display: grid; grid-template-columns: repeat(3, 1fr); }
.editorial-card { min-height: 420px; padding: clamp(1.6rem, 3.3vw, 3.2rem); display: flex; flex-direction: column; justify-content: flex-end; color: var(--ivory); }
.editorial-card span { margin-bottom: auto; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; opacity: .75; }
.editorial-card h3 { max-width: 8ch; margin: 0 0 1.3rem; font-size: clamp(2.1rem, 3vw, 3.5rem); }
.editorial-card p { max-width: 34ch; margin: 0; color: rgba(243,238,231,.76); font-size: .9rem; }
.card-plum { background: var(--plum); }
.card-blue { background: var(--midnight); transform: translateY(2rem); }
.card-rose { background: var(--rose); color: #251a1d; }
.card-rose p { color: rgba(37,26,29,.72); }
.about {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7.5rem);
  background: var(--midnight);
  color: var(--ivory);
  scroll-margin-top: 94px;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -16rem;
  top: -17rem;
  border: 1px solid rgba(198,163,93,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(198,163,93,.025), 0 0 0 8rem rgba(198,163,93,.018);
}
.about-top { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: end; }
.about-heading { position: relative; max-width: 1000px; }
.about-heading h2 { margin: 0; font-size: clamp(3.1rem, 6vw, 6.5rem); letter-spacing: -.045em; }
.about-heading h2 em { color: var(--rose); font-weight: 500; }
.about-portrait { width: clamp(250px, 27vw, 420px); margin: 0 0 .5rem; position: relative; z-index: 1; }
.about-portrait img { width: 100%; height: auto; aspect-ratio: 900 / 1160; display: block; object-fit: contain; filter: saturate(.9) contrast(.99) drop-shadow(0 22px 30px rgba(0,0,0,.2)); }
.about-portrait figcaption { margin-top: .6rem; color: #8f8e98; font-size: .64rem; text-align: right; text-transform: uppercase; letter-spacing: .12em; }
.about-story { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .65fr); gap: clamp(3rem, 8vw, 8rem); margin: clamp(3rem, 6vw, 6rem) 0; align-items: start; }
.about-copy { max-width: 760px; }
.about-copy p { color: #aaa9b2; }
.about-copy .about-lead { color: var(--ivory); font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 2.2rem); line-height: 1.18; margin-top: 0; }
.about-story blockquote { margin: 0; padding: 1.7rem 0 1.7rem 1.8rem; border-left: 1px solid var(--gold); }
.about-story blockquote span { color: var(--gold); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; }
.about-story blockquote p { margin: .8rem 0 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.12; font-style: italic; }
.about-manifesto {
  position: relative;
  margin: 0 0 clamp(3rem, 6vw, 5.5rem);
  padding: clamp(2.4rem, 5vw, 4.8rem) clamp(1.4rem, 5vw, 5rem);
  overflow: hidden;
  background: linear-gradient(112deg, var(--plum), #713f5a 52%, var(--rose));
  color: var(--ivory);
}
.about-manifesto::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 150%;
  right: -12%;
  top: -82%;
  border: 1px solid rgba(243,238,231,.28);
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: 0 0 0 2.5rem rgba(243,238,231,.025), 0 0 0 5rem rgba(243,238,231,.018);
}
.about-manifesto span { position: relative; z-index: 1; color: var(--gold-light); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; }
.about-manifesto p { position: relative; z-index: 1; max-width: 16ch; margin: .8rem 0 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.8vw, 6.2rem); line-height: .94; letter-spacing: -.04em; }
.about-process { position: relative; margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(230,204,145,.2); border-bottom: 1px solid rgba(230,204,145,.2); }
.about-process li { padding: 2rem clamp(1rem, 2vw, 2rem) 2.4rem; border-right: 1px solid rgba(230,204,145,.2); }
.about-process li:first-child { padding-left: 0; }
.about-process li:last-child { border-right: 0; }
.about-process span { color: var(--gold); font-family: var(--serif); }
.about-process h3 { margin: 2rem 0 .8rem; font-size: 1.65rem; }
.about-process p { margin: 0; color: #9998a2; font-size: .82rem; }
.reports { background: #ddd3dd; color: #151410; padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 7vw, 7.5rem); }
.collection-banner { margin: 0 0 1.6rem; padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; gap: 2rem; background: var(--plum); color: var(--ivory); }
.collection-banner p { margin: 0; font-family: var(--serif); font-size: 1.45rem; }
.collection-banner span { align-self: center; color: rgba(243,238,231,.68); font-size: .78rem; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, .55fr); gap: 3rem; align-items: end; margin-bottom: 4rem; }
.section-heading h2, .method-contact h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); letter-spacing: -.035em; margin: 0; }
.section-heading > p { margin: 0; color: #625d53; max-width: 460px; }
.report-explorer { display: grid; grid-template-columns: minmax(290px, .84fr) minmax(360px, 1.16fr); border: 1px solid rgba(28,25,19,.15); min-height: 590px; }
.report-list { display: flex; flex-direction: column; border-right: 1px solid rgba(28,25,19,.15); }
.report-tab {
  flex: 1;
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(28,25,19,.13);
  background: transparent;
  color: #1d1b16;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem clamp(1rem, 2vw, 1.8rem);
  transition: background .2s, color .2s;
}
.report-tab:last-child { border-bottom: 0; }
.report-tab:hover { background: rgba(198,163,93,.09); }
.report-tab.is-active { background: var(--midnight); color: var(--paper); }
.report-tab .report-number { font-family: var(--serif); color: #9a7840; }
.report-tab strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.45rem; line-height: 1.1; }
.report-tab small { display: block; margin-top: .35rem; color: #787167; font-size: .75rem; }
.report-tab.is-active small { color: #9e968a; }
.tab-arrow { color: var(--gold); font-size: 1.1rem; transform: translateX(-5px); opacity: 0; transition: .2s; }
.report-tab.is-active .tab-arrow { opacity: 1; transform: translateX(0); }
.report-detail { background: #f7f2eb; padding: clamp(2rem, 4.5vw, 4.8rem); display: flex; flex-direction: column; border-top: 7px solid var(--rose); }
.detail-topline { display: flex; justify-content: space-between; gap: 1rem; color: #786f63; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.detail-tag { color: #8c6b34; }
.report-detail h3 { font-size: clamp(2.8rem, 5vw, 4.9rem); margin: 2.5rem 0 1.3rem; }
.detail-description { color: #575147; max-width: 680px; margin: 0 0 2rem; }
.includes-label, .price-label { margin: 0 0 .8rem; font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: #8b7d68; }
.includes-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; }
.includes-list li { padding-left: 1.25rem; position: relative; font-size: .84rem; color: #37332c; }
.includes-list li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); position: absolute; left: 0; top: .6rem; }
.detail-footer { margin-top: auto; padding-top: 2.4rem; border-top: 1px solid rgba(28,25,19,.12); display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; }
.detail-price { display: block; font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.price-tools { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; margin-top: 1.2rem; }
.price-tools p { margin: 0; font-size: .72rem; color: #736b5f; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #ad8747; margin-right: .4rem; }
.quiet-button { border: 0; border-bottom: 1px solid currentColor; background: none; padding: .25rem 0; cursor: pointer; color: inherit; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.extras-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(28,25,19,.16); border-bottom: 1px solid rgba(28,25,19,.16); }
.extras-grid article { padding: 1.6rem clamp(1rem, 2vw, 2rem); border-right: 1px solid rgba(28,25,19,.16); display: flex; flex-direction: column; }
.extras-grid article:first-child { padding-left: 0; }
.extras-grid article:last-child { border-right: 0; }
.extras-grid span { color: #7c6675; font-size: .64rem; text-transform: uppercase; letter-spacing: .14em; }
.extras-grid h3 { margin: .7rem 0 1.5rem; font-size: 1.35rem; line-height: 1.08; }
.extras-grid strong { font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.extra-link { width: fit-content; margin-top: 1.4rem; color: #5f4556; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-underline-offset: .35rem; }

.monthly-content { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7.5rem); background: var(--plum); color: var(--ivory); }
.monthly-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .58fr); gap: 1rem 5rem; align-items: end; margin-bottom: 4rem; }
.monthly-heading .eyebrow { grid-column: 1 / -1; color: var(--gold-light); }
.monthly-heading h2 { margin: 0; max-width: 13ch; font-size: clamp(3rem, 5.8vw, 6rem); letter-spacing: -.045em; }
.monthly-heading > p:last-child { margin: 0; color: rgba(243,238,231,.72); }
.monthly-paths { display: grid; grid-template-columns: 1fr 1fr; }
.monthly-paths article { min-height: 470px; padding: clamp(2rem, 4.5vw, 4.5rem); }
.monthly-paths article > span { font-size: .67rem; text-transform: uppercase; letter-spacing: .18em; }
.monthly-paths h3 { margin: 2rem 0; max-width: 9ch; font-size: clamp(2.4rem, 4vw, 4.4rem); }
.personal-path { background: var(--midnight); }
.personal-path > span { color: var(--gold); }
.personal-path ul { margin: 0; padding: 0; list-style: none; }
.personal-path li { padding: .75rem 0; border-top: 1px solid rgba(243,238,231,.12); color: #abaab3; font-size: .86rem; }
.path-status { margin: 2rem 0 0; color: var(--gold-light); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.general-path { background: var(--rose); color: #251a1d; }
.general-path > span { color: #654253; }
.general-path p { max-width: 42ch; color: rgba(37,26,29,.72); }
.general-note { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(37,26,29,.28); font-family: var(--serif); font-size: 1.25rem; font-style: italic; }
.sign-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin: clamp(4rem, 7vw, 7rem) 0 2rem; }
.sign-heading .eyebrow { margin: 0 0 .35rem; }
.sign-heading h3 { margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); }
.sign-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(243,238,231,.2); border-left: 1px solid rgba(243,238,231,.2); }
.sign-card { min-height: 365px; padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; position: relative; overflow: hidden; text-decoration: none; border-right: 1px solid rgba(243,238,231,.2); border-bottom: 1px solid rgba(243,238,231,.2); transition: transform .2s, background .2s, color .2s; }
.sign-card:hover, .sign-card:focus-visible { transform: translateY(-5px); background: var(--ivory); color: #18151b; outline: none; }
.sign-card span { position: absolute; top: 1rem; right: 1.15rem; z-index: 1; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.5rem; }
.sign-card img { width: 100%; height: 230px; margin: -.25rem auto .3rem; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(0,0,0,.14)); transition: transform .35s ease, filter .35s ease; }
.sign-card:hover img, .sign-card:focus-visible img { transform: scale(1.045); filter: drop-shadow(0 12px 22px rgba(93,64,34,.16)); }
.sign-card strong { font-family: var(--serif); font-size: clamp(1.8rem, 2.4vw, 2.8rem); font-weight: 500; }
.sign-card small { margin-top: .35rem; color: rgba(243,238,231,.56); text-transform: uppercase; letter-spacing: .14em; }
.sign-card:hover small, .sign-card:focus-visible small { color: #746b72; }
.sign-card.fire { background: rgba(183,131,125,.16); }
.sign-card.earth { background: rgba(198,163,93,.10); }
.sign-card.air { background: rgba(89,108,151,.16); }
.sign-card.water { background: rgba(45,103,114,.16); }

.horoscope-detail-page { background: var(--midnight); color: var(--ivory); }
.horoscope-header { min-height: 106px; padding: 0 clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(230,204,145,.18); }
.back-link { color: #aaa8b2; font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; text-underline-offset: .3rem; }
.horoscope-reading { min-height: 100vh; }
.reading-hero { min-height: 530px; padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 9vw, 9rem); display: grid; grid-template-columns: minmax(180px, .48fr) 1fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); background: radial-gradient(circle at 18% 48%, rgba(183,131,125,.2), transparent 28%), linear-gradient(120deg, var(--midnight), #1b2031); border-bottom: 1px solid rgba(230,204,145,.18); }
.reading-art { min-width: 0; position: relative; display: grid; place-items: center; }
.reading-illustration { width: min(100%, 520px); height: auto; object-fit: contain; filter: drop-shadow(0 22px 36px rgba(0,0,0,.24)); }
.reading-symbol { position: absolute; right: 3%; bottom: 3%; display: grid; place-items: center; width: 3.7rem; aspect-ratio: 1; border: 1px solid rgba(230,204,145,.42); border-radius: 50%; background: rgba(16,23,39,.74); color: var(--gold-light); font-family: Georgia, serif; font-size: 1.85rem; line-height: 1; backdrop-filter: blur(8px); }
.reading-hero h1 { max-width: none; font-size: clamp(5rem, 13vw, 12rem); text-transform: uppercase; }
.reading-element { color: var(--rose); text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; }
.reading-copy { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 14vw, 14rem); background: var(--ivory); color: #1b1820; }
.reading-status { color: #8a6178; font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; }
.reading-copy h2, .other-signs h2 { margin: 1rem 0 1.5rem; font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.04em; }
.reading-copy > p:not(.reading-status) { max-width: 720px; color: #655d65; font-size: 1.05rem; }
.weekly-reading { max-width: 1080px; margin: clamp(3rem, 6vw, 5.5rem) auto 0; }
.weekly-opening { max-width: 790px; }
.weekly-opening > p, .weekly-section-copy > p, .weekly-highlight p, .cosmos-key > p { color: #514a52; font-size: 1rem; line-height: 1.78; }
.weekly-question { margin: 2.5rem 0 0; padding: 1.8rem 0 1.8rem 1.7rem; border-left: 2px solid var(--rose); font-family: var(--serif); font-size: clamp(1.55rem, 2.6vw, 2.25rem) !important; line-height: 1.2 !important; color: #2b222a !important; }
.weekly-question span, .cosmos-question span { display: block; margin-bottom: .7rem; color: #8a6178; font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.weekly-section { display: grid; grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); padding: clamp(3.5rem, 7vw, 6rem) 0; border-top: 1px solid rgba(28,25,19,.16); }
.weekly-section:first-of-type { margin-top: clamp(4rem, 7vw, 6rem); }
.weekly-section-label { position: sticky; top: 7rem; align-self: start; }
.weekly-section-label > span { display: block; margin-bottom: 1rem; color: #9a6e7f; font-family: var(--serif); font-size: 2.2rem; }
.weekly-section-label p { max-width: 9ch; margin: 0; color: #2d242d; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1; }
.weekly-section-copy { max-width: 720px; }
.weekly-section-copy p:first-child { margin-top: 0; }
.weekly-emphasis { margin: 2rem 0; color: var(--plum) !important; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.5rem) !important; font-style: italic; line-height: 1.15 !important; }
.weekly-highlight { display: grid; grid-template-columns: minmax(220px, .75fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); margin: 1rem 0 clamp(4rem, 7vw, 6rem); padding: clamp(2.5rem, 5vw, 4.5rem); background: var(--midnight); color: var(--ivory); }
.weekly-highlight-symbol { display: block; margin-bottom: 1.6rem; color: var(--gold-light); font-family: var(--serif); font-size: 3rem; }
.weekly-highlight .eyebrow { margin: 0 0 1rem; color: var(--gold-light); }
.weekly-highlight h3 { margin: 0; color: var(--ivory); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.02; }
.weekly-highlight p { color: rgba(243,238,231,.76); }
.weekly-highlight .weekly-emphasis { color: var(--gold-light) !important; }
.cosmos-key { padding: clamp(2.7rem, 6vw, 5rem); background: linear-gradient(125deg, #6f425b, var(--rose)); color: var(--ivory); }
.cosmos-key .eyebrow { margin-top: 0; color: #f1d9a5; }
.cosmos-key blockquote { max-width: 850px; margin: 1.4rem 0 2rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.06; }
.cosmos-key > p { max-width: 720px; color: rgba(255,255,255,.8); }
.cosmos-question { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.25); }
.cosmos-question span { color: #f1d9a5; }
.cosmos-question strong { display: block; max-width: 780px; font-family: var(--serif); font-size: clamp(1.55rem, 2.8vw, 2.4rem); line-height: 1.2; }
.reading-note { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(28,25,19,.16); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.reading-note p { max-width: 680px; color: #655d65; font-size: .84rem; }
.other-signs { padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7.5rem); background: var(--plum); }
.compact-sign-grid { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 3rem; border-top: 1px solid rgba(243,238,231,.2); border-left: 1px solid rgba(243,238,231,.2); }
.compact-sign-grid a { min-height: 120px; padding: 1rem; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; border-right: 1px solid rgba(243,238,231,.2); border-bottom: 1px solid rgba(243,238,231,.2); }
.compact-sign-grid a:hover, .compact-sign-grid a:focus-visible, .compact-sign-grid a.is-current { background: var(--ivory); color: #201922; outline: none; }
.compact-sign-grid span { color: var(--gold-light); font-size: 1.45rem; }
.compact-sign-grid strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.compact-sign-grid a:hover span, .compact-sign-grid a:focus-visible span, .compact-sign-grid a.is-current span { color: #936c38; }

.method-contact { display: grid; grid-template-columns: 1.04fr .96fr; scroll-margin-top: 94px; }
.method-panel, .contact-panel { padding: clamp(5rem, 8vw, 8.5rem) clamp(1.25rem, 5.5vw, 6rem); }
.method-panel {
  background-color: #11110f;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(230,204,145,.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 13%, rgba(230,204,145,.18) 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 72%, rgba(230,204,145,.22) 0 1px, transparent 1.5px),
    radial-gradient(circle at 18% 84%, rgba(230,204,145,.16) 0 1px, transparent 1.5px);
}
.method-lead { color: var(--paper-soft); max-width: 610px; margin: 1.6rem 0 3rem; }
.method-list { margin: 0; }
.method-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--white-line); }
.method-list dt { color: var(--gold); font-family: var(--serif); }
.method-list dd { margin: 0; }
.method-list strong, .method-list span { display: block; }
.method-list strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.method-list span { color: #989085; font-size: .8rem; margin-top: .2rem; }
.ethics-note { margin-top: 2rem; border-left: 2px solid var(--gold); padding: .2rem 0 .2rem 1.2rem; }
.ethics-note span { color: var(--gold); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.ethics-note p { color: #958c80; font-size: .75rem; margin: .3rem 0 0; max-width: 520px; }
.contact-panel { background: var(--gold); color: #181610; }
.contact-panel .eyebrow { color: #544328; }
.contact-panel h2 { margin: 0; }
.contact-actions { display: grid; gap: 1rem; margin-top: 2rem; max-width: 36rem; }
.contact-email { color: #181610; width: fit-content; }
.contact-intro { max-width: 520px; margin: 1.3rem 0 2.6rem; color: #51442f; }
#request-form label { display: block; margin-bottom: 1.2rem; }
#request-form label > span { display: block; margin-bottom: .45rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24,22,16,.48);
  border-radius: 0;
  background: transparent;
  color: #181610;
  padding: .72rem 0;
  outline: 0;
}
input:focus, select:focus, textarea:focus { border-color: #000; box-shadow: 0 2px 0 #000; }
textarea { resize: vertical; min-height: 100px; }
textarea::placeholder { color: rgba(24,22,16,.58); }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: .7rem; align-items: start; }
.consent input { width: 16px; height: 16px; margin-top: .2rem; accent-color: #191710; }
.consent span { text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; color: #56482f; }
.consent a { color: inherit; text-underline-offset: .2rem; }
.button-full { width: 100%; background: #15130f; color: var(--paper); }
.button-full:hover { background: #000; }
.form-note { font-size: .66rem; color: #665334; margin: .8rem 0 0; }
.form-success { margin-top: 3rem; padding: 2rem; border: 1px solid rgba(24,22,16,.4); }
.form-success h3 { font-size: 2rem; margin: .8rem 0; }
.success-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #191710; transform: rotate(45deg); }
.success-mark::first-letter { transform: rotate(-45deg); }

footer { min-height: 120px; padding: 2.2rem clamp(1.25rem, 5vw, 5rem); display: flex; justify-content: space-between; align-items: center; gap: 2rem; color: #8e867a; border-top: 1px solid var(--line); }
footer p { margin: 0; font-size: .7rem; }
.footer-brand { color: var(--gold-light); transform: scale(.78); transform-origin: left center; }
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1.1rem; }
.legal-links a { color: #9a9185; font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; text-underline-offset: .25rem; }
.legal-links a:hover, .legal-links a:focus-visible { color: var(--gold-light); }

dialog { width: min(640px, calc(100% - 2rem)); max-height: 88vh; border: 1px solid var(--line); padding: 0; background: #161512; color: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.65); }
dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.dialog-shell { padding: clamp(1.5rem, 4vw, 3rem); }
.dialog-heading { display: flex; justify-content: space-between; align-items: start; }
.dialog-heading h2 { font-family: var(--serif); font-size: 3rem; margin: 0; }
.dialog-close { background: none; border: 0; color: var(--paper); font-size: 2rem; cursor: pointer; }
.dialog-intro { color: #a49b8f; font-size: .8rem; }
.price-fields { margin: 2rem 0; display: grid; gap: .8rem; }
.price-field { display: grid; grid-template-columns: 1fr 120px; align-items: center; gap: 1rem; }
.price-field label { font-family: var(--serif); font-size: 1.25rem; }
.price-field input { color: var(--paper); border-color: var(--white-line); text-align: right; }
.dialog-actions { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-copy { z-index: 1; }
  .hero-art { position: relative; right: auto; top: auto; opacity: 1; width: 100%; justify-self: end; }
  .hero-portrait { width: min(78vw, 620px); justify-self: end; aspect-ratio: 5 / 4; }
  .chart-wheel { width: min(28vw, 220px); right: -1rem; top: -2rem; }
  .hero-note { display: none; }
  .vision-intro { grid-template-columns: 1fr; }
  .vision-intro .eyebrow { grid-column: auto; }
  .editorial-cards { grid-template-columns: 1fr 1fr; }
  .editorial-card:last-child { grid-column: 1 / -1; min-height: 320px; }
  .about-story { grid-template-columns: 1fr; }
  .about-process { grid-template-columns: 1fr 1fr; }
  .about-process li:nth-child(2) { border-right: 0; }
  .about-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(230,204,145,.2); }
  .about-process li:first-child { padding-left: clamp(1rem, 2vw, 2rem); }
  .report-explorer { grid-template-columns: 1fr; }
  .report-list { border-right: 0; border-bottom: 1px solid rgba(28,25,19,.15); }
  .report-tab { min-height: 92px; }
  .report-detail { min-height: 580px; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .extras-grid article:nth-child(even) { border-right: 0; }
  .extras-grid article:nth-child(-n+4) { border-bottom: 1px solid rgba(28,25,19,.16); }
  .extras-grid article:last-child { grid-column: 1 / -1; border-right: 0; }
  .extras-grid article:first-child { padding-left: clamp(1rem, 2vw, 2rem); }
  .monthly-heading { grid-template-columns: 1fr; }
  .monthly-heading .eyebrow { grid-column: auto; }
  .sign-grid { grid-template-columns: repeat(3, 1fr); }
  .compact-sign-grid { grid-template-columns: repeat(4, 1fr); }
  .method-contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { height: 80px; padding-inline: 1.2rem; }
  .brand-word { font-size: 2.85rem; }
  .brand-orbit { width: 5.3rem; top: -.3rem; }
  .menu-toggle { display: grid; gap: 7px; padding: .7rem .25rem; background: none; border: 0; position: relative; z-index: 2; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; background: var(--gold-light); transition: .2s; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(9,9,8,.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 2rem; text-transform: none; letter-spacing: 0; }
  .site-nav .nav-cta { font-family: var(--sans); font-size: .73rem; text-transform: uppercase; letter-spacing: .12em; }
  .hero { min-height: 0; padding: 110px 1.25rem 70px; align-items: start; }
  h1 { font-size: clamp(3.35rem, 16vw, 5.2rem); }
  .hero-intro { margin: 1.6rem 0; }
  .hero-art { right: auto; top: auto; opacity: 1; margin-top: 1.3rem; }
  .celestial-decor { opacity: .27; }
  .hero-portrait { width: 100%; aspect-ratio: 4 / 5; }
  .chart-wheel { width: 42vw; right: -1rem; top: -2rem; }
  .vision { padding-top: 4.5rem; }
  .vision-intro { margin-bottom: 2.5rem; }
  .editorial-cards { grid-template-columns: 1fr; gap: 0; }
  .editorial-card, .editorial-card:last-child { grid-column: auto; min-height: 330px; }
  .card-blue { transform: none; }
  .about { padding-top: 4.5rem; }
  .about-top { grid-template-columns: 1fr; }
  .about-portrait { width: min(100%, 320px); margin: .5rem auto 0; }
  .about-story { margin: 2.6rem 0 3.5rem; }
  .about-process { grid-template-columns: 1fr; }
  .about-process li { border-right: 0; border-bottom: 1px solid rgba(230,204,145,.2); padding: 1.7rem 0; }
  .about-process li:first-child { padding-left: 0; }
  .about-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(230,204,145,.2); }
  .about-process li:last-child { border-bottom: 0; }
  .about-process h3 { margin-top: .8rem; }
  .collection-banner { flex-direction: column; gap: .25rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 2.4rem; }
  .report-explorer { min-height: 0; }
  .report-tab { min-height: 80px; }
  .report-tab strong { font-size: 1.25rem; }
  .report-detail { min-height: 600px; padding: 2rem 1.25rem; }
  .detail-topline { flex-direction: column; }
  .report-detail h3 { margin-top: 1.8rem; }
  .includes-list { grid-template-columns: 1fr; }
  .detail-footer { align-items: stretch; flex-direction: column; }
  .detail-footer .button { width: 100%; }
  .price-tools { justify-content: space-between; }
  .extras-grid { grid-template-columns: 1fr; }
  .extras-grid article { border-right: 0; border-bottom: 1px solid rgba(28,25,19,.16); padding: 1.4rem 0; }
  .extras-grid article:first-child { padding-left: 0; }
  .extras-grid article:nth-child(-n+4) { border-bottom: 1px solid rgba(28,25,19,.16); }
  .extras-grid article:last-child { grid-column: auto; }
  .extras-grid article:last-child { border-bottom: 0; }
  .extras-grid h3 { margin-bottom: .7rem; }
  .monthly-content { padding: 4.5rem 1.25rem; }
  .monthly-heading { margin-bottom: 2.5rem; }
  .monthly-paths { grid-template-columns: 1fr; }
  .monthly-paths article { min-height: 0; padding: 2.3rem 1.4rem; }
  .sign-heading { display: block; }
  .sign-grid { grid-template-columns: 1fr 1fr; }
  .sign-card { min-height: 260px; padding: .9rem 1rem 1.1rem; }
  .sign-card span { top: .8rem; right: .85rem; font-size: 1.25rem; }
  .sign-card img { height: 150px; margin-bottom: .15rem; }
  .horoscope-header { min-height: 92px; }
  .horoscope-header .brand-word { font-size: 2.5rem; }
  .back-link { max-width: 9rem; text-align: right; }
  .reading-hero { min-height: 520px; grid-template-columns: 1fr; align-content: center; gap: 2rem; }
  .reading-art { max-width: 360px; }
  .reading-symbol { width: 3.2rem; font-size: 1.55rem; }
  .reading-hero h1 { font-size: clamp(4.2rem, 20vw, 7rem); }
  .reading-hero h1.long-sign { font-size: clamp(3.15rem, 14vw, 5.5rem); letter-spacing: -.055em; }
  .reading-note { align-items: stretch; flex-direction: column; }
  .weekly-reading { margin-top: 3.5rem; }
  .weekly-section { grid-template-columns: 1fr; gap: 1.8rem; padding: 3.5rem 0; }
  .weekly-section-label { position: static; }
  .weekly-section-label p { max-width: none; }
  .weekly-highlight { grid-template-columns: 1fr; padding: 2.2rem 1.4rem; }
  .cosmos-key { padding: 2.5rem 1.4rem; }
  .compact-sign-grid { grid-template-columns: repeat(2, 1fr); }
  .method-panel, .contact-panel { padding: 5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { flex-direction: column; align-items: flex-start; }
  .price-field { grid-template-columns: 1fr 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
