/* Lunar Letter Visual System v2
   Original editorial astrology language: bold type, alternating color chapters,
   paper texture, lunar blue identity marks, and low-radius archive components. */
:root {
  --paper: #ede6d7;
  --paper-deep: #d7cfbd;
  --ink: #171714;
  --moon-black: #0e0e0d;
  --acid: #d7ff43;
  --signal-red: #ef3d2f;
  --cobalt: #3157d5;
  --rust: #a84e34;
  --faded-gold: #ae9860;
  --hairline: 1px solid rgba(23, 23, 20, .72);
  --ll-paper: #ede6d7;
  --ll-paper-2: #d7cfbd;
  --ll-ink: #171714;
  --ll-black: #0c0c0b;
  --ll-acid: #d9ff45;
  --ll-red: #ef4035;
  --ll-blue: #3157d5;
  --ll-gold: #a9935e;
  --ll-rule: 1px solid rgba(23, 23, 20, .72);
  --ll-display: "Cormorant Garamond", "Times New Roman", serif;
  --ll-ui: Inter, Helvetica, Arial, sans-serif;
  --ll-data: "IBM Plex Mono", "Courier New", monospace;
  --space-xs: clamp(.4rem, .8vw, .8rem);
  --space-sm: clamp(.8rem, 1.4vw, 1.4rem);
  --space-md: clamp(1.5rem, 3vw, 3rem);
  --space-lg: clamp(3rem, 7vw, 7rem);
  --space-xl: clamp(6rem, 13vw, 13rem);
  --ll-midnight-ink: #101416;
  --ll-warm-paper: #f3ede2;
  --ll-soft-bone: #e8e0d2;
  --ll-charcoal: #232629;
  --ll-lunar-blue: #55c7f3;
  --ll-solar-yellow: #f5c84c;
  --ll-mars-coral: #f06455;
  --ll-cosmic-violet: #7957d5;
  --ll-orbit-green: #63a87b;
  --ll-electric-blue: #4263eb;
  --ll-dust-rose: #d8879b;
  --ll-ink-soft: rgba(16, 20, 22, .72);
  --ll-paper-soft: rgba(243, 237, 226, .76);
  --ll-rule-dark: rgba(16, 20, 22, .18);
  --ll-rule-light: rgba(243, 237, 226, .2);
  --ll-radius-tight: 4px;
  --ll-radius-ui: 8px;
  --ll-radius-art: 14px;
  --ll-font-display: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --ll-font-headline: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --ll-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  --ll-font-data: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ll-section-pad: clamp(72px, 11vw, 156px);
  --ll-gutter: max(22px, calc((100vw - 1540px) / 2));
}

/* Art-direction primitives: reusable archive, paper, and index treatments. */
.ll-editorial-page {
  overflow: clip;
  color: var(--ll-ink);
  background: var(--ll-paper);
}

.ll-display {
  font-family: var(--ll-display);
  font-weight: 400;
  letter-spacing: 0;
}

.ll-data {
  font-family: var(--ll-data);
  font-size: .72rem;
  line-height: 1.25;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ll-mega {
  margin: 0;
  font-family: var(--ll-display);
  font-size: var(--ll-mega-size, 12rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: 0;
}

.ll-rule { width: 100%; border-top: var(--ll-rule); }
.ll-rule--vertical { width: 1px; min-height: 8rem; background: var(--ll-ink); }

.ll-artifact {
  position: relative;
  border: var(--ll-rule);
  background: var(--ll-paper);
}

.ll-artifact::before {
  position: absolute;
  top: -1.4rem;
  left: 0;
  font-family: var(--ll-data);
  font-size: .65rem;
  letter-spacing: .08em;
  content: attr(data-index);
}

.ll-stamp {
  display: inline-grid;
  min-width: 6.2rem;
  aspect-ratio: 1;
  place-items: center;
  padding: .75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--ll-data);
  font-size: .58rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-11deg);
}

.ll-margin-note {
  font-family: var(--ll-data);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ll-index-link {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  min-height: 4rem;
  align-items: baseline;
  padding: .65rem 0;
  border-top: var(--ll-rule);
  color: inherit;
  text-decoration: none;
}

.ll-index-link:last-child { border-bottom: var(--ll-rule); }
.ll-index-link__number { font-family: var(--ll-data); font-size: .7rem; }
.ll-index-link__title { font-family: var(--ll-display); font-size: 3.2rem; line-height: .9; letter-spacing: 0; }
.ll-index-link__arrow { transition: transform 180ms ease; }
.ll-index-link:hover .ll-index-link__arrow { transform: translateX(.45rem) rotate(-8deg); }

.ll-editorial-image { position: relative; overflow: hidden; background: var(--ll-paper-2); }
.ll-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}
.ll-editorial-image:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.06); }

.ll-registration { position: relative; width: 1.1rem; aspect-ratio: 1; }
.ll-registration::before,
.ll-registration::after { position: absolute; background: var(--ll-red); content: ""; }
.ll-registration::before { top: 50%; width: 100%; height: 1px; }
.ll-registration::after { left: 50%; width: 1px; height: 100%; }

.ll-canvas {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.6rem, 1vw, 1.2rem);
  width: min(calc(100% - 2rem), 1600px);
  margin-inline: auto;
}

.ll-paper-object {
  position: relative;
  padding: clamp(1rem, 2vw, 2rem);
  border: var(--ll-rule);
  background: #f4eee1;
  box-shadow: 6px 8px 0 rgba(23, 23, 20, .1);
}
.ll-paper-object:nth-child(3n + 1) { transform: rotate(-1.4deg); }
.ll-paper-object:nth-child(3n + 2) { transform: rotate(.9deg); }
.ll-paper-object:nth-child(3n) { transform: rotate(-.35deg); }

.ll-acid-mark {
  display: inline;
  padding: 0 .08em;
  background: linear-gradient(transparent 19%, var(--ll-acid) 19%, var(--ll-acid) 88%, transparent 88%);
}

.ll-section-id {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--ll-data);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ll-section-id::before { width: 2.2rem; height: 1px; background: currentColor; content: ""; }

body.home-editorial {
  --ll-bg-primary: var(--ll-midnight-ink);
  --ll-bg-secondary: #151a1d;
  --ll-bg-elevated: #1d2326;
  --ll-bg-soft: #263033;
  --ll-text-primary: var(--ll-warm-paper);
  --ll-text-secondary: rgba(243, 237, 226, .76);
  --ll-text-muted: rgba(243, 237, 226, .56);
  --ll-lunar-gold: var(--ll-solar-yellow);
  --ll-electric-violet: var(--ll-cosmic-violet);
  --ll-celestial-blue: var(--ll-lunar-blue);
  --ll-solar-coral: var(--ll-mars-coral);
  --ll-mystic-green: var(--ll-orbit-green);
  --ll-line: rgba(243, 237, 226, .16);
  --ll-line-strong: rgba(243, 237, 226, .32);
  background: var(--ll-midnight-ink);
}

.lunar-design-system,
.home-main {
  background: var(--ll-midnight-ink);
}

.home-main::before,
body.home-editorial::after,
.seo-page::after,
.manifestation-product-page::after,
.cosmic-body::after,
.replay-body::after {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 10%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, #fff 0 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
  background-size: 29px 31px, 47px 43px, 113px 100%;
  content: "";
}

.home-editorial .site-header {
  background: rgba(16, 20, 22, .86);
  border-color: rgba(85, 199, 243, .22);
}
.home-editorial .site-header.is-condensed { background: rgba(16, 20, 22, .96); }
.home-editorial .brand img { box-shadow: 0 0 0 1px rgba(85,199,243,.45), 0 0 26px rgba(85,199,243,.16); }
.home-editorial .nav-link::after { background: var(--ll-lunar-blue); }
.home-editorial .site-search-submit { color: var(--ll-lunar-blue); }
.home-editorial .my-lunar-link,
.home-editorial .account-trigger {
  border-color: var(--ll-solar-yellow);
  background: var(--ll-solar-yellow);
  color: var(--ll-midnight-ink);
  border-radius: 8px;
}
.home-editorial .my-lunar-link span,
.home-editorial .account-trigger .account-initial {
  background: var(--ll-midnight-ink);
  color: var(--ll-warm-paper);
}

.home-section-index,
.home-kicker,
.conversion-eyebrow { color: var(--ll-lunar-blue); }
.home-main h1,
.home-main h2,
.home-main h3 { letter-spacing: 0; }
.home-main h2 { font-size: clamp(3.4rem, 7vw, 8.8rem); line-height: .86; }
.home-section-index { margin-bottom: clamp(28px, 5vw, 72px); }
.home-action-primary,
.home-action-ink,
.button.primary {
  border-radius: 4px;
  border-color: var(--ll-midnight-ink);
  background: var(--ll-midnight-ink);
  color: var(--ll-warm-paper);
}
.home-action-primary:hover,
.home-action-primary:focus-visible,
.home-action-ink:hover,
.home-action-ink:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: transparent;
  color: inherit;
  transform: translateY(-2px);
}
.home-action-secondary,
.home-action-text,
.text-link {
  border-radius: 0;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.home-hero {
  min-height: max(88svh, 760px);
  background:
    radial-gradient(circle at 73% 45%, rgba(85, 199, 243, .24), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(245, 200, 76, .16), transparent 19rem),
    linear-gradient(140deg, #101416 0%, #15191c 55%, #0c1012 100%);
}
.home-hero-media { opacity: .18; filter: saturate(.55) contrast(1.15) brightness(.62); mix-blend-mode: screen; }
.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(16,20,22,.98) 0%, rgba(16,20,22,.82) 44%, rgba(16,20,22,.38) 74%, rgba(16,20,22,.08) 100%),
    linear-gradient(0deg, rgba(16,20,22,.86), transparent 45%);
}
.home-hero h1 {
  max-width: 1280px;
  font-size: clamp(4.9rem, 11vw, 12.8rem);
  line-height: .78;
}
.home-hero h1 span:nth-child(3) { color: var(--ll-lunar-blue); }
.home-hero-lede { color: rgba(243,237,226,.78); }
.home-hero-orbit {
  border-color: rgba(85,199,243,.38);
  border-radius: 46% 54% 57% 43%;
  transform: rotate(-21deg) skew(-4deg);
}
.home-hero-orbit span { border-color: rgba(243,237,226,.22); border-radius: 45% 55% 42% 58%; }
.home-hero-orbit i { background: var(--ll-solar-yellow); box-shadow: 0 0 0 9px rgba(245,200,76,.1); }
.home-hero-orbit b { background: var(--ll-mars-coral); }

