/* style.css — Ghost Quill Press design system */

:root,
[data-theme='light'] {
  /* Surfaces — aged parchment */
  --color-bg: #f1ece0;
  --color-surface: #ebe4d3;
  --color-surface-2: #e6ddc9;
  --color-surface-offset: #ddd3ba;
  --color-surface-offset-2: #d3c7ab;
  --color-surface-dynamic: #c7b999;
  --color-divider: #cfc2a4;
  --color-border: #b9a982;

  /* Text — ink */
  --color-text: #201a14;
  --color-text-muted: #5c5142;
  --color-text-faint: #8b7f68;
  --color-text-inverse: #f7f2e6;

  /* Accent — oxblood */
  --color-primary: #7a1f2b;
  --color-primary-hover: #601722;
  --color-primary-active: #4a1119;
  --color-primary-highlight: #ddc3c6;

  --color-error: #7a1f2b;

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 40 / 0.14);
  --shadow-md: 0 6px 20px oklch(0.2 0.02 40 / 0.16);
  --shadow-lg: 0 20px 48px oklch(0.15 0.02 40 / 0.26);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1220px;
  --content-full: 100%;

  --font-display: 'Cinzel', 'Georgia', serif;
  --font-body: 'EB Garamond', 'Iowan Old Style', Georgia, serif;

  --grain-opacity: 0.05;
}

[data-theme='dark'] {
  --color-bg: #0b0a09;
  --color-surface: #131110;
  --color-surface-2: #181514;
  --color-surface-offset: #1e1a18;
  --color-surface-offset-2: #26201d;
  --color-surface-dynamic: #322925;
  --color-divider: #2a2422;
  --color-border: #3c332e;

  --color-text: #e9e2d3;
  --color-text-muted: #a89c88;
  --color-text-faint: #6f6558;
  --color-text-inverse: #14100e;

  --color-primary: #b3465a;
  --color-primary-hover: #c85a6d;
  --color-primary-active: #8f3346;
  --color-primary-highlight: #35201f;

  --color-error: #c85a6d;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 28px 60px oklch(0 0 0 / 0.6);

  --grain-opacity: 0.07;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0b0a09;
    --color-surface: #131110;
    --color-surface-2: #181514;
    --color-surface-offset: #1e1a18;
    --color-surface-offset-2: #26201d;
    --color-surface-dynamic: #322925;
    --color-divider: #2a2422;
    --color-border: #3c332e;
    --color-text: #e9e2d3;
    --color-text-muted: #a89c88;
    --color-text-faint: #6f6558;
    --color-text-inverse: #14100e;
    --color-primary: #b3465a;
    --color-primary-hover: #c85a6d;
    --color-primary-active: #8f3346;
    --color-primary-highlight: #35201f;
    --color-error: #c85a6d;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
    --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
    --shadow-lg: 0 28px 60px oklch(0 0 0 / 0.6);
    --grain-opacity: 0.07;
  }
}

:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 6.75rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ===== Grain overlay (atmosphere, applied to body::after) ===== */
body {
  position: relative;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===== Utility layout ===== */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section-tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-primary);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.display-hero {
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: 0.005em;
}
.display-xl {
  font-size: var(--text-2xl);
  line-height: 1.08;
}
.title-lg {
  font-size: var(--text-xl);
}
.title-md {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 600;
}

p.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

.prose p {
  max-width: 68ch;
  margin-bottom: var(--space-5);
  color: var(--color-text);
}
.prose p.muted {
  color: var(--color-text-muted);
}

.text-muted {
  color: var(--color-text-muted);
}
.text-faint {
  color: var(--color-text-faint);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  min-height: 44px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  background: var(--color-primary-active);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: oklch(from var(--color-text) l c h / 0.28);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0.01em;
  padding: var(--space-2) var(--space-3);
}
.btn-ghost:hover {
  color: var(--color-primary);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62em;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--color-text);
}
.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  color: var(--color-primary);
  background: oklch(from var(--color-text) l c h / 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* Mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-5);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}
