:root {
  --ink: #070913;
  --ink-soft: #0d1221;
  --ink-raised: #12192b;
  --night-blue: #111d38;
  --gold: #d6b36a;
  --gold-bright: #f3dda2;
  --gold-deep: #8c6a31;
  --moon: #edf1f7;
  --silver: #aeb9cc;
  --mist: #cbd2df;
  --muted: #8994a8;
  --line: rgba(214, 179, 106, 0.22);
  --line-soft: rgba(216, 225, 239, 0.12);
  --fire: #cf6e4f;
  --earth: #8fa479;
  --air: #9eb9cf;
  --water: #667fb6;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: min(1160px, calc(100vw - 40px));
  --reading: min(760px, calc(100vw - 40px));
  --header-h: 76px;
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--mist);
  background:
    radial-gradient(circle at 50% -20%, rgba(56, 81, 130, .24), transparent 43rem),
    linear-gradient(180deg, #070913 0%, #090d18 45%, #070913 100%);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: .28;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.75) 0 1px, transparent 1.3px),
    radial-gradient(circle at 72% 24%, rgba(255,255,255,.45) 0 1px, transparent 1.3px),
    radial-gradient(circle at 33% 70%, rgba(255,255,255,.5) 0 1px, transparent 1.3px),
    radial-gradient(circle at 91% 64%, rgba(255,255,255,.32) 0 1px, transparent 1.3px);
  background-size: 280px 280px, 360px 360px, 430px 430px, 520px 520px;
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--gold-bright); text-underline-offset: .2em; }
a:hover { color: #fff1c5; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--moon);
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(3.2rem, 8vw, 7.6rem); }
h2 { font-size: clamp(2.4rem, 5.8vw, 5.4rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2.1rem); line-height: 1.06; }
p { margin: 0 0 1.2em; }

::selection { color: var(--ink); background: var(--gold-bright); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 6px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(214, 179, 106, .09);
  background: linear-gradient(180deg, rgba(7, 9, 19, .9), rgba(7, 9, 19, .62));
  backdrop-filter: blur(16px) saturate(130%);
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--content);
  min-height: var(--header-h);
  margin: 0 auto;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--moon);
  text-decoration: none;
}

.site-brand__mark {
  color: var(--gold);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 12px rgba(214, 179, 106, .45));
}

.site-brand__name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.site-brand__name span { color: var(--gold); }

.site-nav { justify-self: end; }
.site-nav__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: clamp(18px, 2.5vw, 36px);
  list-style: none;
}

.site-nav a {
  position: relative;
  color: var(--mist);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: right .25s var(--ease), left .25s var(--ease);
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after { right: 0; left: 0; }

.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.sound-toggle,
.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  color: var(--mist);
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  cursor: pointer;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sound-toggle[aria-pressed="true"] {
  color: var(--gold-bright);
  border-color: var(--gold-deep);
  box-shadow: 0 0 28px rgba(214, 179, 106, .12);
}

.menu-toggle { display: none; padding: 12px; }
.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .2s ease;
}

main { display: block; }
.astrolog-front main { padding-top: 0; }
.site-main { width: var(--content); min-height: 70vh; margin: 0 auto; padding: calc(var(--header-h) + 72px) 0 120px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  gap: 10px;
  color: #18130a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(115, 81, 27, .23);
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.button:hover,
.wp-element-button:hover {
  color: #18130a;
  transform: translateY(-2px);
  box-shadow: 0 22px 65px rgba(148, 104, 33, .3);
}

.button--ghost {
  color: var(--moon);
  background: rgba(255,255,255,.03);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost:hover { color: var(--gold-bright); background: rgba(214,179,106,.06); }
.text-link { font-weight: 700; letter-spacing: .02em; text-decoration: none; }
.text-link span { display: inline-block; margin-left: .35em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.front-section {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) 0;
}

.front-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-intro { max-width: 790px; margin-bottom: clamp(46px, 7vw, 84px); }
.section-intro > p:not(.eyebrow) { max-width: 620px; color: var(--silver); font-size: 1.08rem; }

.tool-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tool-path {
  position: relative;
  min-height: 320px;
  padding: clamp(30px, 5vw, 64px);
  color: var(--mist);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(214,179,106,.08), transparent 11rem),
    linear-gradient(145deg, rgba(255,255,255,.026), transparent 60%);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .25s ease, background .35s ease;
}

.tool-path::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(214,179,106,.025), 0 0 0 48px rgba(214,179,106,.016);
  transition: transform .5s var(--ease);
}