.start-here {
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 100, 85, .17), transparent 22rem),
    linear-gradient(180deg, var(--ll-warm-paper), var(--ll-soft-bone));
  color: var(--ll-midnight-ink);
}
.start-here .conversion-eyebrow,
.start-here .conversion-title,
.start-here .free-start-header > p { color: var(--ll-midnight-ink); }
.start-here .free-start-header > p { opacity: .76; }
.free-start-grid { border-color: rgba(16,20,22,.18); }
.start-path {
  min-height: 420px;
  border-color: rgba(16,20,22,.18);
  background: transparent;
  transition: background .22s ease, transform .22s ease;
}
.start-path:hover { background: rgba(255,255,255,.28); transform: translateY(-5px); }
.start-path h3 { font-size: clamp(2.45rem, 3.6vw, 4.1rem); }
.start-path p,
.start-path small { color: rgba(16,20,22,.68); }
.start-path small b { background: var(--ll-lunar-blue); color: var(--ll-midnight-ink); }
.start-path a { border-color: var(--ll-midnight-ink); color: var(--ll-midnight-ink); border-radius: 0; }
.start-path a:hover,
.start-path a:focus-visible { background: var(--ll-midnight-ink); color: var(--ll-warm-paper); }
.start-symbol { border-color: rgba(16,20,22,.28); background: radial-gradient(circle at 62% 38%, transparent 0 21px, var(--ll-mars-coral) 22px 24px, transparent 25px), radial-gradient(circle at 42% 58%, rgba(85,199,243,.6), transparent 34px); }
.start-symbol-career { background: linear-gradient(135deg, var(--ll-electric-blue), transparent 45%), radial-gradient(circle, var(--ll-orbit-green) 0 18px, transparent 19px); }
.start-symbol-today { background: radial-gradient(circle at 50% 50%, var(--ll-midnight-ink) 0 19px, var(--ll-solar-yellow) 20px 30px, transparent 31px); }

