/* ============================================
   Divine Being · Stone & Amethyst
   Gray stone canvas · white relief · purple accent
   Heavy contrast shadows behind floating elements
   ============================================ */

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

:root {
  /* Stone — deep cosmic charcoal. Stars need it dark. */
  --stone:       #1a1c25;
  --stone-1:     #242631;
  --stone-2:     #14161e;
  --stone-3:     #0d0e15;
  --stone-deep:  #08090d;

  /* Paper — pure white cards floating on stone */
  --paper:       #ffffff;
  --paper-soft:  #f6f4fb;
  --paper-2:     #ece9f3;
  --paper-rule:  rgba(255, 255, 255, 0.5);

  /* Ink — deep, used on white cards */
  --ink:         #1c1828;
  --ink-2:       #383047;
  --ink-3:       #6b6280;
  --ink-4:       #9c95ad;
  --ink-rule:    rgba(28, 24, 40, 0.12);
  --ink-hair:    rgba(28, 24, 40, 0.06);

  /* Cream — used on stone (instead of ink) */
  --cream:       #ffffff;
  --cream-2:     rgba(255, 255, 255, 0.82);
  --cream-3:     rgba(255, 255, 255, 0.58);
  --cream-4:     rgba(255, 255, 255, 0.34);
  --cream-rule:  rgba(255, 255, 255, 0.18);
  --cream-hair:  rgba(255, 255, 255, 0.08);

  /* Purple — single primary accent, the regalia */
  --purple:        #8b5cf6;
  --purple-deep:   #6d28d9;
  --purple-bright: #b39afa;
  --purple-glow:   rgba(139, 92, 246, 0.42);
  --purple-soft:   rgba(139, 92, 246, 0.16);

  /* Shadows — multi-layer for premium depth */
  --shadow-card:
    0 2px 4px rgba(0, 0, 0, 0.18),
    0 18px 36px -12px rgba(0, 0, 0, 0.55),
    0 40px 80px -30px rgba(0, 0, 0, 0.5);
  --shadow-card-strong:
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 28px 56px -16px rgba(0, 0, 0, 0.6),
    0 60px 120px -40px rgba(0, 0, 0, 0.55);
  --shadow-tight:
    0 4px 10px -4px rgba(0, 0, 0, 0.4),
    0 14px 28px -10px rgba(0, 0, 0, 0.35);
  --shadow-button:
    0 4px 12px -2px rgba(109, 40, 217, 0.5),
    0 8px 24px -8px rgba(0, 0, 0, 0.45);

  /* Type families */
  --display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --serif:   'Spectral', 'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;

  --max:        1320px;
  --max-narrow: 880px;
  --max-prose:  600px;

  --pad-section: clamp(96px, 13vw, 200px);
}

html { font-size: 16px; scroll-behavior: smooth; background: var(--stone); }

body {
  font-family: var(--serif);
  font-weight: 400;
  background:
    url('/stars.svg') center / cover no-repeat fixed,
    radial-gradient(ellipse 90% 60% at 70% 10%, rgba(139, 92, 246, 0.16), transparent 55%) fixed,
    radial-gradient(ellipse 70% 50% at 20% 90%, rgba(70, 50, 140, 0.18), transparent 50%) fixed,
    linear-gradient(175deg, #1c1e29 0%, #14161f 40%, #0a0b11 100%) fixed;
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'onum';
  min-height: 100vh;
  overflow-x: hidden;
  padding:
    env(safe-area-inset-top)
    env(safe-area-inset-right)
    env(safe-area-inset-bottom)
    env(safe-area-inset-left);
}

img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--purple); color: var(--cream); }
a { color: inherit; text-decoration: none; }

/* ============================================
   Stone canvas — gradient + stars now live on <body>.
   .cosmos is a transparent overlay for grain only.
   ============================================ */
.cosmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0),
    radial-gradient(circle at 3px 3px, rgba(0, 0, 0, 0.05) 0.5px, transparent 0);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.35;
  animation: lp-twinkle 6s ease-in-out infinite alternate;
}
@keyframes lp-twinkle {
  0%   { opacity: 0.3; }
  50%  { opacity: 0.45; }
  100% { opacity: 0.32; }
}
/* Ensure all content sits above the grain overlay */
main, .nav, .footer { position: relative; z-index: 1; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 56px);
  background: rgba(60, 62, 70, 0.72) !important;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--cream-hair);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 11px;
  text-transform: uppercase;
}
.nav-glyph {
  width: 24px; height: 24px;
  color: var(--purple-bright);
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 40px); align-items: center; }
.nav-links a {
  color: var(--cream-2);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 200ms ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--purple-bright); }
.nav-links a.is-active::after {
  content: ''; position: absolute; left: 50%; bottom: -6px;
  transform: translateX(-50%); width: 14px; height: 1.5px; background: var(--purple-bright);
}

.nav-toggle {
  display: none;
  background: none; border: none; width: 44px; height: 44px;
  cursor: pointer; flex-direction: column; justify-content: center;
  gap: 5px; padding: 12px;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px; background: var(--cream);
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(45, 47, 54, 0.97);
    backdrop-filter: blur(28px);
    padding: 20px 32px 28px;
    border-bottom: 1px solid var(--cream-hair);
    transform: translateY(-120%);
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-hair);
    text-align: left;
  }
  .nav-links a:last-child { border-bottom: none; }
}

/* ============================================
   Buttons
   ============================================ */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  min-height: 50px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  border: 1.5px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
}
.lp-btn-primary {
  background: var(--purple);
  color: var(--cream);
  border-color: var(--purple);
  box-shadow: var(--shadow-button);
}
.lp-btn-primary:hover {
  background: var(--purple-bright);
  border-color: var(--purple-bright);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow:
    0 6px 22px -4px rgba(139, 92, 246, 0.6),
    0 14px 40px -10px rgba(0, 0, 0, 0.5);
}
.lp-btn-terra {
  /* alias kept for HTML compatibility — now purple */
  background: var(--purple);
  color: var(--cream);
  border-color: var(--purple);
  box-shadow: var(--shadow-button);
}
.lp-btn-terra:hover {
  background: var(--purple-bright);
  border-color: var(--purple-bright);
  color: var(--ink);
  transform: translateY(-2px);
}
.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-color: var(--cream-rule);
  backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.45);
}
.lp-btn-large { padding: 18px 38px; min-height: 56px; font-size: 11.5px; }

.lp-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-bright);
  font-weight: 600;
  border-bottom: 1.5px solid var(--purple-bright);
  padding-bottom: 4px;
  transition: gap 200ms ease, color 200ms ease;
}
.lp-link:hover { gap: 14px; color: var(--cream); border-bottom-color: var(--cream); }

/* Chapter markers removed — were colliding with content */
.lp-chapter { display: none; }

/* ============================================
   ATRIUM (hero)
   ============================================ */
.lp-atrium {
  position: relative;
  min-height: calc(100vh - 66px);
  padding: clamp(60px, 10vh, 110px) clamp(24px, 6vw, 80px) clamp(80px, 12vh, 140px);
  display: flex; align-items: center;
  overflow: hidden;
}

/* Subtle bloom behind hero — quiet */
.lp-atrium::before {
  content: '';
  position: absolute;
  top: 50%; right: 5%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 60%);
  transform: translateY(-50%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.lp-atrium-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr clamp(360px, 42vw, 540px);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-atrium-text { position: relative; }
.lp-atrium-imprint {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 14px;
}
.lp-atrium-imprint::before {
  content: ''; width: 24px; height: 1.5px; background: var(--purple-bright);
}
.lp-atrium-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(52px, 8.6vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 8px;
}
.lp-atrium-title em {
  display: block;
  font-style: italic;
  color: var(--purple-bright);
  letter-spacing: -0.045em;
  margin-top: -0.04em;
}
.lp-atrium-rule {
  display: block;
  width: 64px; height: 1.5px;
  background: var(--cream);
  margin: 36px 0 28px;
  opacity: 0.85;
}
.lp-atrium-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--cream-2);
  margin-bottom: 12px;
  line-height: 1.3;
  max-width: 30ch;
}
.lp-atrium-byline {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 48px;
  font-weight: 500;
}
.lp-atrium-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.lp-atrium-cosmo {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}
.lp-atrium-cosmo svg { width: 100%; height: 100%; }