.mobile-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
  color: #efe9dc;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.03 0 0 / 0.35) 0%, oklch(0.03 0 0 / 0.55) 55%, oklch(0.03 0 0 / 0.92) 100%),
    linear-gradient(90deg, oklch(0.03 0 0 / 0.55) 0%, oklch(0.03 0 0 / 0.05) 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  width: 100%;
  padding: clamp(var(--space-24), 14vw, var(--space-32)) var(--space-5) var(--space-16);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a5ab;
  margin-bottom: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #c9a5ab;
}
.hero h1 {
  font-size: var(--text-hero);
  color: #f5efe1;
  max-width: 15ch;
  line-height: 0.98;
  margin-bottom: var(--space-6);
}
.hero .lede {
  color: #cfc6b5;
  max-width: 46ch;
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: oklch(0.95 0 0 / 0.3);
  color: #f5efe1;
}
.hero .btn-outline:hover {
  border-color: var(--color-primary-hover);
  color: #f5efe1;
  background: oklch(from var(--color-primary) l c h / 0.18);
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: #cfc6b5;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, #cfc6b5, transparent);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue {
  0% {
    opacity: 0.2;
    transform: scaleY(0.4);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    opacity: 0.2;
    transform: scaleY(0.4);
    transform-origin: top;
  }
}

/* ===== Two-column features ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.split--reverse .split-media {
  order: 2;
}
.split-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.split-media {
  position: relative;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .split--reverse .split-media {
    order: 0;
  }
}

/* ===== Pull quote ===== */
.pullquote {
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.75rem);
  line-height: 1.25;
  max-width: 22ch;
  margin-inline: auto;
  color: var(--color-text);
}
.pullquote cite {
  display: block;
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  font-style: normal;
}

/* ===== Cards ===== */
.card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.card-tight {
  padding: var(--space-6);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.4);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  background: oklch(from var(--color-primary) l c h / 0.08);
}

/* ===== Chapters list ===== */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.chapter-item {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-divider);
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
}
.chapter-num {
  font-family: var(--font-display);
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  flex-shrink: 0;
  width: 2ch;
}
.chapter-title {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
@media (max-width: 860px) {
  .chapter-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Praise / testimonial style blocks ===== */
.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 860px) {
  .praise-grid {
    grid-template-columns: 1fr;
  }
}
.praise-card {
  padding: var(--space-6);
  border-left: none;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}
.praise-card p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.praise-card footer {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

/* ===== Section headers ===== */
.section-head {
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
  max-width: 62ch;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: var(--space-3);
}

/* ===== Newsletter / form ===== */
.form-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex: 1;
  min-width: 220px;
}
.field label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.field input,
.field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  min-height: 44px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.18);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}
.form-success {
  display: none;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: oklch(from var(--color-primary) l c h / 0.1);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.3);
  color: var(--color-text);
  margin-top: var(--space-5);
}
.form-success.is-visible {
  display: block;
}

/* ===== Banner / CTA strip ===== */
.cta-strip {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ===== Page hero (interior pages) ===== */
.page-hero {
  padding-block: clamp(var(--space-20), 11vw, var(--space-32)) clamp(var(--space-10), 6vw, var(--space-16));
  border-bottom: 1px solid var(--color-divider);
}
.page-hero h1 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
  max-width: 20ch;
}

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

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-3);
  z-index: 100;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: var(--space-3);
}

/* ===== Misc ===== */
.divider {
  height: 1px;
  background: var(--color-divider);
  border: none;
  margin-block: var(--space-8);
}
.tag-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.meta-row {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.meta-row strong {
  color: var(--color-text);
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

.badge-ribbon {
  position: absolute;
  top: var(--space-5);
  left: -var(--space-2);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  box-shadow: var(--shadow-md);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line {
    animation: none;
  }
}