.home-statement {
  background:
    linear-gradient(90deg, rgba(85,199,243,.08) 1px, transparent 1px) 0 0 / 64px 100%,
    linear-gradient(180deg, #101416, #171c20);
}
.home-statement-eclipse { border-color: rgba(85,199,243,.42); }
.home-statement-eclipse span { box-shadow: -28px 5px 0 -3px var(--ll-lunar-blue); }

.home-cosmic-feature {
  background: var(--ll-electric-blue);
  color: var(--ll-warm-paper);
}
.home-cosmic-feature p { color: rgba(243,237,226,.84); }
.home-cosmic-card {
  border-radius: 8px;
  border-color: rgba(16,20,22,.26);
  background:
    linear-gradient(rgba(16,20,22,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,20,22,.13) 1px, transparent 1px),
    linear-gradient(145deg, var(--ll-warm-paper), #dcecff 62%, var(--ll-lunar-blue));
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--ll-midnight-ink);
  box-shadow: 18px 18px 0 rgba(16,20,22,.24);
}
.home-cosmic-card span,
.home-cosmic-card small { color: rgba(16,20,22,.72); }
.home-cosmic-card strong { color: var(--ll-midnight-ink); }
.home-cosmic-card::before,
.home-cosmic-card::after { border-color: rgba(16,20,22,.26); }
.home-cosmic-replay-feature {
  background:
    linear-gradient(90deg, rgba(243,237,226,.06) 1px, transparent 1px) 0 0 / 72px 100%,
    #101416;
}
.home-replay-card {
  background:
    linear-gradient(rgba(243,237,226,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,237,226,.08) 1px, transparent 1px),
    linear-gradient(160deg, #11161a, #2a1a28 60%, var(--ll-cosmic-violet));
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--ll-warm-paper);
  box-shadow: 18px 18px 0 rgba(85,199,243,.16);
}
.home-replay-card span,
.home-replay-card small { color: rgba(243,237,226,.7); }
.home-replay-card strong { color: var(--ll-warm-paper); }
.home-life-book-feature { background: var(--ll-mars-coral); color: var(--ll-midnight-ink); }
.home-life-book-feature p { color: rgba(16,20,22,.78); }
.home-life-book-card { background: linear-gradient(150deg, var(--ll-warm-paper), var(--ll-solar-yellow)); color: var(--ll-midnight-ink); }
.home-life-book-card strong { color: var(--ll-midnight-ink); }

.home-astrology {
  background: linear-gradient(180deg, #eaf6fb, var(--ll-warm-paper));
  color: var(--ll-midnight-ink);
}
.home-astrology .home-section-index,
.home-astrology .home-kicker { color: var(--ll-electric-blue); }
.home-astrology-visual .chart-ring-outer { stroke: var(--ll-electric-blue); }
.home-astrology-visual .chart-degree-marks circle { fill: var(--ll-lunar-blue); }

.home-tarot {
  background:
    radial-gradient(circle at 16% 20%, rgba(216,135,155,.22), transparent 22rem),
    linear-gradient(180deg, #1d1719, #101416);
}
.home-tarot::after { color: rgba(240,100,85,.12); }
.home-tarot-back { border-color: var(--ll-mars-coral); }
.home-tarot .home-section-index,
.home-tarot .home-kicker { color: var(--ll-dust-rose); }

.home-bazi {
  background:
    radial-gradient(circle at 80% 14%, rgba(245,200,76,.28), transparent 23rem),
    linear-gradient(180deg, #eaf2df, var(--ll-warm-paper));
  color: var(--ll-midnight-ink);
}
.home-bazi .home-section-index,
.home-bazi .home-kicker { color: #3d7f5b; }
.home-element-line span { border-color: rgba(16,20,22,.24); background: rgba(99,168,123,.12); }

.home-manifestation {
  background:
    linear-gradient(135deg, rgba(245,200,76,.22) 0 16%, transparent 16% 100%),
    var(--ll-cosmic-violet);
  color: var(--ll-warm-paper);
}
.home-manifestation p { color: rgba(243,237,226,.82); }
.home-manifestation-tools a { border-radius: 6px; }
.home-manifestation-tools a:nth-child(2n) { transform: translateY(34px); }

.personal-reports {
  background: var(--ll-warm-paper);
  color: var(--ll-midnight-ink);
}
.personal-reports .conversion-eyebrow,
.personal-reports .home-firstlight span { color: var(--ll-mars-coral); }
.personal-reports .conversion-lede,
.personal-reports p,
.personal-reports small { color: rgba(16,20,22,.68); }
.home-tier-grid a,
.report-offer,
.report-preview {
  border-radius: 4px !important;
  box-shadow: none !important;
}
.home-tier-grid a { border-color: rgba(16,20,22,.18); background: rgba(255,255,255,.34); }
.report-offer { border-left: 3px solid var(--ll-mars-coral); }
.report-preview { border-color: rgba(16,20,22,.16); background: rgba(255,255,255,.38); }
.report-preview-page { border-radius: 3px; }

.home-lenses {
  background: var(--ll-solar-yellow);
  color: var(--ll-midnight-ink);
}
.home-lenses p,
.home-lens-point small { color: rgba(16,20,22,.68); }
.home-lens-point { border-radius: 3px; border-color: rgba(16,20,22,.2); }
.home-lens-point:hover { background: var(--ll-midnight-ink); color: var(--ll-warm-paper); }

.home-how-it-works {
  background: #11161a;
  color: var(--ll-warm-paper);
}
.home-how-it-works p,
.home-how-it-works .process-list p { color: rgba(243,237,226,.68); }
.process-list li { border-radius: 0 !important; }

.home-celestial {
  background: var(--ll-dust-rose);
  color: var(--ll-midnight-ink);
}
.home-celestial p { color: rgba(16,20,22,.72); }
.home-celestial-moon span { box-shadow: -22px 0 0 -2px var(--ll-warm-paper); }

.home-account {
  background: linear-gradient(120deg, #101416, #162228 55%, #101416);
}
.home-account-fragment { border-radius: 6px !important; border-color: rgba(85,199,243,.28) !important; }

.home-library {
  background: var(--ll-warm-paper);
  color: var(--ll-midnight-ink);
}
.home-library p,
.home-library small { color: rgba(16,20,22,.66); }
.home-library-lead img,
.home-library-list a { border-radius: 0 !important; }
.home-final-cta {
  background: var(--ll-midnight-ink);
  color: var(--ll-warm-paper);
}

/* Hub and product page art direction. These selectors are intentionally broad but visual-only. */
.seo-page,
.manifestation-product-page {
  background: var(--ll-warm-paper);
  color: var(--ll-midnight-ink);
}
.seo-page::before,
.manifestation-product-page::before { display: none; }
.seo-page .seo-site-header,
.manifestation-product-page .site-header {
  background: rgba(243,237,226,.94);
  border-bottom-color: rgba(16,20,22,.18);
}
.seo-article-header,
.manifest-page-hero,
.page-hero,
.category-hero,
.service-hero {
  border-radius: 0 !important;
  border-width: 0 0 1px !important;
  background: transparent !important;
  box-shadow: none !important;
}
.seo-article-header h1,
.manifest-page-hero h1,
.page-hero h1,
.category-hero h1,
.service-hero h1 {
  font-family: var(--ll-font-display);
  font-size: clamp(4rem, 9vw, 10rem);
  line-height: .82;
  letter-spacing: 0;
}
.seo-link-grid,
.manifest-feature-grid,
.product-grid,
.tool-grid,
.article-grid,
.standard-grid,
.faq-grid,
.path-grid {
  gap: 1px !important;
  background: rgba(16,20,22,.18);
  border: 1px solid rgba(16,20,22,.18);
}
.seo-link-grid a,
.manifest-feature-grid a,
.product-card,
.tool-card,
.article-card,
.standard-card,
.faq-grid article,
.path-grid article {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--ll-warm-paper) !important;
}
.seo-link-grid a:hover,
.manifest-feature-grid a:hover,
.product-card:hover,
.tool-card:hover,
.article-card:hover {
  background: var(--ll-soft-bone) !important;
}
[data-category-theme="astrology"] { --category-accent: var(--ll-lunar-blue); --category-bg: #eaf6fb; }
[data-category-theme="tarot"] { --category-accent: var(--ll-mars-coral); --category-bg: #fff0ef; }
[data-category-theme="bazi"] { --category-accent: var(--ll-orbit-green); --category-bg: #edf4e6; }
[data-category-theme="manifestation"], .manifestation-product-page { --category-accent: var(--ll-cosmic-violet); --category-bg: #f4edff; }
[data-category-theme="library"] { --category-accent: var(--ll-solar-yellow); --category-bg: var(--ll-warm-paper); }

/* Cosmic Identity and Replay integration. */
body.cosmic-body {
  --cosmic-bg: var(--ll-midnight-ink);
  --cosmic-panel: #172126;
  --cosmic-ink: var(--ll-warm-paper);
  --cosmic-muted: rgba(243,237,226,.7);
  --cosmic-faint: rgba(243,237,226,.12);
  --cosmic-line: rgba(85,199,243,.22);
  --cosmic-gold: var(--ll-solar-yellow);
  --cosmic-blue: var(--ll-lunar-blue);
  background:
    radial-gradient(circle at 72% 15%, rgba(85,199,243,.18), transparent 24rem),
    radial-gradient(circle at 16% 30%, rgba(240,100,85,.13), transparent 22rem),
    var(--ll-midnight-ink);
}
.cosmic-flow,
.cosmic-result-card-stage,
.cosmic-info-card { border-radius: 6px !important; }
.cosmic-template-card,
.cosmic-symbol-card { border-radius: 4px !important; }
.cosmic-template-card[data-style="poster"] { background: var(--ll-electric-blue) !important; color: var(--ll-warm-paper) !important; }
.cosmic-template-card[data-style="artifact"] { background: #1c1719 !important; border-color: var(--ll-mars-coral) !important; }
.cosmic-template-card[data-style="passport"] { background: var(--ll-warm-paper) !important; color: var(--ll-midnight-ink) !important; }

.replay-body,
.cosmic-replay-page {
  --replay-accent: var(--ll-lunar-blue);
  --replay-paper: var(--ll-warm-paper);
  --replay-coral: var(--ll-mars-coral);
}

@media (max-width: 1180px) {
  .home-hero h1 { font-size: clamp(4.6rem, 14vw, 9rem); }
  .home-main h2 { font-size: clamp(3.2rem, 9vw, 6.8rem); }
  .free-start-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-manifestation-tools a:nth-child(2n) { transform: none; }
}
@media (max-width: 760px) {
  .home-hero { min-height: 720px; padding: 118px 16px 52px; }
  .home-hero-copy { width: min(100%, 360px); }
  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 14.2vw, 4.55rem);
    line-height: .84;
  }
  .home-hero h1 span {
    display: block;
    margin-left: 0 !important;
  }
  .home-hero-orbit { width: 104vw; right: -58vw; top: 16%; opacity: .72; }
  .free-start-header,
  .free-start-grid,
  .home-statement,
  .home-astrology,
  .home-tarot,
  .home-bazi,
  .home-cosmic-feature { grid-template-columns: 1fr !important; }
  .start-path { min-height: 330px; }
  .home-cosmic-card { min-height: 360px; box-shadow: 10px 10px 0 rgba(16,20,22,.2); }
  .home-tarot-object { min-height: 520px; }
  .home-tarot-back,
  .home-tarot-face { width: min(70vw, 330px); }
  .seo-article-header h1,
  .manifest-page-hero h1,
  .page-hero h1,
  .category-hero h1,
  .service-hero h1 { font-size: clamp(3.2rem, 15vw, 5.6rem); }
}

/* Archive homepage v3: surreal celestial correspondence archive. */
.home-archive-v3 {
  --archive-black: #090c10;
  --archive-ink: #111820;
  --archive-paper: #f4ead8;
  --archive-bone: #fff7e7;
  --archive-blue: #58c8ff;
  --archive-yellow: #f6c84f;
  --archive-coral: #ff6e5f;
  --archive-violet: #8b6dff;
  --archive-green: #76b487;
  --archive-rose: #d98a9c;
  --archive-line: rgba(244, 234, 216, .18);
  --archive-line-dark: rgba(9, 12, 16, .18);
  color: var(--archive-bone);
  background: var(--archive-black);
}

.archive-home {
  position: relative;
  overflow: clip;
  color: var(--archive-bone);
  background:
    linear-gradient(rgba(255,255,255,.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(88, 200, 255, .16), transparent 32rem),
    radial-gradient(circle at 84% 4%, rgba(246, 200, 79, .1), transparent 26rem),
    var(--archive-black);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

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

.archive-home a {
  color: inherit;
}

.archive-home > section {
  position: relative;
  padding-inline: clamp(20px, 5vw, 86px);
}

.archive-kicker,
.archive-section-label,
.archive-home small,
.asset-stamp {
  font-family: var(--ll-font-data);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.archive-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--archive-blue);
  font-size: .78rem;
  margin-bottom: 22px;
}

.archive-section-label::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.archive-home h1,
.archive-home h2,
.archive-home h3,
.archive-home strong {
  font-family: var(--ll-font-display);
  letter-spacing: 0;
}

.archive-home h2 {
  font-size: clamp(3.8rem, 8vw, 10rem);
  line-height: .84;
}

.archive-home p {
  max-width: 66ch;
  color: rgba(255, 247, 231, .74);
  font-size: clamp(1.04rem, 1.4vw, 1.32rem);
  line-height: 1.72;
}

.ll-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-family: var(--ll-font-body);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.ll-btn:hover,
.ll-btn:focus-visible {
  transform: translateY(-2px);
}

.ll-btn-primary {
  border-color: var(--archive-yellow);
  background: var(--archive-yellow);
  color: var(--archive-black);
}

.ll-btn-stamp {
  border-style: dashed;
  color: var(--archive-bone);
  background: rgba(255, 247, 231, .04);
}

.ll-btn-stamp:hover,
.ll-btn-stamp:focus-visible {
  background: var(--archive-bone);
  color: var(--archive-black);
}

.archive-hero {
  min-height: min(980px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(30px, 5vw, 92px);
  align-items: center;
  padding-top: clamp(118px, 12vw, 188px);
  padding-bottom: clamp(58px, 8vw, 100px);
  isolation: isolate;
}

.archive-hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(88, 200, 255, .11), transparent);
  content: "";
}

.archive-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.archive-kicker {
  color: var(--archive-blue);
  font-size: clamp(.74rem, 1.1vw, .95rem);
  margin-bottom: clamp(22px, 3vw, 44px);
}

.archive-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--archive-bone);
  font-size: clamp(4.8rem, 9.2vw, 11rem);
  line-height: .78;
  text-wrap: balance;
}

.archive-hero-lede {
  margin-top: clamp(28px, 3vw, 46px);
  color: rgba(255, 247, 231, .78);
}

.archive-hero-actions,
.today-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.archive-hero-visual {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
}

.asset-orbit {
  position: absolute;
  border: 1px solid rgba(88, 200, 255, .32);
  border-radius: 53% 47% 49% 51%;
}

.asset-orbit span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 247, 231, .16);
  border-radius: 46% 54% 58% 42%;
  transform: rotate(22deg);
}

.asset-orbit i,
.asset-orbit b {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  content: "";
}

.asset-orbit i {
  left: 14%;
  bottom: 23%;
  background: var(--archive-yellow);
  box-shadow: 0 0 0 10px rgba(246, 200, 79, .12);
}

.asset-orbit b {
  right: 19%;
  top: 22%;
  background: var(--archive-coral);
  box-shadow: 0 0 0 8px rgba(255, 110, 95, .13);
}

.asset-orbit-large {
  inset: 4% -10% 4% 0;
  transform: rotate(-17deg);
}

.asset-moon-gate {
  position: absolute;
  left: 34%;
  top: 26%;
  width: min(32vw, 260px);
  aspect-ratio: 1 / 1.18;
  border-radius: 48% 48% 10% 10%;
  background:
    radial-gradient(circle at 50% 35%, var(--archive-bone) 0 31%, transparent 32%),
    radial-gradient(circle at 50% 38%, rgba(246, 200, 79, .2) 0 42%, transparent 43%),
    linear-gradient(180deg, rgba(255, 247, 231, .06), rgba(255, 247, 231, .02));
  border: 1px solid rgba(255, 247, 231, .22);
  box-shadow: 0 34px 90px rgba(246, 200, 79, .16);
}

.asset-thread {
  position: absolute;
  inset: 13% 3% 16% 8%;
  background:
    linear-gradient(48deg, transparent 0 32%, rgba(216, 138, 156, .65) 33% 33.35%, transparent 34%),
    linear-gradient(133deg, transparent 0 45%, rgba(88, 200, 255, .58) 46% 46.35%, transparent 47%),
    linear-gradient(78deg, transparent 0 52%, rgba(118, 180, 135, .62) 53% 53.35%, transparent 54%);
  opacity: .75;
}

.asset-letter {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: min(28vw, 380px);
  min-height: 240px;
  padding: 24px;
  color: var(--archive-black);
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 42%),
    var(--archive-paper);
  box-shadow: -18px 18px 0 rgba(88, 200, 255, .22), 0 28px 80px rgba(0,0,0,.32);
  transform: rotate(4deg);
}

.asset-letter::before,
.asset-letter::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.asset-letter::before {
  inset: 16px;
  border: 1px solid rgba(9, 12, 16, .2);
}

.asset-letter::after {
  right: 24px;
  top: 24px;
  width: 78px;
  height: 78px;
  border: 2px solid var(--archive-coral);
  border-radius: 999px;
  opacity: .72;
}

.asset-letter strong {
  display: block;
  max-width: 11ch;
  margin-top: 70px;
  font-size: 2rem;
  line-height: .92;
}

.asset-letter small {
  display: block;
  margin-top: 22px;
  color: rgba(9, 12, 16, .62);
}

.asset-stamp {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(9, 12, 16, .32);
  color: var(--archive-coral);
  font-size: .7rem;
}

.asset-object {
  position: absolute;
  border: 1px solid rgba(255, 247, 231, .34);
}

.asset-key {
  left: 1%;
  bottom: 14%;
  width: 126px;
  height: 34px;
  border-left: 0;
  border-right: 0;
  transform: rotate(-19deg);
}

.asset-key::before {
  position: absolute;
  left: -40px;
  top: -18px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 247, 231, .34);
  border-radius: 50%;
  content: "";
}

.asset-eye {
  right: 22%;
  top: 6%;
  width: 130px;
  height: 58px;
  border-radius: 50%;
  transform: rotate(16deg);
}

.asset-eye::before {
  position: absolute;
  inset: 17px 51px;
  border-radius: 50%;
  background: var(--archive-blue);
  content: "";
}

.archive-scroll {
  position: absolute;
  left: clamp(20px, 5vw, 86px);
  bottom: 24px;
  color: rgba(255, 247, 231, .58);
  font-family: var(--ll-font-data);
  font-size: .78rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-start {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  padding-block: clamp(76px, 10vw, 140px);
  color: var(--archive-black);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 110, 95, .18), transparent 24rem),
    linear-gradient(180deg, var(--archive-paper), #efe2cf);
}

.archive-start-intro h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--archive-black);
}

.archive-start-intro p {
  color: rgba(9, 12, 16, .68);
}

.archive-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--archive-line-dark);
  background: var(--archive-line-dark);
}