@media (max-width: 880px) {
  .lp-atrium { padding-top: clamp(40px, 8vh, 80px); }
  .lp-atrium-grid { grid-template-columns: 1fr; gap: 56px; }
  .lp-atrium-cosmo { order: -1; max-width: 320px; margin: 0 auto; }
  .lp-atrium-title em { margin-left: 0; }
}

/* ============================================
   COLOPHON STRIP
   ============================================ */
.lp-colophon {
  border-top: 1px solid var(--cream-hair);
  border-bottom: 1px solid var(--cream-hair);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  padding: 22px clamp(20px, 5vw, 56px);
  position: relative;
}
.lp-colophon-row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 3vw, 32px);
  align-items: center;
}
.lp-colophon-cell {
  display: flex; align-items: baseline; gap: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--cream-hair);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-2);
  font-weight: 500;
}
.lp-colophon-cell:first-child { border-left: none; padding-left: 0; }
.lp-colophon-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--purple-bright);
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 760px) {
  .lp-colophon-row { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .lp-colophon-cell:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ============================================
   Generic section
   ============================================ */
.lp-section { padding: var(--pad-section) clamp(24px, 5vw, 56px); position: relative; }

.lp-overline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--purple-bright);
  font-weight: 600;
}

.lp-display-1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--cream);
}
.lp-display-2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.lp-display-2 em {
  font-style: italic;
  color: var(--purple-bright);
  font-weight: 300;
}
.lp-display-3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.lp-display-3 em { font-style: italic; color: var(--purple-bright); font-weight: 400; }

/* ============================================
   ORNAMENTS between sections
   ============================================ */
.lp-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  padding: 12px 0 0;
  color: var(--purple-bright);
  opacity: 0.7;
}
.lp-ornament svg { width: 28px; height: 28px; }
.lp-ornament::before,
.lp-ornament::after {
  content: '';
  width: clamp(60px, 14vw, 140px);
  height: 1px;
  background: var(--cream-rule);
}

/* ============================================
   PROVERB
   ============================================ */
.lp-proverb {
  padding: clamp(120px, 16vw, 200px) clamp(24px, 5vw, 56px);
  position: relative;
}
.lp-proverb-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-proverb-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 16vw, 200px);
  color: var(--purple-bright);
  line-height: 0.6;
  margin-bottom: -0.25em;
  opacity: 0.7;
  user-select: none;
}
.lp-proverb-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 22ch;
  margin: 0 auto 32px;
}
.lp-proverb-attr {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
}
.lp-proverb-attr::before,
.lp-proverb-attr::after {
  content: ''; width: 26px; height: 1px; background: var(--purple-bright);
}

/* ============================================
   THE LIBRARY (specimen plates)
   ============================================ */
.lp-library {
  padding: var(--pad-section) clamp(24px, 5vw, 56px);
  position: relative;
}

.lp-library-head {
  max-width: var(--max);
  margin: 0 auto clamp(72px, 10vw, 120px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--cream-rule);
}
.lp-library-head-left .lp-overline { margin-bottom: 18px; display: block; }
.lp-library-head-left p {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
}
.lp-library-head-right h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.lp-library-head-right h2 em {
  font-style: italic;
  color: var(--purple-bright);
}
.lp-library-head-right p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 56ch;
  margin-top: 22px;
}

@media (max-width: 880px) {
  .lp-library-head { grid-template-columns: 1fr; gap: 24px; }
}