.tool-path:hover {
  color: var(--moon);
  background:
    radial-gradient(circle at 82% 20%, rgba(214,179,106,.14), transparent 12rem),
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 70%);
}
.tool-path:hover::after { transform: scale(1.14) rotate(12deg); }
.tool-path--wide { grid-column: 1 / -1; min-height: 260px; }
.tool-path h3 { max-width: 380px; margin-top: 70px; }
.tool-path p { max-width: 420px; color: var(--muted); }
.tool-path__glyph { position: absolute; top: 34px; right: 38px; color: var(--gold); font-size: 3rem; opacity: .9; }
.tool-path__number { color: var(--gold-deep); font-size: .75rem; font-weight: 800; letter-spacing: .2em; }

.sign-orbit {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.sign-orbit a {
  display: flex;
  min-height: 126px;
  padding: 22px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--mist);
  background: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .25s ease;
}

.sign-orbit a span { color: var(--gold); font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.sign-orbit a:hover { color: var(--moon); background: #141b2d; }
.sign-orbit__after { margin: 32px 0 0; text-align: right; }

.method-statement {
  display: grid;
  grid-template-columns: minmax(160px, .5fr) minmax(0, 1.5fr);
  align-items: center;
  min-height: 520px;
  padding: clamp(38px, 7vw, 92px);
  gap: clamp(34px, 6vw, 90px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(214,179,106,.13), transparent 18rem),
    linear-gradient(120deg, rgba(17,29,56,.84), rgba(10,13,24,.8));
  border: 1px solid var(--line);
  border-radius: 28px;
}

.method-statement__mark {
  display: grid;
  width: clamp(130px, 20vw, 240px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(214,179,106,.035), 0 0 80px rgba(214,179,106,.12);
  font-size: clamp(3rem, 7vw, 6rem);
}

.method-statement p:not(.eyebrow) { max-width: 660px; color: var(--silver); }

.content-hero {
  max-width: 880px;
  margin: 0 auto clamp(54px, 8vw, 94px);
  padding-bottom: clamp(42px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.content-hero h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
.magic-visual {
  --magic-x: 0;
  --magic-y: 0;
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto clamp(58px, 8vw, 110px);
  perspective: 1100px;
}
.magic-visual__depth {
  position: relative;
  min-height: clamp(300px, 52vw, 620px);
  overflow: hidden;
  background: #080b14;
  border: 1px solid var(--line);
  border-radius: clamp(18px, 3vw, 34px);
  box-shadow: 0 40px 110px rgba(0,0,0,.56), inset 0 0 0 1px rgba(255,255,255,.025);
  transform: rotateX(calc(var(--magic-y) * -1.4deg)) rotateY(calc(var(--magic-x) * 1.8deg));
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
}
.magic-visual__depth::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, rgba(7,9,19,.4), transparent 45%, rgba(214,179,106,.07));
  box-shadow: inset 0 -70px 100px rgba(4,5,10,.48);
}
.magic-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.045) translate(calc(var(--magic-x) * -8px), calc(var(--magic-y) * -8px));
  transition: transform .8s var(--ease);
}
.magic-visual__orbit {
  position: absolute;
  z-index: 2;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(243,221,162,.35);
  border-radius: 50%;
  filter: drop-shadow(0 0 13px rgba(214,179,106,.22));
  transform: translateZ(45px) rotate(18deg);
  animation: magic-orbit 22s linear infinite;
}
.magic-visual__orbit--one { top: -22%; right: -9%; }
.magic-visual__orbit--two { bottom: -34%; left: -8%; width: 36%; animation-direction: reverse; animation-duration: 32s; }
.magic-visual__star {
  position: absolute;
  z-index: 3;
  top: 16%;
  left: 11%;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 17px var(--gold));
  transform: translateZ(75px);
  animation: magic-pulse 4s ease-in-out infinite;
}
.entry-content { width: var(--reading); margin: 0 auto; }
.entry-content > * + * { margin-top: 1.35em; }
.entry-content h2, .entry-content h3 { margin-top: 1.4em; }
.entry-content h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.entry-content h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.entry-content p, .entry-content li { color: var(--silver); }
.entry-content strong { color: var(--moon); }
.entry-content blockquote {
  margin: 2.4em 0;
  padding: 1.2em 0 1.2em 1.5em;
  color: var(--gold-bright);
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.content-wide {
  position: relative;
  left: 50%;
  width: min(1100px, calc(100vw - 40px));
  margin-left: -50vw;
  transform: translateX(calc(50vw - 50%));
}
.astro-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block: 54px;
  gap: 18px;
}
.astro-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.astro-card {
  position: relative;
  min-height: 240px;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  color: var(--silver);
  background: radial-gradient(circle at 100% 0, rgba(214,179,106,.09), transparent 14rem), linear-gradient(145deg, rgba(18,25,43,.96), rgba(8,11,20,.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 65px rgba(0,0,0,.24);
}
.astro-card::after {
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 130px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(214,179,106,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(214,179,106,.025), 0 0 0 36px rgba(214,179,106,.014);
}
.astro-card h2, .astro-card h3 { position: relative; z-index: 1; margin-top: 0; }
.astro-card p { position: relative; z-index: 1; }
.astro-card__glyph { display: block; margin-bottom: 34px; color: var(--gold); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.astro-card__meta { color: var(--gold); font-size: .7rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.astro-card a::after { content: " →"; }
.astro-fact {
  margin-block: 42px;
  padding: 26px 30px;
  color: var(--moon);
  background: rgba(214,179,106,.06);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 4px 14px 14px 4px;
}
.astro-table { width: 100%; margin: 42px 0; border-collapse: collapse; }
.astro-table th, .astro-table td { padding: 15px 13px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.astro-table th { color: var(--gold); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

.front-section--atlas { width: min(1320px, calc(100vw - 24px)); }
.magic-story {
  --magic-x: 0;
  --magic-y: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 670px;
  overflow: hidden;
  background: #090d18;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 45px 120px rgba(0,0,0,.48);
}
.magic-story__image {
  position: relative;
  min-height: 540px;
  background-position: 62% center;
  background-size: cover;
  transform: scale(1.035) translate(calc(var(--magic-x) * -7px), calc(var(--magic-y) * -6px));
  transition: transform .8s var(--ease);
}
.magic-story__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 55%, #090d18), linear-gradient(0deg, rgba(7,9,19,.3), transparent 50%); }
.magic-story__image--architecture { background-image: url("../images/magic/celestial-architecture.webp"); }
.magic-story__planet {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 18%;
  width: 70px;
  aspect-ratio: 1;
  border: 1px solid rgba(243,221,162,.55);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(214,179,106,.28), inset -15px -12px 25px rgba(0,0,0,.5);
  animation: magic-float 7s ease-in-out infinite;
}
.magic-story__copy { align-self: center; padding: clamp(38px, 6vw, 86px); }
.magic-story__copy h2 { font-size: clamp(2.7rem, 5vw, 5.1rem); }
.magic-story__copy > p:not(.eyebrow) { color: var(--silver); }

.portal {
  background-image:
    linear-gradient(90deg, rgba(6,8,19,.98) 0%, rgba(6,8,19,.9) 36%, rgba(6,8,19,.42) 68%, rgba(6,8,19,.7) 100%),
    url("../images/magic/astrolabium-hero.webp") !important;
  background-position: center, center;
  background-size: cover;
}
.portal .sky-instrument { filter: drop-shadow(0 30px 65px rgba(0,0,0,.45)); }

.will-reveal { opacity: 0; transform: translateY(28px); }
.is-revealed { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

@keyframes magic-orbit { to { transform: translateZ(45px) rotate(378deg); } }
@keyframes magic-pulse { 50% { opacity: .45; transform: translateZ(75px) scale(.72) rotate(45deg); } }
@keyframes magic-float { 50% { transform: translate3d(8px, -13px, 0); } }

.archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.archive-entry { min-height: 260px; padding: 42px; background: var(--ink-soft); }
.archive-entry h2 { font-size: 2rem; }
.archive-entry h2 a { color: var(--moon); text-decoration: none; }
.archive-entry p { color: var(--muted); }

.error-page { display: flex; max-width: 860px; flex-direction: column; justify-content: center; }
.error-page h1 { font-size: clamp(3rem, 7vw, 6rem); }
.error-page p:not(.eyebrow) { max-width: 620px; }

.site-footer {
  position: relative;
  width: var(--content);
  margin: 80px auto 0;
  padding: 90px 0 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.site-footer__orbit {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 50px rgba(214,179,106,.018), 0 0 0 100px rgba(214,179,106,.012);
}
.site-footer__inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 50px; }
.site-brand--footer { margin-bottom: 18px; }
.site-footer__inner p { max-width: 460px; color: var(--muted); }
.site-footer__links { display: flex; margin: 0; padding: 0; flex-wrap: wrap; gap: 12px 24px; list-style: none; }
.site-footer__links a { color: var(--mist); font-size: .9rem; text-decoration: none; }
.site-footer__links--fallback { margin-top: 12px; }
.site-footer__legal { position: relative; display: flex; margin-top: 70px; padding-top: 24px; justify-content: space-between; gap: 30px; color: var(--muted); border-top: 1px solid var(--line-soft); font-size: .75rem; }
.site-footer__legal p { margin: 0; }

.astrolog-birth-page .site-main { min-height: 0; padding-bottom: 48px; }
.astrolog-birth-page .site-footer { margin-top: 0; }

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    padding: 28px 20px 38px;
    background: rgba(7,9,19,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { width: min(100%, 700px); margin: 0 auto; flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line-soft); }
  .site-nav a::after { display: none; }
  .sign-orbit { grid-template-columns: repeat(4, 1fr); }
	.magic-story { grid-template-columns: 1fr; }
	.magic-story__image { min-height: 460px; }
	.magic-story__image::after { background: linear-gradient(0deg, #090d18, transparent 55%); }
	.astro-card-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --content: min(100% - 28px, 1160px); --reading: min(100% - 28px, 760px); }
  body { font-size: 16px; }
  .site-header__inner { gap: 10px; }
  .site-brand__name { font-size: 1.35rem; }
  .sound-toggle { width: 44px; padding: 0; }
  .sound-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .front-section { padding: 88px 0; }
  .tool-paths { grid-template-columns: 1fr; }
	.tool-path--wide { grid-column: auto; }
  .tool-path { min-height: 270px; padding: 32px 28px; }
  .tool-path__glyph { top: 26px; right: 28px; }
  .tool-path h3 { margin-top: 58px; }
  .sign-orbit { grid-template-columns: repeat(3, 1fr); }
  .sign-orbit a { min-height: 108px; font-size: .67rem; }
  .method-statement { grid-template-columns: 1fr; min-height: 0; padding: 40px 28px 48px; }
  .method-statement__mark { width: 130px; }
  .astrolog-birth-page .site-main { padding-bottom: 36px; }
  .astrolog-birth-page .site-footer { padding-top: 64px; }
  .site-footer__inner, .site-footer__legal { grid-template-columns: 1fr; flex-direction: column; }
  .site-footer__legal { gap: 12px; }
  .archive-grid { grid-template-columns: 1fr; }
	.magic-visual { width: calc(100vw - 20px); margin-bottom: 60px; }
	.magic-visual__depth { min-height: 310px; border-radius: 18px; }
	.magic-visual img { object-position: 58% center; }
	.magic-story { min-height: 0; border-radius: 18px; }
	.magic-story__image { min-height: 330px; }
	.magic-story__copy { padding: 34px 24px 42px; }
	.astro-card-grid, .astro-card-grid--three { grid-template-columns: 1fr; }
	.astro-card { min-height: 0; }
	.content-wide { width: calc(100vw - 28px); }
	.astro-table { display: block; overflow-x: auto; }
}

@media (max-width: 430px) {
  .sign-orbit { grid-template-columns: repeat(2, 1fr); }
  .site-header__actions { gap: 6px; }
}

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