.archive-path {
  position: relative;
  display: grid;
  min-height: 360px;
  align-content: end;
  gap: 13px;
  padding: 24px;
  overflow: hidden;
  color: var(--archive-black);
  background: rgba(255, 255, 255, .22);
  text-decoration: none;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.archive-path:hover,
.archive-path:focus-visible {
  z-index: 2;
  color: var(--archive-bone);
  background: var(--archive-black);
  transform: translateY(-8px);
}

.archive-free-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 8px;
  border: 1px solid currentColor;
  font-family: var(--ll-font-data);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.archive-path small {
  color: currentColor;
  opacity: .7;
}

.archive-path strong {
  max-width: 8ch;
  font-size: clamp(2.4rem, 3.7vw, 4.8rem);
  line-height: .86;
}

.archive-path em {
  max-width: 24ch;
  font-style: normal;
  line-height: 1.45;
  opacity: .74;
}

.path-symbol {
  position: absolute;
  left: 22px;
  top: 34px;
  width: 150px;
  height: 150px;
  opacity: .9;
  transition: transform .22s ease;
}

.archive-path:hover .path-symbol {
  transform: rotate(-4deg) scale(1.05);
}

.path-symbol-letter {
  background:
    linear-gradient(28deg, transparent 0 48%, currentColor 49% 50%, transparent 51%),
    linear-gradient(-28deg, transparent 0 48%, currentColor 49% 50%, transparent 51%);
  border: 1px solid currentColor;
}

.path-symbol-chart {
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(30deg, transparent 49%, currentColor 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, currentColor 50%, transparent 51%),
    radial-gradient(circle, transparent 0 36%, currentColor 37% 38%, transparent 39% 57%, currentColor 58% 59%, transparent 60%);
}

.path-symbol-compass {
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 5%;
  transform: rotate(45deg);
}

.path-symbol-compass::before {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.path-symbol-card {
  width: 108px;
  height: 162px;
  border: 1px solid currentColor;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 10px, transparent 11px),
    linear-gradient(0deg, transparent 49%, currentColor 50%, transparent 51%);
}

.path-symbol-cosmic {
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 46%, var(--archive-paper) 0 24px, transparent 25px),
    radial-gradient(circle at 50% 50%, transparent 0 42px, currentColor 43px 45px, transparent 46px 70px, currentColor 71px 72px, transparent 73px);
}

.path-symbol-cosmic::before,
.path-symbol-moment::before,
.path-symbol-moment::after {
  position: absolute;
  content: "";
}

.path-symbol-cosmic::before {
  inset: 28%;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 8%;
  transform: rotate(-30deg);
}

.path-symbol-moment {
  width: 122px;
  height: 160px;
  border-left: 1px solid currentColor;
}

.path-symbol-moment::before {
  left: 0;
  top: 8%;
  width: 86%;
  height: 1px;
  background: currentColor;
  box-shadow: 0 48px 0 currentColor, 0 96px 0 currentColor;
}

.path-symbol-moment::after {
  left: -8px;
  top: 6%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 48px 0 currentColor, 0 96px 0 currentColor;
}

.archive-question-index {
  display: grid;
  grid-template-columns: minmax(230px, .32fr) 1fr;
  gap: clamp(28px, 6vw, 96px);
  padding-block: clamp(84px, 12vw, 170px);
  background: var(--archive-black);
}

.archive-question-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}

.archive-question-aside h2 {
  margin: 0 0 24px;
  color: var(--archive-bone);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .95;
}

.archive-question-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--archive-line);
}

.archive-question-list a {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: baseline;
  min-height: 118px;
  padding: 24px 0;
  border-bottom: 1px solid var(--archive-line);
  color: var(--archive-bone);
  font-family: var(--ll-font-display);
  font-size: clamp(2.3rem, 5.9vw, 7.8rem);
  line-height: .84;
  text-decoration: none;
}

.archive-question-list span {
  color: var(--archive-blue);
  font-family: var(--ll-font-data);
  font-size: .85rem;
}

.archive-question-list a::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 1px solid var(--archive-coral);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(.7);
  transition: opacity .2s ease, transform .2s ease;
  content: "";
}

.archive-question-list a:hover::after,
.archive-question-list a:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.archive-identity-campaign {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: 900px;
  padding-block: clamp(86px, 11vw, 152px);
  color: var(--archive-black);
  background:
    linear-gradient(90deg, rgba(9,12,16,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9,12,16,.08) 1px, transparent 1px),
    var(--archive-blue);
  background-size: 80px 80px;
}

.identity-poster {
  position: relative;
  min-height: min(78vw, 760px);
  padding: clamp(26px, 4vw, 54px);
  overflow: hidden;
  color: var(--archive-bone);
  background: var(--archive-black);
  box-shadow: 26px 26px 0 rgba(9, 12, 16, .22);
}

.identity-poster::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 247, 231, .2);
  content: "";
}

.identity-poster span,
.identity-poster small {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--ll-font-data);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.identity-poster strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 7ch;
  margin-top: min(44vw, 380px);
  font-size: clamp(4.2rem, 9vw, 10.5rem);
  line-height: .75;
}

.poster-moon {
  position: absolute;
  left: 45%;
  top: 13%;
  width: min(44vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 42%, var(--archive-black) 0 33%, transparent 34%),
    var(--archive-yellow);
  box-shadow: 0 0 0 90px rgba(246, 200, 79, .09);
}

.identity-copy h2 {
  max-width: 8ch;
  margin: 0;
  color: var(--archive-black);
}

.identity-copy p {
  color: rgba(9, 12, 16, .72);
}

.identity-copy .ll-btn-stamp {
  color: var(--archive-black);
  background: rgba(255, 247, 231, .25);
}

.archive-replay {
  padding-block: clamp(86px, 11vw, 154px);
  background:
    radial-gradient(circle at 85% 10%, rgba(139, 109, 255, .22), transparent 28rem),
    #151018;
}

.archive-replay header {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 80px);
}

.archive-replay h2 {
  max-width: 10ch;
  margin: 0;
}

.replay-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 247, 231, .26);
}

.replay-timeline a {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: start;
  gap: 18px;
  padding: 34px 24px 24px;
  border-right: 1px solid rgba(255, 247, 231, .14);
  text-decoration: none;
}

.replay-timeline a::before {
  position: absolute;
  top: -9px;
  left: 24px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--archive-violet);
  box-shadow: 0 0 0 8px rgba(139, 109, 255, .14);
  content: "";
}

.replay-timeline span {
  font-family: var(--ll-font-display);
  font-size: clamp(2.1rem, 3.2vw, 4.4rem);
  line-height: .88;
}

.replay-timeline small {
  max-width: 24ch;
  color: rgba(255, 247, 231, .66);
  line-height: 1.45;
}

.archive-systems {
  padding-block: clamp(80px, 10vw, 140px);
  color: var(--archive-black);
  background: var(--archive-paper);
}

.systems-heading {
  display: grid;
  grid-template-columns: .32fr 1fr;
  gap: clamp(26px, 5vw, 80px);
  margin-bottom: 48px;
}

.systems-heading h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--archive-black);
}

.system-band,
.archive-systems .home-manifestation {
  display: grid;
  grid-template-columns: minmax(240px, .54fr) 1fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 70px) 0;
  border-top: 1px solid var(--archive-line-dark);
}

.system-band:last-child {
  border-bottom: 1px solid var(--archive-line-dark);
}

.archive-systems .home-manifestation {
  border-bottom: 1px solid var(--archive-line-dark);
}

.system-band small,
.system-band p,
.archive-systems .home-manifestation small,
.archive-systems .home-manifestation p {
  color: rgba(9, 12, 16, .64);
}

.system-band h3,
.archive-systems .home-manifestation h3 {
  max-width: 10ch;
  margin: 10px 0 18px;
  color: var(--archive-black);
  font-size: clamp(3rem, 6vw, 7.2rem);
  line-height: .82;
}

.system-band a,
.archive-systems .home-manifestation > div > a {
  display: inline-flex;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  color: var(--archive-black);
  font-weight: 850;
  text-decoration: none;
}

.system-visual {
  min-height: 330px;
}

.system-chart {
  border-radius: 50%;
  background:
    linear-gradient(30deg, transparent 49.8%, rgba(9,12,16,.36) 50%, transparent 50.2%),
    linear-gradient(90deg, transparent 49.8%, rgba(9,12,16,.36) 50%, transparent 50.2%),
    linear-gradient(150deg, transparent 49.8%, rgba(9,12,16,.36) 50%, transparent 50.2%),
    radial-gradient(circle, transparent 0 28%, rgba(9,12,16,.32) 28.5% 29%, transparent 29.5% 58%, rgba(66,99,235,.62) 58.3% 59%, transparent 59.5% 72%, rgba(9,12,16,.34) 72.3% 73%, transparent 73.5%);
}

.system-ritual-card {
  display: grid;
  place-items: center;
  border: 1px solid var(--archive-coral);
  background:
    radial-gradient(circle, rgba(255, 110, 95, .18), transparent 36%),
    var(--archive-black);
  color: var(--archive-bone);
  box-shadow: 16px 16px 0 rgba(255, 110, 95, .22);
}

.system-ritual-card span {
  display: grid;
  place-items: center;
  width: min(56%, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 231, .34);
  border-radius: 50%;
  font-family: var(--ll-font-display);
  font-size: 5rem;
}

.system-elements {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
}

.system-elements i {
  display: grid;
  min-height: 250px;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(9, 12, 16, .2);
  font-family: var(--ll-font-data);
  font-style: normal;
  writing-mode: vertical-rl;
}

.system-elements i:nth-child(1) { background: rgba(118, 180, 135, .26); }
.system-elements i:nth-child(2) { background: rgba(255, 110, 95, .24); min-height: 310px; }
.system-elements i:nth-child(3) { background: rgba(246, 200, 79, .3); min-height: 220px; }
.system-elements i:nth-child(4) { background: rgba(255, 247, 231, .44); min-height: 285px; }
.system-elements i:nth-child(5) { background: rgba(88, 200, 255, .25); min-height: 260px; }

.system-desk {
  position: relative;
  background:
    linear-gradient(101deg, transparent 0 40%, rgba(139,109,255,.28) 41% 60%, transparent 61%),
    var(--archive-bone);
  box-shadow: 18px 18px 0 rgba(139, 109, 255, .24);
}

.system-desk::before,
.system-desk::after {
  position: absolute;
  background: var(--archive-paper);
  border: 1px solid rgba(9, 12, 16, .18);
  content: "";
}

.system-desk::before {
  left: 12%;
  top: 18%;
  width: 48%;
  height: 46%;
  transform: rotate(-7deg);
}

.system-desk::after {
  right: 9%;
  bottom: 12%;
  width: 42%;
  height: 38%;
  transform: rotate(5deg);
}

.manifestation-archive-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 8px;
}

.manifestation-archive-tools a {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(9, 12, 16, .18);
  color: var(--archive-black);
  background: rgba(255, 247, 231, .45);
  text-decoration: none;
}

.manifestation-archive-tools img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(.85) contrast(1.02);
}

.manifestation-archive-tools strong {
  font-family: var(--ll-font-data);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.manifestation-archive-tools span {
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
}

.archive-reports,
.archive-home #reports {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) 1fr;
  gap: clamp(30px, 6vw, 96px);
  padding-block: clamp(86px, 11vw, 154px);
  background:
    radial-gradient(circle at 15% 20%, rgba(246, 200, 79, .14), transparent 26rem),
    #111820;
}