.lp-plates {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(80px, 12vw, 160px);
}

.lp-plate {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  position: relative;
}
.lp-plate:nth-child(even) {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.lp-plate:nth-child(even) .lp-plate-frame { order: 2; }
.lp-plate:nth-child(even) .lp-plate-content { order: 1; }

/* WHITE specimen plate floating on stone with deep contrast shadow */
.lp-plate-frame {
  position: relative;
  padding: clamp(20px, 3vw, 36px);
  background: var(--paper);
  border: none;
  box-shadow: var(--shadow-card);
}
/* No halo — the shadow does the lifting */
.lp-plate-frame::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid var(--ink-hair);
  pointer-events: none;
}
.lp-plate-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 8;
  background: var(--ink);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 18px 36px -12px rgba(0, 0, 0, 0.6);
}
.lp-plate-cover img,
.lp-plate-cover svg {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.lp-plate-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(125deg, transparent 38%, rgba(255,255,255,0.06) 50%, transparent 62%);
  pointer-events: none;
}
.lp-plate-caption {
  margin-top: 22px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  border-top: 1px solid var(--ink-rule);
  padding-top: 14px;
}
.lp-plate-caption .cat { color: var(--purple-deep); }

.lp-plate-content { position: relative; padding-top: 4px; }
.lp-plate-roman {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.lp-plate-roman::after {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--purple-bright);
}
.lp-plate-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
  margin-bottom: 18px;
}
.lp-plate-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin-bottom: 14px;
}
.lp-plate-title em { font-style: italic; color: var(--purple-bright); }
.lp-plate-subtitle {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.9vw, 22px);
  color: var(--cream-2);
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 38ch;
}
.lp-plate-blurb {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--cream-2);
  margin-bottom: 32px;
  max-width: 56ch;
}
/* Drop cap removed — too many competing accents */

.lp-plate-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  padding: 18px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--cream-rule);
  border-bottom: 1px solid var(--cream-rule);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.lp-plate-meta dt {
  color: var(--cream-3);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 9.5px;
  font-weight: 600;
  white-space: nowrap;
}
.lp-plate-meta dd {
  color: var(--cream);
  font-family: var(--serif);
  letter-spacing: 0;
  font-size: 14.5px;
}
.lp-plate-meta dd .accent { color: var(--purple-bright); font-style: italic; font-weight: 500; }

.lp-plate-audio {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--cream-rule);
  margin-bottom: 28px;
  max-width: 460px;
  backdrop-filter: blur(8px);
  border-radius: 4px;
}
.lp-plate-audio-label {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-bright);
  font-weight: 600;
  white-space: nowrap;
}
.lp-plate-audio audio {
  flex: 1; height: 30px; min-width: 0;
  filter: invert(0.9) hue-rotate(180deg);
}

.lp-plate-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}

@media (max-width: 880px) {
  .lp-plate,
  .lp-plate:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-plate:nth-child(even) .lp-plate-frame { order: 0; }
  .lp-plate:nth-child(even) .lp-plate-content { order: 1; }
  .lp-plate-frame { max-width: 380px; margin: 0 auto; }
  .lp-plate-roman { font-size: clamp(64px, 18vw, 110px); }
  .lp-plate-roman::after { width: 50px; margin-left: 18px; }
}

/* ============================================
   SOCIETY (membership card — white on stone with purple halo)
   ============================================ */
.lp-society {
  padding: var(--pad-section) clamp(24px, 5vw, 56px);
  position: relative;
}
/* No halo — shadow does the work */
.lp-society-card {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card-strong);
}
.lp-society-card::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid var(--ink-hair);
  pointer-events: none;
  z-index: 2;
}

.lp-society-stamp {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
  border: 1.5px solid var(--purple-deep);
  padding: 8px 16px;
  z-index: 3;
}

.lp-society-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  z-index: 1;
}

.lp-society-detail {
  padding: clamp(56px, 8vw, 110px) clamp(36px, 6vw, 88px);
  border-right: 1px solid var(--ink-rule);
}
.lp-society-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.lp-society-tag::before {
  content: ''; width: 26px; height: 1.5px; background: var(--purple-deep);
}
.lp-society-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 24px;
}
.lp-society-title em {
  font-style: italic;
  color: var(--purple-deep);
  font-weight: 300;
}
.lp-society-blurb {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 52ch;
}
.lp-society-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.lp-society-list li {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  position: relative;
  padding-left: 22px;
}
.lp-society-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 0;
  color: var(--purple);
  font-size: 10px;
  line-height: 1.8;
}
.lp-society-pricing {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--ink-rule);
  margin-bottom: 32px;
}
.lp-society-price {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: oldstyle-nums proportional-nums;
}
.lp-society-price-cents {
  font-size: 0.5em;
  color: var(--purple-deep);
  margin-left: 2px;
}
.lp-society-strike {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-3);
  text-decoration: line-through;
}
.lp-society-save {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
  border: 1.5px solid var(--purple-deep);
  padding: 6px 14px;
  border-radius: 999px;
}
.lp-society-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.lp-society-actions .lp-link {
  color: var(--purple-deep) !important;
  border-bottom-color: var(--purple-deep) !important;
}

/* RIGHT side panel — soft purple wash */
.lp-society-side {
  position: relative;
  padding: clamp(56px, 8vw, 110px) clamp(36px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.18), transparent 65%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper-2) 100%);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--ink-hair);
}
.lp-society-side h3 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
  margin-bottom: 22px;
}
.lp-society-volumes {
  display: flex; flex-direction: column; gap: 12px;
}
.lp-society-volume {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-rule);
  font-family: var(--serif);
}
.lp-society-volume:last-child { border-bottom: none; }
.lp-society-volume .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--purple-deep);
  font-weight: 400;
  line-height: 1;
}
.lp-society-volume .name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
}
.lp-society-volume .name em { font-style: italic; color: var(--purple-deep); }
.lp-society-volume .form {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.lp-society-seal {
  margin-top: auto;
  padding-top: 32px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.lp-society-seal svg {
  width: 28px; height: 28px;
  color: var(--purple);
  flex-shrink: 0;
}

@media (max-width: 940px) {
  .lp-society-grid { grid-template-columns: 1fr; }
  .lp-society-detail { border-right: none; border-bottom: 1px solid var(--ink-rule); }
  .lp-society-side { border-left: none; }
  .lp-society-list { grid-template-columns: 1fr; gap: 10px; }
  .lp-society-stamp { top: 18px; right: 18px; font-size: 8px; padding: 6px 12px; }
}

/* ============================================
   LETTER — set directly on stone (no paper)
   ============================================ */
.lp-letter-wrap {
  padding: var(--pad-section) clamp(24px, 5vw, 56px);
  display: flex; justify-content: center;
  position: relative;
}
.lp-letter {
  position: relative;
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: 0 clamp(0px, 2vw, 16px);
}
.lp-letter-folio {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
  margin-bottom: 36px;
  display: flex; justify-content: center; gap: 14px;
}
.lp-letter-folio span:first-child { color: var(--purple-bright); }
.lp-letter-glyph {
  display: block;
  width: 36px; height: 36px;
  margin: 0 auto 28px;
  color: var(--purple-bright);
}
.lp-letter-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
  margin-bottom: 18px;
}
.lp-letter-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  color: var(--cream);
}
.lp-letter-title em { font-style: italic; color: var(--purple-bright); font-weight: 300; }

.lp-letter-body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.85;
  color: var(--cream-2);
  max-width: 58ch;
  margin: 0 auto;
  text-align: left;
}
.lp-letter-body p { margin-bottom: 18px; }
.lp-letter-body em { color: var(--cream); font-style: italic; }
.lp-letter-body strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25em;
  line-height: 1.4;
  font-weight: 400;
  margin: 12px 0;
  text-align: center;
  color: var(--purple-bright);
}
.lp-letter-rule {
  display: block;
  width: 56px; height: 1.5px;
  background: var(--purple-bright);
  margin: 32px auto;
  opacity: 0.7;
}
.lp-letter-signature {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  text-align: center;
  margin-top: 56px;
  color: var(--cream);
}
.lp-letter-signature small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
  margin-top: 14px;
}