.reports-intro h2 {
  max-width: 8ch;
  margin: 0;
}

.reports-ledger {
  display: grid;
  gap: 1px;
  align-self: start;
  background: var(--archive-line);
  border: 1px solid var(--archive-line);
}

.reports-ledger a,
.reports-samples a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 22px;
  align-items: center;
  padding: 26px;
  background: rgba(255, 247, 231, .055);
  text-decoration: none;
}

.reports-ledger span,
.reports-samples span,
.reports-samples small {
  color: rgba(255, 247, 231, .62);
  font-family: var(--ll-font-data);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reports-ledger strong {
  color: var(--archive-yellow);
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.reports-ledger small {
  grid-column: 1 / -1;
}

.reports-samples {
  display: grid;
  grid-column: 2;
  gap: 14px;
}

.reports-samples a {
  grid-template-columns: 1fr;
  border: 1px dashed rgba(255, 247, 231, .25);
}

.reports-samples strong {
  color: var(--archive-bone);
  font-size: clamp(1.7rem, 2.8vw, 3.2rem);
}

.reports-samples .reports-hub-link {
  justify-content: start;
  border-style: solid;
  background: var(--archive-yellow);
  color: var(--archive-black);
  font-weight: 900;
}

.archive-library {
  display: grid;
  grid-template-columns: .46fr 1fr;
  gap: clamp(30px, 5vw, 86px);
  padding-block: clamp(86px, 12vw, 164px);
  color: var(--archive-black);
  background:
    linear-gradient(90deg, rgba(9,12,16,.08) 1px, transparent 1px),
    #f7efe1;
  background-size: 92px 100%;
}

.library-masthead {
  align-self: start;
}

.library-masthead h2 {
  max-width: 8ch;
  margin: 0 0 26px;
  color: var(--archive-black);
}

.library-masthead .ll-btn-stamp {
  color: var(--archive-black);
}

.library-hero-story a {
  display: grid;
  min-height: 560px;
  align-content: end;
  padding: clamp(28px, 4vw, 58px);
  color: var(--archive-bone);
  background:
    radial-gradient(circle at 67% 22%, rgba(88, 200, 255, .28), transparent 16rem),
    linear-gradient(140deg, #101416, #2b3034);
  text-decoration: none;
}

.library-hero-story h3 {
  max-width: 8ch;
  margin: 18px 0;
  font-size: clamp(3.6rem, 7vw, 9rem);
  line-height: .78;
}

.library-feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  grid-column: 2;
}

.library-feature-pair a {
  display: grid;
  min-height: 260px;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--archive-line-dark);
  color: var(--archive-black);
  text-decoration: none;
}

.library-feature-pair strong {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: .94;
}

.archive-private {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .82fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
  padding-block: clamp(90px, 12vw, 170px);
  background:
    radial-gradient(circle at 80% 30%, rgba(88, 200, 255, .18), transparent 25rem),
    var(--archive-black);
}

.private-copy h2 {
  max-width: 8ch;
  margin: 0;
}

.private-archive-preview {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(88, 200, 255, .26);
  background: rgba(255, 247, 231, .045);
  box-shadow: 18px 18px 0 rgba(88, 200, 255, .13);
}

.private-archive-preview header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 247, 231, .18);
}

.private-archive-preview header span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 44%, var(--archive-black) 0 36%, transparent 37%),
    var(--archive-bone);
}

.private-archive-preview ul {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.private-archive-preview li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 247, 231, .12);
}

.private-archive-preview b {
  grid-row: span 2;
  color: var(--archive-blue);
  font-family: var(--ll-font-data);
}

.private-archive-preview span {
  font-family: var(--ll-font-display);
  font-size: 1.6rem;
}

.private-archive-preview em {
  color: rgba(255, 247, 231, .58);
  font-style: normal;
}

.archive-today {
  min-height: 640px;
  display: grid;
  align-content: center;
  padding-block: clamp(84px, 12vw, 160px);
  color: var(--archive-black);
  background:
    radial-gradient(circle at 86% 20%, rgba(9, 12, 16, .16), transparent 24rem),
    var(--archive-yellow);
}

.archive-today h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--archive-black);
}

.archive-today p {
  color: rgba(9, 12, 16, .7);
}

.archive-today .ll-btn-stamp {
  color: var(--archive-black);
}