/* ============================================
   INITIATION
   ============================================ */
.lp-initiation {
  padding: clamp(110px, 13vw, 180px) clamp(24px, 5vw, 56px);
  text-align: center;
  border-top: 1px solid var(--cream-hair);
  border-bottom: 1px solid var(--cream-hair);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}
/* No halo */
.lp-initiation > * { position: relative; z-index: 1; }
.lp-initiation .lp-overline { margin-bottom: 22px; display: inline-block; }
.lp-initiation h2 { margin-bottom: 22px; }
.lp-initiation p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 540px;
  margin: 0 auto 38px;
}

/* ============================================
   CONNECT (white index cards on stone)
   ============================================ */
.lp-connect-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lp-connect-card {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--paper);
  color: var(--ink);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms ease,
    background 240ms ease;
  display: flex; flex-direction: column;
  min-height: 220px;
  box-shadow: var(--shadow-card);
  border: none;
}
.lp-connect-card::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid var(--ink-hair);
  pointer-events: none;
}
.lp-connect-card:hover {
  background: var(--purple);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 36px 64px -18px rgba(0,0,0,0.6),
    0 80px 140px -50px rgba(139, 92, 246, 0.7);
}
.lp-connect-card:hover::before {
  border-color: rgba(255, 255, 255, 0.25);
}
.lp-connect-card-mark {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}
.lp-connect-card:hover .lp-connect-card-mark { color: var(--cream); }
.lp-connect-card-handle {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.012em;
  position: relative;
}
.lp-connect-card-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 22px;
  position: relative;
}
.lp-connect-card:hover .lp-connect-card-note { color: rgba(255, 255, 255, 0.78); }
.lp-connect-card-arrow {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.lp-connect-card-arrow span:last-child {
  font-size: 16px;
  letter-spacing: 0;
  color: var(--purple);
  transition: transform 240ms ease, color 240ms ease;
}
.lp-connect-card:hover .lp-connect-card-arrow span:last-child {
  transform: translateX(4px);
  color: var(--cream);
}

@media (max-width: 940px) {
  .lp-connect-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .lp-connect-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FINIS
   ============================================ */
.lp-finis {
  padding: clamp(120px, 16vw, 200px) clamp(24px, 5vw, 56px);
  text-align: center;
  position: relative;
}
/* No halo */
.lp-finis > * { position: relative; z-index: 1; }
.lp-finis-glyph {
  display: block;
  width: 38px; height: 38px;
  margin: 0 auto 28px;
  color: var(--purple-bright);
}
.lp-finis-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 22px;
}
.lp-finis-quote em { color: var(--purple-bright); }
.lp-finis-sub {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--cream-2);
  margin-bottom: 48px;
}
.lp-finis-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.lp-finis-mark {
  margin-top: 64px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: clamp(72px, 10vw, 120px) clamp(24px, 5vw, 56px);
  text-align: center;
  border-top: 1px solid var(--cream-hair);
  background: rgba(0, 0, 0, 0.32);
}
.foot-glyph {
  width: 36px; height: 36px;
  margin: 0 auto 24px;
  color: var(--purple-bright);
}
.foot-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px clamp(20px, 4vw, 36px);
  margin-bottom: 36px;
}
.foot-nav a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-2);
  font-weight: 500;
  transition: color 200ms ease;
}
.foot-nav a:hover { color: var(--purple-bright); }
.foot-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 8px;
}
.foot-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
  margin-bottom: 22px;
}
.foot-rights {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--cream-3);
  font-style: italic;
}

/* ============================================
   Reveal
   ============================================ */
.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