@media (max-width: 1320px) {
  .archive-start-grid,
  .replay-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-path,
  .replay-timeline a {
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  .archive-hero,
  .archive-start,
  .archive-question-index,
  .archive-identity-campaign,
  .archive-replay header,
  .systems-heading,
  .system-band,
  .archive-systems .home-manifestation,
  .archive-reports,
  .archive-home #reports,
  .archive-library,
  .archive-private {
    grid-template-columns: 1fr;
  }

  .archive-hero {
    min-height: auto;
    padding-top: 128px;
  }

  .archive-hero h1 {
    font-size: clamp(4.2rem, 17vw, 8.2rem);
  }

  .archive-hero-visual {
    min-height: 520px;
  }

  .asset-letter {
    width: min(74vw, 360px);
  }

  .archive-start-grid,
  .replay-timeline,
  .library-feature-pair,
  .manifestation-archive-tools {
    grid-template-columns: 1fr;
  }

  .archive-question-aside {
    position: static;
  }

  .reports-samples,
  .library-feature-pair {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .archive-home > section {
    padding-inline: 18px;
  }

  .archive-home h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .archive-hero {
    padding-top: 118px;
  }

  .archive-hero-visual {
    min-height: 420px;
  }

  .asset-orbit-large {
    inset: 0 -42% 8% -12%;
  }

  .asset-moon-gate {
    left: 23%;
    top: 22%;
    width: 210px;
  }

  .asset-letter {
    right: 2%;
    bottom: 0;
    min-height: 210px;
  }

  .archive-path {
    min-height: 300px;
  }

  .path-symbol {
    width: 112px;
    height: 112px;
  }

  .archive-question-list a {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    min-height: 92px;
    font-size: clamp(2rem, 12vw, 4.2rem);
  }

  .identity-poster {
    min-height: 600px;
  }

  .identity-poster strong {
    margin-top: 320px;
    font-size: clamp(3.4rem, 15vw, 5.8rem);
  }

  .poster-moon {
    left: 26%;
    width: 300px;
  }

  .system-band h3,
  .library-hero-story h3 {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
  }

  .system-visual {
    min-height: 250px;
  }

  .reports-ledger a {
    grid-template-columns: 1fr;
  }
}

/* Homepage art direction v4: experimental editorial + occult archive. */
.home-artschool {
  --paper: var(--ll-paper);
  --paper-deep: var(--ll-paper-2);
  --ink: var(--ll-ink);
  --moon-black: var(--ll-black);
  --acid: var(--ll-acid);
  --signal-red: var(--ll-red);
  --cobalt: var(--ll-blue);
  --rust: #a84e34;
  --faded-gold: #ae9860;
  --hairline: 1px solid rgba(23, 23, 20, .72);
  --ll-bg-primary: var(--paper);
  --ll-bg-secondary: var(--paper-deep);
  --ll-bg-elevated: #f4eedf;
  --ll-bg-soft: #e5ddcc;
  --ll-text-primary: var(--ink);
  --ll-text-secondary: rgba(23, 23, 20, .72);
  --ll-text-muted: rgba(23, 23, 20, .56);
  --ll-line: rgba(23, 23, 20, .24);
  color: var(--ink);
  background: var(--paper);
  color-scheme: light;
}

.home-artschool::after {
  opacity: .055;
  mix-blend-mode: multiply;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, rgba(23, 23, 20, .24) 0 .45px, transparent .55px 3.2px),
    repeating-linear-gradient(92deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 7px);
  background-size: 11px 13px, 100% 9px;
}

.home-artschool .type-display,
.editorial-home h1,
.editorial-home h2,
.editorial-home h3,
.editorial-home strong {
  font-family: var(--ll-font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.home-artschool .type-ui { font-family: var(--ll-font-body); }
.home-artschool .type-data,
.editorial-home .ed-section-number,
.editorial-home small,
.editorial-home dt,
.editorial-home dd {
  font-family: var(--ll-font-data);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.home-artschool .site-header.editorial-masthead {
  display: grid;
  grid-template-areas: "brand actions" "nav actions";
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 118px;
  padding: 12px clamp(18px, 3vw, 48px) 10px;
  border: 0;
  border-bottom: var(--hairline);
  color: var(--ink);
  background: rgba(237, 230, 215, .96);
  backdrop-filter: none;
  box-shadow: none;
}

.home-artschool .site-header.editorial-masthead.is-condensed {
  min-height: 96px;
  background: rgba(237, 230, 215, .98);
}

.masthead-brandline {
  grid-area: brand;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 3vw, 50px);
  padding-bottom: 9px;
}

.home-artschool .masthead-brandline .brand {
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0;
}

.home-artschool .masthead-brandline .brand img {
  border-radius: 0;
  box-shadow: none;
}

.masthead-index { margin-left: auto; }
.masthead-index,
.masthead-date { font-size: .67rem; }
.masthead-date { color: var(--signal-red); }

.home-artschool .masthead-nav {
  grid-area: nav;
  justify-self: start;
  gap: clamp(14px, 1.7vw, 30px);
  min-width: 0;
}

.home-artschool .masthead-nav .nav-link,
.home-artschool .masthead-nav .nav-more {
  min-height: 32px;
  padding: 2px 0;
  color: var(--ink);
  font-size: clamp(.78rem, 1vw, .94rem);
  font-weight: 780;
  text-transform: uppercase;
}

.home-artschool .masthead-nav .nav-link::after { bottom: 0; background: var(--signal-red); }
.home-artschool .masthead-nav .nav-more { width: 22px; }
.home-artschool .masthead-nav .nav-panel,
.home-artschool .account-dropdown {
  border: var(--hairline);
  border-radius: 0;
  color: var(--paper);
  background: var(--moon-black);
  box-shadow: 8px 8px 0 var(--signal-red);
}

.home-artschool .header-actions {
  grid-area: actions;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: clamp(18px, 3vw, 46px);
}

.home-artschool .site-search-mini input {
  width: clamp(150px, 13vw, 210px);
  height: 44px;
  border: 0;
  border-bottom: var(--hairline);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.home-artschool .site-search-mini input::placeholder { color: rgba(23, 23, 20, .58); }
.home-artschool .site-search-submit { color: var(--ink); }
.home-artschool .my-lunar-link,
.home-artschool .account-trigger,
.home-artschool .auth-nav a {
  min-height: 44px;
  border: var(--hairline);
  border-radius: 0;
  color: var(--paper);
  background: var(--ink);
}

.home-artschool .my-lunar-link span,
.home-artschool .account-trigger .account-initial {
  border-radius: 0;
  color: var(--ink);
  background: var(--acid);
}

.home-artschool .auth-nav a:last-child {
  color: var(--ink);
  background: transparent;
}

.home-artschool .mobile-menu-button {
  border: var(--hairline);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.editorial-home {
  position: relative;
  display: block;
  padding: 0;
  overflow: clip;
  color: var(--ink);
  background: var(--paper);
}

.editorial-home * { box-sizing: border-box; }
.editorial-home a { color: inherit; }
.editorial-home p { color: rgba(23, 23, 20, .72); }
.ed-section-number { display: inline-block; font-size: .72rem; }
.ed-index-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 20px;
  border-bottom: var(--hairline);
  font-family: var(--ll-font-body);
  font-weight: 800;
  text-decoration: none;
}
.ed-index-link span { transition: transform .18s ease; }
.ed-index-link:hover span,
.ed-index-link:focus-visible span { transform: translate(4px, -3px); }

.ed-hero {
  position: relative;
  min-height: max(850px, 100svh);
  padding: clamp(170px, 17vw, 240px) clamp(20px, 4.5vw, 76px) clamp(84px, 8vw, 126px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: var(--hairline);
  background:
    linear-gradient(90deg, transparent 0 69.9%, rgba(23,23,20,.15) 70% 70.08%, transparent 70.1%),
    var(--paper);
}

.ed-hero::before {
  position: absolute;
  left: 0;
  top: 40%;
  z-index: -1;
  width: 100%;
  height: clamp(120px, 17vw, 260px);
  background: var(--acid);
  content: "";
  transform: rotate(-2deg) scaleX(1.08);
}

.ed-hero-meta {
  position: absolute;
  left: clamp(20px, 4.5vw, 76px);
  top: clamp(156px, 15vw, 216px);
  display: grid;
  gap: 4px;
  font-size: .7rem;
}

.ed-hero-titlewrap { position: relative; z-index: 3; }
.ed-registration {
  position: absolute;
  right: 44%;
  top: 13%;
  z-index: 4;
  width: 22px;
}
.ed-hero .hero-title {
  display: grid;
  max-width: 9.2ch;
  margin: 58px 0 0;
  color: var(--ink);
  font-size: 10rem;
  line-height: .76;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ed-hero .hero-title span:nth-child(2) { margin-left: .5ch; }
.ed-hero .hero-title span:nth-child(3) { margin-left: -.12ch; }
.ed-hero .hero-title span:nth-child(4) { margin-left: .88ch; color: var(--cobalt); }

.ed-margin-note {
  position: absolute;
  left: 51%;
  bottom: 8%;
  width: 20ch;
  margin: 0;
  font-size: .68rem;
  line-height: 1.5;
  transform: rotate(-5deg);
}

.ed-hero-figure {
  position: absolute;
  right: -7vw;
  top: 18%;
  z-index: 1;
  width: min(49vw, 760px);
  height: min(66vw, 780px);
  margin: 0;
}
.ed-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: grayscale(1) contrast(1.16) sepia(.18);
  mix-blend-mode: multiply;
}
.ed-hero-figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(239,61,47,.22));
  mix-blend-mode: multiply;
  pointer-events: none;
  content: "";
}
.ed-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(23,23,20,.55);
  border-radius: 50%;
  pointer-events: none;
}
.ed-orbit-one { inset: 8% -9% 14% 5%; transform: rotate(21deg); }
.ed-orbit-two { inset: 24% 8% 28% -13%; transform: rotate(-19deg); }
.ed-hero-figure figcaption {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 4%;
  z-index: 3;
  width: max-content;
  font-size: .65rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.ed-stamp {
  position: absolute;
  right: 13%;
  top: 11%;
  z-index: 3;
  padding: 10px 12px;
  border: 2px solid var(--signal-red);
  color: var(--signal-red);
  font-size: .68rem;
  transform: rotate(8deg);
}

.ed-hero-index {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(620px, 52vw);
  margin-top: clamp(44px, 7vw, 100px);
  border-top: var(--hairline);
}
.ed-hero-index a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  min-height: 52px;
  align-items: center;
  border-bottom: var(--hairline);
  text-decoration: none;
}
.ed-hero-index span { font-family: var(--ll-font-data); font-size: .7rem; }
.ed-hero-index strong { font-family: var(--ll-font-body); font-size: 1rem; font-weight: 800; text-transform: uppercase; }
.ed-hero-index i { font-style: normal; transition: transform .18s ease; }
.ed-hero-index a:hover i,
.ed-hero-index a:focus-visible i { transform: translate(4px, -4px); }
.ed-scroll { position: absolute; right: 24px; bottom: 26px; font-size: .66rem; text-decoration: none; writing-mode: vertical-rl; }

.ed-section-head {
  display: grid;
  grid-template-columns: .22fr minmax(0, .9fr) minmax(260px, .55fr);
  gap: var(--space-md);
  align-items: end;
}
.ed-section-head h2 { margin: 0; font-size: clamp(4rem, 10vw, 10rem); line-height: .78; }
.ed-section-head p { max-width: 38ch; margin: 0; font-size: 1.05rem; line-height: 1.65; }

.ed-start {
  position: relative;
  min-height: 1460px;
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  border-bottom: var(--hairline);
  background: var(--paper-deep);
}
.ed-start::before { position: absolute; right: 3%; top: 19%; width: 19vw; height: 8px; background: var(--signal-red); content: ""; transform: rotate(7deg); }
.ed-index-field { position: relative; min-height: 1080px; margin-top: var(--space-lg); }
.ed-index-item {
  position: absolute;
  display: grid;
  gap: 10px;
  min-width: 220px;
  color: var(--ink);
  text-decoration: none;
}
.ed-index-item span { font-size: .68rem; }
.ed-index-item strong { font-size: clamp(2.6rem, 5.3vw, 6.4rem); line-height: .78; text-transform: uppercase; }
.ed-index-item em { max-width: 27ch; font-size: .9rem; font-style: normal; line-height: 1.45; }
.ed-index-item img {
  position: absolute;
  z-index: -1;
  width: clamp(130px, 18vw, 260px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1) contrast(1.15);
  transition: opacity .18s ease, transform .24s ease;
}
.ed-index-item:hover img,
.ed-index-item:focus-visible img { opacity: .82; transform: rotate(-3deg) scale(1.02); }
.ed-index-item:hover strong,
.ed-index-item:focus-visible strong { text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 8px; }
.ed-index-love { left: 2%; top: 4%; }
.ed-index-love img { left: 70%; top: -38%; }
.ed-index-chart { right: 5%; top: 12%; text-align: right; }
.ed-index-chart img { right: 68%; top: -25%; }
.ed-index-tarot { left: 30%; top: 38%; }
.ed-index-tarot img { left: 72%; top: -30%; }
.ed-index-career { right: 0; top: 54%; }
.ed-index-career img { right: 78%; top: -24%; }
.ed-index-identity { left: 4%; top: 70%; }
.ed-index-identity img { left: 78%; top: -34%; }
.ed-index-replay { left: 48%; top: 85%; }
.ed-index-replay img { right: 74%; top: -25%; }

.ed-question-strip {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  color: var(--paper);
  background: var(--moon-black);
}
.ed-question-strip > div { position: sticky; top: 130px; align-self: start; }
.ed-question-strip h2 { max-width: 8ch; margin: 18px 0 0; color: var(--paper); font-size: clamp(3.2rem, 6vw, 7rem); line-height: .84; }
.ed-question-strip ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(237,230,215,.42); }
.ed-question-strip li { border-bottom: 1px solid rgba(237,230,215,.42); }
.ed-question-strip a {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 98px;
  align-items: center;
  color: var(--paper);
  font-family: var(--ll-font-display);
  font-size: clamp(2rem, 4.5vw, 5.4rem);
  line-height: .84;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.ed-question-strip a span { color: var(--acid); font-family: var(--ll-font-data); font-size: .68rem; }
.ed-question-strip a:hover,
.ed-question-strip a:focus-visible { color: var(--acid); transform: translateX(5px); }

.ed-objects {
  position: relative;
  min-height: 1500px;
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  overflow: hidden;
  border-bottom: var(--hairline);
  background:
    linear-gradient(90deg, transparent 0 49.96%, rgba(23,23,20,.16) 50%, transparent 50.04%),
    var(--paper);
}
.ed-objects > header { position: relative; z-index: 4; }
.ed-objects > header h2 { max-width: 8ch; margin: 26px 0 0; font-size: clamp(5rem, 11vw, 12rem); line-height: .74; text-transform: uppercase; }
.ed-artifact {
  position: absolute;
  display: grid;
  align-content: end;
  color: inherit;
  text-decoration: none;
  box-shadow: 18px 22px 0 rgba(23,23,20,.18);
  transition: transform .24s ease, box-shadow .24s ease;
}
.ed-artifact:hover,
.ed-artifact:focus-visible { box-shadow: 27px 32px 0 rgba(23,23,20,.2); }
.ed-artifact > span,
.ed-artifact > small { position: relative; z-index: 2; font-size: .65rem; }
.ed-artifact > strong { position: relative; z-index: 2; font-size: clamp(3rem, 6vw, 7rem); line-height: .78; text-transform: uppercase; }
.ed-artifact > b { position: relative; z-index: 2; margin-top: 18px; font-family: var(--ll-font-body); font-size: .82rem; text-transform: uppercase; }
.ed-artifact-identity {
  left: 43%;
  top: 17%;
  width: min(43vw, 620px);
  min-height: 720px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--paper);
  background: var(--cobalt);
  transform: rotate(-2.5deg);
}
.ed-artifact-identity:hover { transform: rotate(-1deg) translateY(-8px); }
.artifact-moon {
  position: absolute;
  left: 50%;
  top: 17%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  transform: translateX(-50%);
}
.artifact-moon::after { position: absolute; inset: 2% -6% 8% 35%; border-radius: 50%; background: var(--cobalt); content: ""; }
.ed-artifact-replay {
  left: 8%;
  top: 58%;
  width: min(46vw, 680px);
  min-height: 530px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--paper);
  background: var(--moon-black);
  transform: rotate(1.5deg);
}
.ed-artifact-replay:hover { transform: rotate(.3deg) translateY(-8px); }
.artifact-film { position: absolute; inset: 13% 9% 43%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.artifact-film i { border: 1px solid rgba(237,230,215,.44); background: linear-gradient(150deg, rgba(239,61,47,.42), transparent), #2b2b29; }
.artifact-film i:nth-child(2) { transform: translateY(18px); }
.artifact-film i:nth-child(3) { transform: translateY(-11px); }
.ed-artifact-book {
  right: 7%;
  top: 69%;
  width: min(34vw, 470px);
  min-height: 610px;
  padding: clamp(24px, 4vw, 46px);
  color: var(--ink);
  background: var(--signal-red);
  transform: rotate(2deg);
}
.ed-artifact-book:hover { transform: rotate(.7deg) translateY(-8px); }
.artifact-bookmark { position: absolute; right: 11%; top: -14px; width: 54px; height: 180px; border: var(--hairline); background: var(--acid); }

.ed-systems {
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  background: var(--paper-deep);
}
.ed-systems > .ed-section-head { margin-bottom: var(--space-xl); }
.ed-system {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
  min-height: 820px;
  padding: var(--space-lg) 0;
  border-top: var(--hairline);
}
.ed-system h3 { max-width: 8ch; margin: 22px 0; font-size: clamp(4rem, 8vw, 9rem); line-height: .78; }
.ed-system p { max-width: 46ch; font-size: 1.08rem; line-height: 1.7; }
.system-atlas { position: relative; min-height: 620px; }
.system-atlas img { width: 112%; height: 620px; object-fit: cover; filter: grayscale(.2) contrast(1.12); clip-path: circle(43% at 49% 50%); }
.system-atlas::before,
.system-atlas::after { position: absolute; z-index: 2; border: 1px solid var(--cobalt); border-radius: 50%; pointer-events: none; content: ""; }
.system-atlas::before { inset: 4% -8% 5% 1%; }
.system-atlas::after { inset: 17% 6% 20% -10%; }
.system-atlas span { position: absolute; right: -4%; bottom: 3%; z-index: 3; font-size: .66rem; writing-mode: vertical-rl; }
.ed-system-tarot { grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); color: var(--paper); background: var(--signal-red); margin-inline: calc(clamp(20px, 4.5vw, 76px) * -1); padding-inline: clamp(20px, 4.5vw, 76px); }
.ed-system-tarot > div:first-child { grid-column: 2; grid-row: 1; }
.ed-system-tarot > div:last-child { grid-column: 1; grid-row: 1; }
.ed-system-tarot p { color: rgba(237,230,215,.78); }
.system-tarot-print { position: relative; min-height: 650px; }
.system-tarot-print img { position: absolute; right: 5%; top: 0; width: min(32vw, 390px); height: 650px; object-fit: cover; object-position: center; border: 14px solid var(--paper); filter: contrast(1.08) saturate(.85); transform: rotate(5deg); box-shadow: -28px 28px 0 var(--moon-black); }
.system-tarot-print span { position: absolute; right: 0; top: -42px; z-index: 2; font-size: 1rem; color: var(--acid); }
.system-bazi-study { position: relative; min-height: 620px; }
.system-bazi-study img { width: 100%; height: 470px; object-fit: cover; filter: grayscale(.25) contrast(1.08); }
.system-bazi-study dl { position: absolute; left: 8%; right: -8%; bottom: 0; display: grid; grid-template-columns: repeat(4,1fr); margin: 0; border: var(--hairline); background: var(--paper); }
.system-bazi-study dl div { display: grid; min-height: 150px; place-items: center; border-right: var(--hairline); }
.system-bazi-study dl div:last-child { border: 0; }
.system-bazi-study dt { font-size: .62rem; }
.system-bazi-study dd { margin: 0; font-family: var(--ll-font-display); font-size: 3rem; }

.home-artschool .home-manifestation {
  position: relative;
  min-height: 1250px;
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  overflow: hidden;
  border-top: var(--hairline);
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(49,87,213,.16) 40px 41px),
    var(--paper);
}
.home-artschool .home-manifestation::after { position: absolute; right: 4%; top: 7%; width: 160px; height: 160px; border: 3px solid var(--signal-red); border-radius: 50%; opacity: .62; content: ""; transform: rotate(8deg); }
.home-artschool .home-manifestation > header { position: relative; z-index: 3; width: min(50%, 680px); }
.home-artschool .home-manifestation > header > strong { display: block; margin-top: 18px; color: var(--signal-red); font-family: var(--ll-font-data); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.home-artschool .home-manifestation h2 { margin: 26px 0; font-size: clamp(4.6rem, 9vw, 10rem); line-height: .76; text-transform: uppercase; }
.home-artschool .home-manifestation > header p { max-width: 42ch; color: rgba(23, 23, 20, .72); font-size: 1.08rem; line-height: 1.65; }
.manifest-desk { position: relative; min-height: 760px; margin-top: 40px; }
.manifest-note {
  position: absolute;
  display: grid;
  gap: 12px;
  width: min(27vw, 370px);
  min-height: 430px;
  padding: 22px;
  border: var(--hairline);
  color: var(--ink);
  background: #f5eedf;
  box-shadow: 12px 14px 0 rgba(23,23,20,.14);
  text-decoration: none;
  transition: rotate .2s ease, translate .2s ease;
}
.manifest-note img { width: 100%; height: 185px; object-fit: cover; filter: grayscale(.2) contrast(1.08); }
.manifest-note span { font-size: .62rem; }
.manifest-note strong { font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: .78; text-transform: uppercase; }
.manifest-note small { font-family: var(--ll-font-body); font-size: .82rem; letter-spacing: 0; line-height: 1.45; text-transform: none; }
.manifest-note:hover,
.manifest-note:focus-visible { rotate: 0deg; translate: 0 -8px; }
.note-one { left: 0; top: 15%; rotate: -1.8deg; }
.note-two { left: 24%; top: 0; rotate: 2.1deg; }
.note-three { left: 51%; top: 23%; rotate: -.6deg; }
.note-four { right: 0; top: -10%; rotate: 1.1deg; }

[data-editorial-reports] {
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  color: var(--paper);
  background: var(--moon-black);
}
[data-editorial-reports] > header { display: grid; grid-template-columns: .22fr 1fr .55fr; gap: var(--space-md); align-items: end; }
[data-editorial-reports] > header h2 { margin: 0; font-size: clamp(4rem, 9vw, 10rem); line-height: .77; text-transform: uppercase; }
[data-editorial-reports] > header p { margin: 0; color: rgba(237,230,215,.7); font-size: 1.05rem; line-height: 1.65; }
.edition-catalogue { display: grid; grid-template-columns: 1fr .82fr 1.08fr; gap: clamp(18px,3vw,42px); align-items: end; margin-top: var(--space-lg); }
.edition {
  position: relative;
  display: grid;
  min-height: 610px;
  align-content: space-between;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(237,230,215,.42);
  color: inherit;
  text-decoration: none;
}
.edition::before { position: absolute; inset: 13px; border: 1px solid currentColor; opacity: .2; content: ""; }
.edition > span,
.edition > strong,
.edition > em,
.edition > small { position: relative; z-index: 2; }
.edition span,
.edition small { font-size: .64rem; }
.edition strong { font-size: clamp(3rem,5vw,6rem); line-height: .78; text-transform: uppercase; }
.edition em { display: flex; align-items: flex-start; font-style: normal; }
.edition em b { font-family: var(--ll-font-display); font-size: clamp(4rem,7vw,8rem); font-weight: 400; line-height: .72; }
.edition em i { font-family: var(--ll-font-data); font-size: 1rem; font-style: normal; }
.edition-entry { min-height: 540px; color: var(--moon-black); background: var(--acid); transform: rotate(-1.4deg); }
.edition-depth { min-height: 660px; color: var(--paper); background: var(--cobalt); transform: translateY(46px) rotate(.7deg); }
.edition-complete { min-height: 720px; color: var(--paper); background: var(--signal-red); transform: rotate(1.1deg); }
.sample-index { display: grid; grid-template-columns: 1fr 1fr .75fr; gap: 0; margin-top: calc(var(--space-lg) + 64px); border-top: 1px solid rgba(237,230,215,.35); border-left: 1px solid rgba(237,230,215,.35); }
.sample-index a { display: grid; min-height: 170px; align-content: end; gap: 10px; padding: 20px; border-right: 1px solid rgba(237,230,215,.35); border-bottom: 1px solid rgba(237,230,215,.35); text-decoration: none; }
.sample-index span,
.sample-index small { color: rgba(237,230,215,.62); font-size: .64rem; }
.sample-index strong { font-size: clamp(1.5rem,2.6vw,3rem); line-height: .9; }
.sample-index a:last-child { color: var(--moon-black); background: var(--paper); }

.ed-library {
  position: relative;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: var(--space-lg);
  min-height: 1000px;
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  overflow: hidden;
  background: var(--paper);
}
.ed-library > header h2 { margin: 24px 0 34px; font-size: clamp(5rem,10vw,11rem); line-height: .74; text-transform: uppercase; }
.library-contents { position: relative; z-index: 2; margin: 0; padding: 0; list-style: none; border-top: var(--hairline); }
.library-contents li { border-bottom: var(--hairline); }
.library-contents a { display: grid; grid-template-columns: 130px auto 1fr auto; gap: 18px; min-height: 112px; align-items: center; text-decoration: none; }
.library-contents span,
.library-contents small { font-family: var(--ll-font-data); font-size: .64rem; text-transform: uppercase; }
.library-contents strong { font-size: clamp(1.8rem,3.2vw,3.8rem); line-height: .86; }
.library-contents i { align-self: end; margin-bottom: 32px; border-bottom: 1px dotted currentColor; }
.library-contents a:hover strong,
.library-contents a:focus-visible strong { color: var(--cobalt); transform: translateX(4px); }
.library-figure { position: absolute; left: 5%; bottom: 4%; width: min(32vw,440px); min-height: 350px; border: var(--hairline); background: var(--paper-deep); transform: rotate(-4deg); }
.library-figure > span { position: absolute; right: 16px; top: 8px; font-family: var(--ll-font-display); font-size: 7rem; color: var(--signal-red); }
.library-figure small { position: absolute; left: 18px; bottom: 18px; font-size: .62rem; }
.library-moon { position: absolute; left: 17%; top: 20%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: var(--moon-black); }
.library-moon::after { position: absolute; inset: -3% -19% 3% 38%; border-radius: 50%; background: var(--paper-deep); content: ""; }

.ed-private {
  display: grid;
  grid-template-columns: 1fr minmax(360px,.7fr);
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  color: var(--paper);
  background: var(--cobalt);
}
.ed-private h2 { max-width: 9ch; margin: 24px 0; font-size: clamp(4.5rem,9vw,10rem); line-height: .77; }
.ed-private p { max-width: 46ch; color: rgba(237,230,215,.76); font-size: 1.06rem; line-height: 1.68; }
.ed-private .ed-index-link { color: var(--acid); }
.private-dossier { position: relative; padding: clamp(24px,4vw,48px); color: var(--ink); background: var(--paper); box-shadow: 22px 22px 0 var(--acid); transform: rotate(2deg); }
.private-dossier header { display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; padding-bottom: 20px; border-bottom: var(--hairline); }
.private-crescent { width: 42px; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }
.private-crescent::after { display: block; width: 90%; height: 90%; margin: -4% 0 0 33%; border-radius: 50%; background: var(--paper); content: ""; }
.private-dossier ol { margin: 22px 0 56px; padding: 0; list-style: none; }
.private-dossier li { display: grid; grid-template-columns: 48px 1fr; gap: 6px 14px; padding: 16px 0; border-bottom: 1px solid rgba(23,23,20,.28); }
.private-dossier li b { grid-row: span 2; font-family: var(--ll-font-data); color: var(--cobalt); }
.private-dossier li span { font-family: var(--ll-font-display); font-size: 1.55rem; }
.private-dossier li em { font-size: .8rem; font-style: normal; }
.archive-stamp { display: inline-block; padding: 7px 9px; border: 2px solid var(--signal-red); color: var(--signal-red); font-size: .62rem; transform: rotate(-4deg); }

.ed-today {
  min-height: 770px;
  padding: var(--space-xl) clamp(20px, 4.5vw, 76px);
  color: var(--ink);
  background: var(--acid);
}
.ed-today h2 { max-width: 10ch; margin: 28px 0; font-size: clamp(5rem,11vw,12rem); line-height: .75; text-transform: uppercase; }
.ed-today p { max-width: 40ch; color: rgba(23,23,20,.72); font-size: 1.1rem; }
.ed-today > div { display: grid; width: min(760px,100%); margin-top: var(--space-md); border-top: var(--hairline); }
.ed-today a { display: grid; grid-template-columns: 1fr auto; min-height: 70px; align-items: center; border-bottom: var(--hairline); font-size: clamp(1.3rem,2.6vw,2.6rem); font-weight: 800; text-decoration: none; text-transform: uppercase; }

.home-artschool .site-footer {
  border-top: var(--hairline);
  color: rgba(237,230,215,.7);
  background: var(--moon-black);
}
.home-artschool .site-footer .brand { color: var(--paper); }

.home-motion-ready .editorial-home [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.home-motion-ready .editorial-home [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .home-artschool .site-search-mini input { width: 46px; padding-left: 0; color: transparent; }
  .home-artschool .site-search-mini:not(.is-expanded) input::placeholder { color: transparent; }
  .home-artschool .site-search-mini.is-expanded { position: absolute; right: 18px; top: 64px; z-index: 120; padding: 8px; background: var(--paper); border: var(--hairline); }
  .home-artschool .site-search-mini.is-expanded input { width: 220px; color: var(--ink); }
  .ed-hero-figure { right: -13vw; }
  .edition-catalogue { gap: 18px; }
}

@media (max-width: 1050px) {
  .home-artschool .site-header.editorial-masthead { grid-template-areas: "brand menu actions"; grid-template-columns: minmax(0,1fr) auto auto; min-height: 82px; }
  .masthead-index,
  .masthead-date { display: none; }
  .masthead-brandline { padding: 0; }
  .home-artschool .mobile-menu-button { display: inline-flex; grid-area: menu; min-height: 44px; align-items: center; justify-content: center; }
  .home-artschool .masthead-nav { position: fixed; inset: 82px 0 auto; display: none; max-height: calc(100vh - 82px); padding: 20px; overflow-y: auto; color: var(--paper); background: var(--moon-black); }
  .home-artschool .masthead-nav.is-open { display: grid; }
  .home-artschool .masthead-nav .nav-link,
  .home-artschool .masthead-nav .nav-more { color: var(--paper); }
  .home-artschool .header-actions { margin-left: 0; }
  .home-artschool .auth-nav a:last-child { display: none; }
  .ed-hero { padding-top: 128px; }
  .ed-hero .hero-title { font-size: 7.5rem; }
  .ed-hero-figure { opacity: .6; }
  .ed-section-head,
  .ed-question-strip,
  .ed-system,
  [data-editorial-reports] > header,
  .ed-library,
  .ed-private { grid-template-columns: 1fr; }
  .ed-section-head p { max-width: 55ch; }
  .ed-objects { min-height: 1720px; }
  .ed-artifact-identity { left: 38%; width: 55vw; }
  .ed-artifact-replay { left: 4%; top: 56%; width: 58vw; }
  .ed-artifact-book { top: 70%; width: 43vw; }
  .ed-system { min-height: auto; }
  .ed-system-tarot > div:first-child,
  .ed-system-tarot > div:last-child { grid-column: auto; grid-row: auto; }
  .system-tarot-print img { left: 14%; right: auto; width: min(60vw,390px); }
  .home-artschool .home-manifestation { min-height: 1600px; }
  .home-artschool .home-manifestation > header { width: 80%; }
  .manifest-note { width: min(42vw,370px); }
  .note-one { left: 0; top: 5%; }
  .note-two { left: 48%; top: 0; }
  .note-three { left: 5%; top: 53%; }
  .note-four { right: 2%; top: 49%; }
  .edition-catalogue { grid-template-columns: 1fr 1fr; }
  .edition-complete { grid-column: 1 / -1; width: 62%; justify-self: center; }
  .sample-index { grid-template-columns: 1fr; }
  .library-figure { position: relative; left: auto; bottom: auto; width: 68%; margin-top: 44px; }
}

@media (max-width: 760px) {
  .ll-canvas { grid-template-columns: repeat(6, minmax(0, 1fr)); width: calc(100% - 1.25rem); }
  .ll-mega { --ll-mega-size: 6rem; line-height: .78; }
  .ll-margin-note { writing-mode: horizontal-tb; transform: none; }
  .ll-paper-object { transform: none !important; }
  .home-artschool .site-header.editorial-masthead { padding-inline: 14px; }
  .home-artschool .masthead-brandline .brand { font-size: 1.2rem; }
  .home-artschool .masthead-brandline .brand img { width: 38px; height: 38px; }
  .home-artschool .header-actions .site-search-mini { display: none; }
  .home-artschool .account-label { display: none; }
  .home-artschool .account-trigger { padding: 0; border: 0; background: transparent; }
  .home-artschool .account-trigger .account-initial { width: 44px; height: 44px; display: grid; place-items: center; }
  .home-artschool .auth-nav a { padding-inline: 12px; font-size: .78rem; }
  .ed-hero { min-height: 940px; padding-inline: 18px; background: var(--paper); }
  .ed-hero::before { top: 46%; height: 145px; }
  .ed-hero-meta { left: 18px; top: 116px; }
  .ed-registration { right: 4%; top: 22%; }
  .ed-hero .hero-title { position: relative; z-index: 4; margin-top: 100px; font-size: 7rem; }
  .ed-hero .hero-title span:nth-child(2),
  .ed-hero .hero-title span:nth-child(4) { margin-left: .12ch; }
  .ed-hero-figure { right: -34%; top: 35%; width: 92vw; height: 510px; opacity: .76; }
  .ed-margin-note { left: 8%; bottom: -180px; }
  .ed-hero-index { width: 72%; margin-top: 330px; }
  .ed-scroll { display: none; }
  .ed-section-head h2,
  .ed-question-strip h2 { font-size: clamp(3.4rem,17vw,5.4rem); }
  .ed-start { min-height: auto; padding-inline: 18px; }
  .ed-start::before { display: none; }
  .ed-index-field { display: grid; min-height: auto; gap: 0; margin-top: 54px; border-top: var(--hairline); }
  .ed-index-item { position: relative; inset: auto; min-height: 220px; padding: 22px 0; border-bottom: var(--hairline); }
  .ed-index-item strong { font-size: clamp(2.9rem,15vw,4.8rem); }
  .ed-index-item img { right: 0; left: auto; top: 20px; width: 40%; opacity: .26; }
  .ed-index-item em { max-width: 56%; }
  .ed-question-strip { padding-inline: 18px; }
  .ed-question-strip > div { position: static; }
  .ed-question-strip a { grid-template-columns: 38px 1fr; min-height: 80px; font-size: clamp(1.8rem,9vw,3.5rem); }
  .ed-objects { min-height: auto; padding-inline: 18px; }
  .ed-objects > header h2 { font-size: clamp(4.2rem,19vw,6.4rem); }
  .ed-artifact { position: relative; inset: auto; width: 92%; min-height: 560px; margin: 44px 0 0; }
  .ed-artifact-identity { margin-left: auto; transform: rotate(-1.5deg); }
  .ed-artifact-replay { min-height: 490px; transform: rotate(1deg); }
  .ed-artifact-book { width: 84%; min-height: 540px; margin-left: auto; }
  .ed-systems { padding-inline: 18px; }
  .ed-system h3 { font-size: clamp(3.4rem,17vw,5.8rem); }
  .system-atlas,
  .system-bazi-study { min-height: 430px; }
  .system-atlas img { height: 430px; }
  .system-bazi-study img { height: 330px; }
  .system-bazi-study dl { left: 0; right: 0; }
  .system-bazi-study dl div { min-height: 100px; }
  .system-tarot-print { min-height: 560px; }
  .system-tarot-print img { left: 8%; width: 72vw; height: 520px; }
  .home-artschool .home-manifestation { min-height: auto; padding-inline: 18px; }
  .home-artschool .home-manifestation > header { width: 100%; }
  .home-artschool .home-manifestation h2 { font-size: clamp(4rem,18vw,6.2rem); }
  .manifest-desk { display: grid; min-height: auto; gap: 32px; margin-top: 70px; }
  .manifest-note { position: relative; inset: auto; width: 92%; min-height: 420px; }
  .manifest-note:nth-child(even) { margin-left: auto; }
  [data-editorial-reports] { padding-inline: 18px; }
  [data-editorial-reports] > header h2 { font-size: clamp(3.8rem,17vw,6rem); }
  .edition-catalogue { grid-template-columns: 1fr; }
  .edition,
  .edition-complete { grid-column: auto; width: 92%; min-height: 560px; }
  .edition-depth { margin-left: auto; transform: rotate(.7deg); }
  .edition-complete { justify-self: end; }
  .ed-library { padding-inline: 18px; }
  .ed-library > header h2 { font-size: clamp(5rem,24vw,8rem); }
  .library-contents a { grid-template-columns: 1fr auto; gap: 8px; min-height: 130px; }
  .library-contents span { grid-column: 1 / -1; align-self: end; }
  .library-contents i { display: none; }
  .library-contents strong { font-size: clamp(1.8rem,9vw,3rem); }
  .library-figure { width: 88%; }
  .ed-private { padding-inline: 18px; }
  .ed-private h2 { font-size: clamp(4rem,18vw,6.2rem); }
  .private-dossier { box-shadow: 12px 12px 0 var(--acid); }
  .private-dossier header { grid-template-columns: 42px 1fr; }
  .private-dossier header small { grid-column: 2; }
  .ed-today { min-height: 650px; padding-inline: 18px; }
  .ed-today h2 { font-size: clamp(4.2rem,20vw,6.8rem); }
}

@media (max-width: 480px) {
  .ed-hero .hero-title {
    max-width: 100%;
    font-size: 3.75rem;
    line-height: .83;
    letter-spacing: 0;
  }

  .ed-hero .hero-title span:nth-child(4) { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-artschool *,
  .home-artschool *::before,
  .home-artschool *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .home-motion-ready .editorial-home [data-reveal] { opacity: 1; transform: none; }
}
