/* ============================================================
   NARROWLIGHT PRESS — Design System v2.0
   Redesigned August 2026

   Midnight navy / amber gold / parchment — visual language derived
   from the Separate Shadows cover art (NL-REF-003).
   An imprint of Bridge Forensic Logic, LLC.

   Color values derived from and visually matched to the
   approved Narrowlight Press reference artwork.
   Typography: Cinzel (display) + Source Serif 4 (body)
   + Source Sans 3 (UI labels)

   Plumb mark: not recreated — awaiting standalone approved
   logo/vector asset. Header uses typographic wordmark only.

   ============================================================ */

/* ------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --text-lg:   clamp(1.25rem, 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.25rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6vw, 5.5rem);

  /* Spacing — 4px base */
  --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;

  /* Content Widths */
  --content-narrow: 640px;
  --content-default: 880px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;

  /* Transitions */
  --transition: 250ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Font Families */
  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-body: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-ui: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

/* ------------------------------------------------------------
   2. Color System — Dark Mode (default)
   Gold on black — primary reference treatment
   ------------------------------------------------------------ */

:root,
[data-theme="dark"] {
  --color-bg: #0f1419;
  --color-surface: #161b24;
  --color-surface-2: #1a2030;
  --color-surface-offset: #141a23;
  --color-surface-warm: #1c1812;
  --color-divider: #2a3040;
  --color-border: #364050;

  --color-text: #ddd0b8;
  --color-text-muted: #9a8d72;
  --color-text-faint: #6a6450;
  --color-text-inverse: #0f1419;

  --color-primary: #b88953;
  --color-primary-hover: #c6964a;
  --color-primary-soft: #2a2018;

  --color-gold: #b88953;
  --color-gold-hover: #c6964a;
  --color-gold-soft: #2a2018;

  --color-amber-glow: rgba(184, 137, 83, 0.06);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.20);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ------------------------------------------------------------
   3. Color System — Light Mode
   Black on ivory — alternate reference treatment
   ------------------------------------------------------------ */

[data-theme="light"] {
  --color-bg: #e8dcc8;
  --color-surface: #f0e6d4;
  --color-surface-2: #f5ecdc;
  --color-surface-offset: #ddd0b8;
  --color-surface-warm: #e5d8c0;
  --color-divider: #c4b898;
  --color-border: #b0a488;

  --color-text: #1a1510;
  --color-text-muted: #5a4e3a;
  --color-text-faint: #8a7e68;
  --color-text-inverse: #e8dcc8;

  --color-primary: #8a6d3b;
  --color-primary-hover: #6a5028;
  --color-primary-soft: #f0e8d8;

  --color-gold: #8a6d3b;
  --color-gold-hover: #6a5028;
  --color-gold-soft: #f0e8d8;

  --color-amber-glow: rgba(138, 109, 59, 0.05);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* System preference fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f1419;
    --color-surface: #161b24;
    --color-surface-2: #1a2030;
    --color-surface-offset: #141a23;
    --color-surface-warm: #1c1812;
    --color-divider: #2a3040;
    --color-border: #364050;
    --color-text: #ddd0b8;
    --color-text-muted: #9a8d72;
    --color-text-faint: #6a6450;
    --color-text-inverse: #0f1419;
    --color-primary: #b88953;
    --color-primary-hover: #c6964a;
    --color-primary-soft: #2a2018;
    --color-gold: #b88953;
    --color-gold-hover: #c6964a;
    --color-gold-soft: #2a2018;
    --color-amber-glow: rgba(184, 137, 83, 0.06);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.20);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.25);
  }
}

/* ------------------------------------------------------------
   4. Reset & Base
   ------------------------------------------------------------ */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% 0%, var(--color-amber-glow), transparent 60%);
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

::selection {
  background: rgba(184, 137, 83, 0.25);
  color: var(--color-text);
}

/* ------------------------------------------------------------
   5. Typography
   ------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  max-width: 72ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-primary-hover); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.display-text {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   6. Layout
   ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--wide { max-width: var(--content-wide); }
.container--narrow { max-width: var(--content-narrow); }

.section {
  padding: var(--space-12) 0;
}

.section--offset { padding: var(--space-24) 0; }
.section--tight { padding: var(--space-12) 0; }

/* ------------------------------------------------------------
   7. Header
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: background-color var(--transition), border-color var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: var(--content-wide);
  margin: 0 auto;
}

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__brand:hover { color: var(--color-gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-nav__link {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.site-nav__link:hover,
.site-nav__link--active { color: var(--color-gold); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  font-family: var(--font-ui);
  line-height: 1;
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  cursor: pointer;
  padding: var(--space-2);
  line-height: 1;
}

/* ------------------------------------------------------------
   8. Hero — Editorial Masthead
   Derived from Separate Shadows visual language: midnight blue,
   amber illumination, fine gold rules, warm atmospheric depth.
   Reduced height so Read/Listen/Watch/Explore are visible in
   the initial desktop viewport.
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-16) var(--space-6) var(--space-12);
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-divider);
}

/* Warm amber atmospheric glow — derived from the cover's golden side */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 120%;
  max-width: 700px;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--color-gold) 8%, transparent) 0%,
    color-mix(in srgb, var(--color-gold) 3%, transparent) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Cool midnight atmospheric depth on right — from the cover's blue side */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 50%;
  height: 120%;
  max-width: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 49, 59, 0.4) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-narrow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Small star mark above the name — from NL-REF-001 divider glyph */
.hero__mark {
  color: var(--color-gold);
  font-size: var(--text-sm);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 1rem + 4vw, 3rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 var(--space-2) 0;
  line-height: 1.1;
  text-indent: 0.22em;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background-color: var(--color-gold);
  opacity: 0.5;
}

.hero__divider-mark {
  color: var(--color-gold);
  font-size: var(--text-sm);
  line-height: 1;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1.125rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  text-indent: 0.28em;
}

.hero__imprint {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.hero__scroll {
  display: none;
}

/* Light mode hero adjustments */
[data-theme="light"] .hero::before {
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--color-gold) 10%, transparent) 0%,
    color-mix(in srgb, var(--color-gold) 4%, transparent) 35%,
    transparent 65%
  );
}

[data-theme="light"] .hero::after {
  background: radial-gradient(
    ellipse at center,
    rgba(70, 82, 94, 0.15) 0%,
    transparent 50%
  );
}

/* ------------------------------------------------------------
   9. Primary Doors (Read / Listen / Watch / Explore)
   ------------------------------------------------------------ */

.doors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-divider);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.door {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-12) var(--space-6);
  background: var(--color-bg);
  text-decoration: none;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  min-height: 200px;
}

.door:hover {
  background: var(--color-surface);
  color: var(--color-gold);
}

.door__icon {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  letter-spacing: 0;
  line-height: 1;
}

.door__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.door__hint {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   10. Featured Works
   ------------------------------------------------------------ */

.featured-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition);
}

.work-card:hover { transform: translateY(-4px); }

.work-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-surface-warm);
  border: 1px solid var(--color-divider);
  margin-bottom: var(--space-3);
  padding: var(--space-2);
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.work-card:hover .work-card__image img {
  transform: scale(1.03);
}

.work-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.work-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.work-card__meta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-2);
}

/* Large featured work (hero card) */
.work-card--featured {
  grid-column: span 2;
}

.work-card--featured .work-card__image {
  aspect-ratio: 3 / 2;
}

.work-card--featured .work-card__title {
  font-size: var(--text-xl);
}

/* ------------------------------------------------------------
   11. Song List
   ------------------------------------------------------------ */

.song-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}

.song-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}

.song-card:hover {
  border-color: var(--color-border);
  background: var(--color-surface-2);
}

.song-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.song-card__status {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.song-card__status--pending {
  color: var(--color-gold);
  opacity: 0.7;
}

/* Song family grouping */
.song-family {
  margin-bottom: var(--space-12);
}

.song-family__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}

/* ------------------------------------------------------------
   12. About Section
   ------------------------------------------------------------ */

.about-block {
  text-align: center;
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.about-block p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.about-block p strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ------------------------------------------------------------
   13. Provenance / Publication
   ------------------------------------------------------------ */

.provenance {
  background: var(--color-surface-warm);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.provenance__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  margin-top: var(--space-8);
}

.provenance__item {
  text-align: center;
}

.provenance__item a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.provenance__item a:hover { color: var(--color-gold); }

.provenance__item p {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-1);
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   14. Page Header (interior pages)
   ------------------------------------------------------------ */

.page-header {
  padding: var(--space-24) 0 var(--space-12);
  text-align: center;
}

.page-header__eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.page-header__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.page-header__desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: var(--content-narrow);
  margin: 0 auto;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   15. Catalogue / List Items
   ------------------------------------------------------------ */

.catalogue {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.catalogue__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: baseline;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}

.catalogue__item:last-child { border-bottom: none; }

.catalogue__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.catalogue__title a { color: inherit; }
.catalogue__title a:hover { color: var(--color-gold); }

.catalogue__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.catalogue__meta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
  text-align: right;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   16. Placeholder / Forthcoming
   ------------------------------------------------------------ */

.placeholder {
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.placeholder__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.placeholder__desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 2px var(--space-3);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: transparent;
  opacity: 0.8;
}

/* ------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-6);
  text-align: center;
}

.site-footer__inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.site-footer__imprint {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.site-footer__nav a {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__nav a:hover { color: var(--color-gold); }

.site-footer__copyright {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ------------------------------------------------------------
   18. Dividers
   ------------------------------------------------------------ */

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin: var(--space-8) auto;
  border: none;
}

.divider--wide {
  width: 100%;
  height: 1px;
  background-color: var(--color-divider);
}

/* ------------------------------------------------------------
   19. Responsive
   ------------------------------------------------------------ */

@media (max-width: 900px) {
  .doors {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card--featured {
    grid-column: span 1;
  }

  .work-card--featured .work-card__image {
    aspect-ratio: 3 / 2;
  }

  .catalogue__item {
    grid-template-columns: 1fr;
  }

  .catalogue__meta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .menu-toggle { display: block; }

  .site-nav--open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-4) var(--space-6);
    gap: var(--space-4);
  }

  .hero {
    min-height: auto;
    padding: var(--space-10) var(--space-4) var(--space-8);
  }

  .section {
    padding: var(--space-12) 0;
  }

  .page-header {
    padding: var(--space-16) 0 var(--space-8);
  }

  .hero__brand { letter-spacing: 0.12em; }
  .hero__tagline { letter-spacing: 0.2em; }

  .featured-works {
    grid-template-columns: 1fr;
  }

  .doors {
    grid-template-columns: 1fr 1fr;
  }

  .door { padding: var(--space-10) var(--space-4); min-height: 120px; }

  .site-footer__nav { gap: var(--space-4); }
}

@media (max-width: 480px) {
  .doors { grid-template-columns: 1fr; }

  .song-list { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   20. Accessibility
   ------------------------------------------------------------ */

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg);
  color: var(--color-gold);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}


/* ============================================================
   R2 CORRECTIVE VISUAL PASS — Atmospheric Redesign
   Bold application of Separate Shadows visual language.
   Overrides timid R1 application. Not a token change —
   a design change: visible warmth, texture, atmosphere, density.
   ============================================================ */

/* ---- Body: Layered atmospheric gradient + paper texture ---- */
body {
  background-color: #0f1419;
  background-image:
    /* Warm amber glow at top of page */
    radial-gradient(ellipse 1400px 500px at 40% 0%,
      rgba(184, 137, 83, 0.10) 0%,
      rgba(184, 137, 83, 0.03) 30%,
      transparent 60%),
    /* Warm umber undertone across mid-page */
    linear-gradient(180deg,
      #0f1419 0%,
      #12110d 20%,
      #15110c 40%,
      #131310 60%,
      #0f1419 80%,
      #0d1116 100%);
  background-attachment: fixed;
}

/* Subtle paper grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Ensure main content sits above texture */
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---- Header: Warm tinted glass ---- */
.site-header {
  background: color-mix(in srgb, #0f1419 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
}

/* ---- Hero: Warm/cool atmospheric masthead field ---- */
.hero {
  min-height: auto;
  padding: var(--space-12) var(--space-6) var(--space-8);
  border-bottom: none;
  background:
    /* Bold amber glow — warm left side, from SS cover golden side */
    radial-gradient(ellipse 70% 90% at 25% 50%,
      rgba(184, 137, 83, 0.22) 0%,
      rgba(184, 137, 83, 0.08) 35%,
      transparent 65%),
    /* Cool midnight depth — right side, from SS cover blue side */
    radial-gradient(ellipse 50% 80% at 80% 40%,
      rgba(37, 49, 59, 0.5) 0%,
      transparent 55%),
    /* Base gradient: warm umber → midnight blue (SS warm/cool split) */
    linear-gradient(115deg,
      #1a1410 0%,
      #161210 25%,
      #121316 50%,
      #0f1419 75%,
      #0d1117 100%);
  overflow: hidden;
}

/* Override R1 pseudo-elements */
.hero::before, .hero::after { display: none; }

/* Fine archival rule at bottom of hero — transitions into doors */
.hero {
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, transparent);
}

.hero__mark {
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
  opacity: 0.6;
}

.hero__brand {
  font-size: clamp(1.75rem, 1.2rem + 3.5vw, 2.75rem);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  margin-bottom: var(--space-1);
  text-shadow: 0 0 30px rgba(184, 137, 83, 0.15);
}

.hero__divider {
  margin: var(--space-3) 0;
}

.hero__divider::before,
.hero__divider::after {
  width: 72px;
  opacity: 0.4;
}

.hero__tagline {
  font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.05rem);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero__imprint {
  letter-spacing: 0.15em;
  color: var(--color-text-faint);
}

/* ---- Doors: Warm gradient entryways, merged with hero ---- */
.doors {
  background: linear-gradient(180deg,
    #161210 0%,
    #141218 50%,
    #0f1419 100%);
  border-top: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
  gap: 1px;
}

.doors::before {
  content: '';
  position: absolute;
}

.door {
  background: transparent;
  padding: var(--space-10) var(--space-4);
  min-height: 160px;
  position: relative;
  transition: background var(--transition), color var(--transition);
}

.door::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(184, 137, 83, 0.03) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.door:hover::before { opacity: 1; }

.door:hover {
  background: rgba(184, 137, 83, 0.06);
  color: var(--color-gold);
}

.door__icon {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  opacity: 0.85;
}

.door__label {
  font-size: var(--text-base);
  letter-spacing: 0.12em;
}

.door__hint {
  font-size: var(--text-xs);
  margin-top: var(--space-1);
}

/* ---- Featured Works: Warm editorial panels ---- */
.section--featured {
  background: linear-gradient(180deg,
    #0f1419 0%,
    #161210 15%,
    #1a1612 50%,
    #161210 85%,
    #0f1419 100%) !important;
  padding: var(--space-12) 0;
}

.featured-works {
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.work-card {
  background: linear-gradient(160deg,
    #1c1812 0%,
    #1a1410 40%,
    #161210 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-gold) 25%, var(--color-divider));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(184, 137, 83, 0.05);
}

.work-card__image {
  aspect-ratio: 3 / 2;
  background: #12100c;
  border: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.work-card__image img {
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Featured card (Separate Shadows) — larger, more prominent */
.work-card--featured {
  grid-column: span 2;
}

.work-card--featured .work-card__image {
  aspect-ratio: 16 / 9;
}

.work-card--featured .work-card__title {
  font-size: var(--text-xl);
}

.work-card__title {
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.work-card__desc {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.work-card__meta {
  letter-spacing: 0.08em;
  margin-top: var(--space-3);
}

/* ---- Editorial placeholder cards (TFF, Song Catalog) ---- */
.work-card--editorial .work-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(184, 137, 83, 0.08) 0%,
      transparent 70%),
    linear-gradient(135deg, #221a10 0%, #1a1410 50%, #161210 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
}

.work-card--editorial .work-card__image::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--color-gold) 30%, transparent),
    transparent);
  top: 35%;
}

.work-card--editorial .editorial-mark {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-gold);
  opacity: 0.35;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(184, 137, 83, 0.2);
  position: relative;
  z-index: 1;
}

.work-card--editorial .editorial-subtitle {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  position: relative;
  z-index: 1;
}

/* ---- Catalogue: Warm parchment-toned panel ---- */
.section--catalogue {
  background: linear-gradient(180deg,
    #161210 0%,
    #1c1812 30%,
    #1c1812 70%,
    #161210 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 8%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 8%, var(--color-divider));
}

.catalogue__item {
  padding-bottom: var(--space-5);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 8%, var(--color-divider));
}

.catalogue__title {
  letter-spacing: 0.04em;
}

/* ---- About: Warm surface ---- */
.section--about {
  background: linear-gradient(180deg,
    #161210 0%,
    #1a1612 50%,
    #0f1419 100%) !important;
}

/* ---- Provenance: Warm deep panel ---- */
.provenance {
  background: linear-gradient(180deg,
    #0f1419 0%,
    #12110d 50%,
    #0d1116 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 8%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 8%, var(--color-divider));
}

/* ---- Footer: Warm midnight ---- */
.site-footer {
  background: linear-gradient(180deg,
    #0d1116 0%,
    #0a0d12 100%);
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
}

/* ---- Typography: More presence, tighter tracking ---- */
.eyebrow {
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3);
}

.hero__divider-mark {
  font-size: var(--text-xs);
}

/* ---- Mobile: Warm, dense, first-class editorial ---- */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-8) var(--space-4) var(--space-6);
    background:
      radial-gradient(ellipse 90% 70% at 30% 40%,
        rgba(184, 137, 83, 0.18) 0%,
        rgba(184, 137, 83, 0.05) 35%,
        transparent 60%),
      linear-gradient(140deg,
        #1a1410 0%,
        #141012 40%,
        #0f1419 70%,
        #0d1117 100%);
  }

  .hero__brand {
    letter-spacing: 0.10em;
    text-indent: 0.10em;
    font-size: clamp(1.5rem, 1rem + 3vw, 2rem);
  }

  .hero__tagline {
    letter-spacing: 0.14em;
    text-indent: 0.14em;
  }

  /* Keep doors as 2x2 grid, not 1-column stack */
  .doors {
    grid-template-columns: 1fr 1fr !important;
  }

  .door {
    padding: var(--space-8) var(--space-3);
    min-height: 110px;
  }

  .door__icon { font-size: var(--text-base); margin-bottom: var(--space-2); }
  .door__label { font-size: var(--text-sm); }
  .door__hint { font-size: var(--text-xs); margin-top: var(--space-1); }

  /* Featured works: full-width warm cards */
  .featured-works {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .work-card--featured {
    grid-column: span 1;
  }

  .work-card--featured .work-card__image {
    aspect-ratio: 3 / 2;
  }

  .work-card {
    padding: var(--space-3);
  }

  .work-card__image {
    aspect-ratio: 3 / 2;
    padding: var(--space-2);
  }

  .section {
    padding: var(--space-8) 0;
  }

  .section--featured,
  .section--catalogue,
  .section--about {
    padding: var(--space-10) 0;
  }
}

/* Keep doors as 2x2 even on very narrow screens */
@media (max-width: 480px) {
  .doors { grid-template-columns: 1fr 1fr !important; }
}

/* ---- Light mode adjustments for R2 ---- */
[data-theme="light"] body {
  background-color: #e8dcc8;
  background-image:
    radial-gradient(ellipse 1400px 500px at 40% 0%,
      rgba(138, 109, 59, 0.12) 0%,
      rgba(138, 109, 59, 0.04) 30%,
      transparent 60%),
    linear-gradient(180deg,
      #e8dcc8 0%,
      #e5d8c0 30%,
      #e0d4ba 50%,
      #e5d8c0 70%,
      #e8dcc8 100%);
  background-attachment: fixed;
}

[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse 70% 90% at 25% 50%,
      rgba(138, 109, 59, 0.15) 0%,
      rgba(138, 109, 59, 0.05) 35%,
      transparent 65%),
    linear-gradient(115deg,
      #e5d8c0 0%,
      #e0d4ba 30%,
      #ddd0b8 50%,
      #d8ccb0 75%,
      #e0d4ba 100%);
}

[data-theme="light"] .doors {
  background: linear-gradient(180deg,
    #e0d4ba 0%,
    #ddd0b8 50%,
    #e8dcc8 100%);
}

[data-theme="light"] .work-card {
  background: linear-gradient(160deg,
    #f0e6d4 0%,
    #ece0cc 40%,
    #e8dcc8 100%);
  border-color: rgba(138, 109, 59, 0.2);
}

[data-theme="light"] .work-card--editorial .work-card__image {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(138, 109, 59, 0.08) 0%,
      transparent 70%),
    linear-gradient(135deg, #e8dcc8 0%, #e0d4ba 50%, #ddd0b8 100%);
}

[data-theme="light"] .section--catalogue {
  background: linear-gradient(180deg,
    #e0d4ba 0%,
    #e5d8c0 50%,
    #e0d4ba 100%) !important;
}

[data-theme="light"] .section--about {
  background: linear-gradient(180deg,
    #e5d8c0 0%,
    #e8dcc8 50%,
    #e8dcc8 100%) !important;
}

[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #e0d4ba 0%, #ddd0b8 100%);
}

/* ---- System dark fallback ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body {
    background-color: #0f1419;
    background-image:
      radial-gradient(ellipse 1400px 500px at 40% 0%,
        rgba(184, 137, 83, 0.10) 0%,
        rgba(184, 137, 83, 0.03) 30%,
        transparent 60%),
      linear-gradient(180deg,
        #0f1419 0%,
        #12110d 20%,
        #15110c 40%,
        #131310 60%,
        #0f1419 80%,
        #0d1116 100%);
    background-attachment: fixed;
  }
}


/* ============================================================
   R3 BOLD ATMOSPHERIC REDESIGN
   Warm colors as DOMINANT field, not timid effects on darkness.
   Base backgrounds are warm midnight blue/brown, NOT near-black.
   Gradients at 30-50% opacity. Typography confident and present.
   Separate Shadows visual language made boldly visible.
   ============================================================ */

/* ---- Body: Warm atmospheric base (NOT near-black) ---- */
body {
  background-color: #14110d;
  background-image:
    /* Warm amber glow across top */
    radial-gradient(ellipse 1600px 600px at 35% 0%,
      rgba(184, 137, 83, 0.15) 0%,
      rgba(184, 137, 83, 0.05) 25%,
      transparent 55%),
    /* Warm umber base gradient — the dominant field */
    linear-gradient(180deg,
      #14110d 0%,
      #181208 15%,
      #1a1410 30%,
      #161210 45%,
      #181208 60%,
      #14110d 80%,
      #12110e 100%);
  background-attachment: fixed;
}

/* Paper grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---- Header: Warm tinted glass ---- */
.site-header {
  background: color-mix(in srgb, #14110d 85%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 18%, var(--color-divider));
}

.site-header__brand {
  font-size: var(--text-base);
  letter-spacing: 0.12em;
}

.site-nav__link {
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* ---- Hero: Warm/cool atmospheric field — BOLD ---- */
.hero {
  min-height: auto;
  padding: var(--space-10) var(--space-6) var(--space-6);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 15%, transparent);
  overflow: hidden;
  background:
    /* BOLD amber illumination — warm left, from SS cover golden side */
    radial-gradient(ellipse 65% 90% at 20% 50%,
      rgba(184, 137, 83, 0.35) 0%,
      rgba(184, 137, 83, 0.15) 30%,
      rgba(184, 137, 83, 0.04) 55%,
      transparent 70%),
    /* Cool midnight depth — right, from SS cover blue side */
    radial-gradient(ellipse 45% 80% at 85% 35%,
      rgba(37, 49, 59, 0.6) 0%,
      rgba(37, 49, 59, 0.2) 40%,
      transparent 60%),
    /* Warm base gradient — umber to midnight (SS warm/cool split) */
    linear-gradient(120deg,
      #221a10 0%,
      #1c1610 20%,
      #181410 40%,
      #141218 60%,
      #0f1419 80%,
      #0d1117 100%);
}

/* Override R1 pseudo-elements */
.hero::before, .hero::after { display: none; }

.hero__content {
  max-width: var(--content-narrow);
}

.hero__mark {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  opacity: 0.65;
}

.hero__brand {
  font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
  letter-spacing: 0.10em;
  text-indent: 0.10em;
  margin-bottom: var(--space-1);
  text-shadow: 0 0 40px rgba(184, 137, 83, 0.25), 0 0 80px rgba(184, 137, 83, 0.10);
}

.hero__divider {
  margin: var(--space-3) 0;
}

.hero__divider::before,
.hero__divider::after {
  width: 80px;
  opacity: 0.45;
}

.hero__tagline {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  opacity: 0.85;
}

.hero__imprint {
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.hero__scroll { display: none; }

/* ---- Doors: Warm gradient entryways, merged with hero ---- */
.doors {
  background: linear-gradient(180deg,
    #1c1610 0%,
    #1a1410 30%,
    #161210 60%,
    #14110d 100%);
  border-top: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
}

.door {
  background: transparent;
  padding: var(--space-8) var(--space-4);
  min-height: 130px;
  position: relative;
  transition: background var(--transition), color var(--transition);
}

.door::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(184, 137, 83, 0.08) 0%,
    transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.door:hover::before { opacity: 1; }

.door:hover {
  background: rgba(184, 137, 83, 0.05);
  color: var(--color-gold);
}

.door__icon {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  opacity: 0.8;
}

.door__label {
  font-size: var(--text-base);
  letter-spacing: 0.10em;
}

.door__hint {
  font-size: var(--text-xs);
  margin-top: var(--space-1);
  letter-spacing: 0.08em;
}

/* ---- Section: Featured Works — warm gradient panel ---- */
.section--featured {
  background: linear-gradient(180deg,
    #14110d 0%,
    #1c1610 10%,
    #221a10 30%,
    #1e1810 50%,
    #1a1410 70%,
    #161210 90%,
    #14110d 100%) !important;
  padding: var(--space-10) 0;
}

/* ---- Featured Works: Rich warm cards ---- */
.featured-works {
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.work-card {
  background: linear-gradient(160deg,
    #221a10 0%,
    #1e1610 30%,
    #1a1410 60%,
    #181208 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(184, 137, 83, 0.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-gold) 30%, var(--color-divider));
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(184, 137, 83, 0.08),
    inset 0 1px 0 rgba(184, 137, 83, 0.10);
}

.work-card__image {
  aspect-ratio: 3 / 2;
  background: #12100c;
  border: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.work-card__image img {
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Featured card (Separate Shadows) — larger */
.work-card--featured {
  grid-column: span 2;
}

.work-card--featured .work-card__image {
  aspect-ratio: 16 / 9;
}

.work-card--featured .work-card__title {
  font-size: var(--text-xl);
}

.work-card__title {
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
}

.work-card__desc {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.work-card__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  margin-top: var(--space-3);
  color: var(--color-gold);
  opacity: 0.7;
}

/* ---- Editorial placeholder cards — RICH, NOT dead boxes ---- */
.work-card--editorial .work-card__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    /* Amber glow center */
    radial-gradient(ellipse 70% 50% at 50% 50%,
      rgba(184, 137, 83, 0.18) 0%,
      rgba(184, 137, 83, 0.06) 40%,
      transparent 70%),
    /* Warm gradient base */
    linear-gradient(135deg,
      #2a2010 0%,
      #221a10 30%,
      #1c1610 60%,
      #181208 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 20%, var(--color-divider));
}

/* Fine gold rule across editorial card — archival linework */
.work-card--editorial .work-card__image::before {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  top: 30%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--color-gold) 35%, transparent),
    transparent);
}

.work-card--editorial .work-card__image::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 30%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--color-gold) 25%, transparent),
    transparent);
}

.work-card--editorial .editorial-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  color: var(--color-gold);
  opacity: 0.45;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(184, 137, 83, 0.25);
  position: relative;
  z-index: 1;
}

.work-card--editorial .editorial-subtitle {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: var(--space-3);
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

/* ---- Catalogue: Warm parchment panel ---- */
.section--catalogue {
  background: linear-gradient(180deg,
    #1a1410 0%,
    #221a10 20%,
    #261e12 50%,
    #221a10 80%,
    #1a1410 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
}

.catalogue__item {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
}

.catalogue__title {
  letter-spacing: 0.03em;
}

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

/* ---- About: Warm panel ---- */
.section--about {
  background: linear-gradient(180deg,
    #1a1410 0%,
    #1e1810 40%,
    #1a1410 80%,
    #14110d 100%) !important;
}

.about-block p {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ---- Provenance ---- */
.provenance {
  background: linear-gradient(180deg,
    #14110d 0%,
    #181208 50%,
    #12110e 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 10%, var(--color-divider));
}

/* ---- Footer: Warm midnight ---- */
.site-footer {
  background: linear-gradient(180deg,
    #12110e 0%,
    #0f0d0a 100%);
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  padding: var(--space-10) var(--space-6);
}

/* ---- Typography: More presence ---- */
.eyebrow {
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
}

/* ---- Mobile: Warm, dense, first-class ---- */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-6) var(--space-4) var(--space-4);
    background:
      radial-gradient(ellipse 90% 70% at 25% 40%,
        rgba(184, 137, 83, 0.30) 0%,
        rgba(184, 137, 83, 0.10) 35%,
        transparent 60%),
      linear-gradient(140deg,
        #221a10 0%,
        #1a1410 35%,
        #141118 65%,
        #0f1419 100%);
  }

  .hero__brand {
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    font-size: clamp(1.5rem, 1.1rem + 2.5vw, 2rem);
  }

  .hero__tagline {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    font-size: var(--text-sm);
  }

  .hero__imprint {
    font-size: var(--text-xs);
    letter-spacing: 0.10em;
  }

  /* Keep doors as 2x2 grid */
  .doors {
    grid-template-columns: 1fr 1fr !important;
  }

  .door {
    padding: var(--space-6) var(--space-3);
    min-height: 100px;
  }

  .door__icon { font-size: var(--text-base); margin-bottom: var(--space-2); }
  .door__label { font-size: var(--text-sm); letter-spacing: 0.08em; }
  .door__hint { font-size: var(--text-xs); margin-top: var(--space-1); }

  /* Featured works: full-width warm cards */
  .featured-works {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .work-card--featured { grid-column: span 1; }
  .work-card--featured .work-card__image { aspect-ratio: 3 / 2; }

  .work-card { padding: var(--space-3); }
  .work-card__image { aspect-ratio: 3 / 2; padding: var(--space-2); }
  .work-card__title { font-size: var(--text-base); }
  .work-card__desc { font-size: var(--text-sm); }

  .section { padding: var(--space-8) 0; }
  .section--featured,
  .section--catalogue,
  .section--about { padding: var(--space-8) 0; }

  .about-block p { font-size: var(--text-base); }

  .site-footer { padding: var(--space-8) var(--space-4); }
}

/* Keep doors as 2x2 on very narrow screens */
@media (max-width: 480px) {
  .doors { grid-template-columns: 1fr 1fr !important; }
  .door { min-height: 90px; padding: var(--space-5) var(--space-2); }
}

/* ---- Light mode R3 ---- */
[data-theme="light"] body {
  background-color: #e8dcc8;
  background-image:
    radial-gradient(ellipse 1600px 600px at 35% 0%,
      rgba(138, 109, 59, 0.18) 0%,
      rgba(138, 109, 59, 0.06) 25%,
      transparent 55%),
    linear-gradient(180deg,
      #e8dcc8 0%,
      #e5d8c0 20%,
      #e0d4ba 40%,
      #e5d8c0 60%,
      #e8dcc8 80%,
      #e0d4ba 100%);
  background-attachment: fixed;
}

[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse 65% 90% at 20% 50%,
      rgba(138, 109, 59, 0.22) 0%,
      rgba(138, 109, 59, 0.10) 30%,
      transparent 65%),
    radial-gradient(ellipse 45% 80% at 85% 35%,
      rgba(70, 82, 94, 0.12) 0%,
      transparent 55%),
    linear-gradient(120deg,
      #e5d8c0 0%,
      #e0d4ba 25%,
      #ddd0b8 50%,
      #d8ccb0 75%,
      #e0d4ba 100%);
}

[data-theme="light"] .doors {
  background: linear-gradient(180deg,
    #e0d4ba 0%,
    #ddd0b8 50%,
    #e8dcc8 100%);
}

[data-theme="light"] .work-card {
  background: linear-gradient(160deg,
    #f0e6d4 0%,
    #ece0cc 40%,
    #e8dcc8 100%);
  border-color: rgba(138, 109, 59, 0.2);
}

[data-theme="light"] .work-card--editorial .work-card__image {
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%,
      rgba(138, 109, 59, 0.12) 0%,
      transparent 70%),
    linear-gradient(135deg, #e8dcc8 0%, #e0d4ba 50%, #ddd0b8 100%);
}

[data-theme="light"] .section--featured {
  background: linear-gradient(180deg,
    #e8dcc8 0%, #e0d4ba 50%, #e8dcc8 100%) !important;
}

[data-theme="light"] .section--catalogue {
  background: linear-gradient(180deg,
    #e0d4ba 0%, #e5d8c0 50%, #e0d4ba 100%) !important;
}

[data-theme="light"] .section--about {
  background: linear-gradient(180deg,
    #e5d8c0 0%, #e8dcc8 50%, #e8dcc8 100%) !important;
}

[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #e0d4ba 0%, #ddd0b8 100%);
}

/* ---- System dark fallback ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body {
    background-color: #14110d;
    background-image:
      radial-gradient(ellipse 1600px 600px at 35% 0%,
        rgba(184, 137, 83, 0.15) 0%,
        rgba(184, 137, 83, 0.05) 25%,
        transparent 55%),
      linear-gradient(180deg,
        #14110d 0%, #181208 15%, #1a1410 30%,
        #161210 45%, #181208 60%, #14110d 80%, #12110e 100%);
    background-attachment: fixed;
  }
}


/* ============================================================
   R4 FUNDAMENTAL REDESIGN
   Mid-tone warm colors as DOMINANT base. Not dark with warm
   overlays — actually warm surfaces. The cover's illuminated
   areas (#604d36, #524437, #b88953) are the visual base.
   Darkness is contrast, not the dominant experience.
   ============================================================ */

/* ---- Color overrides: warmer, lighter base tokens ---- */
:root,
[data-theme="dark"] {
  --color-bg: #1a1510;
  --color-surface: #241c12;
  --color-surface-2: #2a2014;
  --color-surface-offset: #1e1810;
  --color-surface-warm: #2e2416;
  --color-divider: #3a2e1c;
  --color-border: #4a3a22;

  --color-text: #e8d8b8;
  --color-text-muted: #b8a884;
  --color-text-faint: #8a7a5a;

  --color-gold: #c69858;
  --color-gold-hover: #d4a868;
  --color-gold-soft: #3a2e18;

  --color-amber-glow: rgba(198, 152, 88, 0.15);
}

/* ---- Body: Warm mid-tone base (NOT near-black) ---- */
body {
  background-color: #1a1510;
  background-image:
    /* Amber illumination across top */
    radial-gradient(ellipse 1600px 500px at 35% 0%,
      rgba(198, 152, 88, 0.12) 0%,
      rgba(198, 152, 88, 0.04) 30%,
      transparent 55%),
    /* Warm umber base — the dominant field */
    linear-gradient(180deg,
      #1a1510 0%,
      #221810 15%,
      #241a10 30%,
      #201810 45%,
      #221810 60%,
      #1a1510 80%,
      #181410 100%);
  background-attachment: fixed;
}

/* Paper grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---- Typography: Confident, present, readable ---- */
body {
  font-size: 1.0625rem;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.03em;
}

.eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: var(--space-3);
}

/* ---- Header ---- */
.site-header {
  background: color-mix(in srgb, #1a1510 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 20%, var(--color-divider));
}

.site-header__brand {
  font-size: var(--text-base);
  letter-spacing: 0.10em;
}

.site-nav__link {
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* ---- Hero: Warm/cool field — VISIBLE color ---- */
.hero {
  min-height: auto;
  padding: var(--space-8) var(--space-6) var(--space-4);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 18%, transparent);
  overflow: hidden;
  background:
    /* BOLD amber illumination — warm left */
    radial-gradient(ellipse 60% 85% at 20% 50%,
      rgba(198, 152, 88, 0.30) 0%,
      rgba(198, 152, 88, 0.12) 30%,
      rgba(198, 152, 88, 0.03) 55%,
      transparent 70%),
    /* Cool midnight — right */
    radial-gradient(ellipse 40% 75% at 85% 35%,
      rgba(37, 49, 59, 0.5) 0%,
      rgba(37, 49, 59, 0.15) 40%,
      transparent 60%),
    /* Warm/cool base gradient — SS split */
    linear-gradient(120deg,
      #2e2416 0%,
      #28200e 15%,
      #221810 30%,
      #1c1820 50%,
      #161820 70%,
      #121418 100%);
}

.hero::before, .hero::after { display: none; }

.hero__content {
  max-width: var(--content-narrow);
}

.hero__mark {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  opacity: 0.6;
}

.hero__brand {
  font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  margin-bottom: var(--space-1);
  text-shadow: 0 0 40px rgba(198, 152, 88, 0.30), 0 0 80px rgba(198, 152, 88, 0.12);
}

.hero__divider {
  margin: var(--space-3) 0;
}

.hero__divider::before,
.hero__divider::after {
  width: 80px;
  opacity: 0.40;
}

.hero__tagline {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  opacity: 0.85;
}

.hero__imprint {
  letter-spacing: 0.10em;
  color: var(--color-text-muted);
  opacity: 0.65;
}

.hero__scroll { display: none; }

/* ---- Doors: Warm gradient, merged with hero ---- */
.doors {
  background: linear-gradient(180deg,
    #221810 0%,
    #1e1810 40%,
    #1a1510 100%);
  border-top: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
}

.door {
  background: transparent;
  padding: var(--space-6) var(--space-4);
  min-height: 120px;
  position: relative;
  transition: background var(--transition), color var(--transition);
}

.door::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(198, 152, 88, 0.10) 0%,
    transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.door:hover::before { opacity: 1; }
.door:hover {
  background: rgba(198, 152, 88, 0.06);
  color: var(--color-gold);
}

.door__icon {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  opacity: 0.80;
}

.door__label {
  font-size: var(--text-base);
  letter-spacing: 0.08em;
}

.door__hint {
  font-size: var(--text-xs);
  margin-top: var(--space-1);
  letter-spacing: 0.06em;
}

/* ---- Featured Works: Warm substantial panel ---- */
.section--featured {
  background: linear-gradient(180deg,
    #1a1510 0%,
    #241a10 10%,
    #2a2014 25%,
    #2e2416 50%,
    #2a2014 75%,
    #241a10 90%,
    #1a1510 100%) !important;
  padding: var(--space-8) 0;
}

.featured-works {
  gap: var(--space-4);
  margin-top: var(--space-4);
}

/* ---- Work cards: Warm, substantial, designed ---- */
.work-card {
  background: linear-gradient(160deg,
    #2e2416 0%,
    #2a2014 35%,
    #241a10 70%,
    #201810 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 18%, var(--color-divider));
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(198, 152, 88, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-gold) 35%, var(--color-divider));
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.30),
    0 0 24px rgba(198, 152, 88, 0.10),
    inset 0 1px 0 rgba(198, 152, 88, 0.12);
}

.work-card__image {
  aspect-ratio: 3 / 2;
  background: #1a1408;
  border: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.work-card__image img {
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.work-card--featured {
  grid-column: span 2;
}

.work-card--featured .work-card__image {
  aspect-ratio: 16 / 9;
}

.work-card--featured .work-card__title {
  font-size: var(--text-xl);
}

.work-card__title {
  font-size: var(--text-lg);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}

.work-card__desc {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.work-card__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  margin-top: var(--space-3);
  color: var(--color-gold);
  opacity: 0.70;
}

/* ---- Editorial placeholder cards: RICH DESIGNED OBJECTS ---- */
.work-card--editorial .work-card__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    /* Amber glow */
    radial-gradient(ellipse 65% 50% at 50% 50%,
      rgba(198, 152, 88, 0.20) 0%,
      rgba(198, 152, 88, 0.06) 40%,
      transparent 70%),
    /* Warm gradient */
    linear-gradient(135deg,
      #3a2e1a 0%,
      #302410 30%,
      #2a2010 60%,
      #241a10 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 22%, var(--color-divider));
}

/* Top fine rule */
.work-card--editorial .work-card__image::before {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  top: 25%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--color-gold) 40%, transparent),
    transparent);
}

/* Bottom fine rule */
.work-card--editorial .work-card__image::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 25%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--color-gold) 30%, transparent),
    transparent);
}

.work-card--editorial .editorial-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  color: var(--color-gold);
  opacity: 0.50;
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px rgba(198, 152, 88, 0.30);
  position: relative;
  z-index: 1;
}

.work-card--editorial .editorial-subtitle {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  position: relative;
  z-index: 1;
  opacity: 0.55;
}

/* ---- Catalogue: Warm parchment panel ---- */
.section--catalogue {
  background: linear-gradient(180deg,
    #241a10 0%,
    #2e2416 20%,
    #322818 50%,
    #2e2416 80%,
    #241a10 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
}

.section--catalogue .section--tight { padding: var(--space-8) 0; }

.catalogue__item {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
}

.catalogue__title {
  letter-spacing: 0.02em;
}

/* ---- About: Warm panel ---- */
.section--about {
  background: linear-gradient(180deg,
    #241a10 0%,
    #2a2014 40%,
    #241a10 80%,
    #1a1510 100%) !important;
}

.about-block p {
  font-size: var(--text-lg);
  line-height: 1.60;
  color: var(--color-text-muted);
}

/* ---- Provenance ---- */
.provenance {
  background: linear-gradient(180deg,
    #1a1510 0%,
    #221810 50%,
    #181410 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
}

/* ---- Footer ---- */
.site-footer {
  background: linear-gradient(180deg, #181410 0%, #141008 100%);
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
  padding: var(--space-8) var(--space-6);
}

/* ---- Section density: TIGHTER ---- */
.section { padding: var(--space-8) 0; }
.section--tight { padding: var(--space-6) 0; }

/* ---- Mobile: Warm, dense, first-class ---- */
@media (max-width: 768px) {
  body { font-size: 1rem; }

  .hero {
    padding: var(--space-6) var(--space-4) var(--space-3);
    background:
      radial-gradient(ellipse 90% 70% at 25% 40%,
        rgba(198, 152, 88, 0.28) 0%,
        rgba(198, 152, 88, 0.08) 35%,
        transparent 60%),
      linear-gradient(140deg,
        #2e2416 0%,
        #241a10 35%,
        #1c1820 65%,
        #141118 100%);
  }

  .hero__brand {
    letter-spacing: 0.06em;
    text-indent: 0.06em;
    font-size: clamp(1.5rem, 1.1rem + 2.5vw, 2rem);
  }

  .hero__tagline {
    letter-spacing: 0.10em;
    text-indent: 0.10em;
    font-size: var(--text-sm);
  }

  .hero__imprint {
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
  }

  .doors { grid-template-columns: 1fr 1fr !important; }

  .door {
    padding: var(--space-5) var(--space-3);
    min-height: 90px;
  }

  .door__icon { font-size: var(--text-base); margin-bottom: var(--space-1); }
  .door__label { font-size: var(--text-sm); letter-spacing: 0.06em; }
  .door__hint { font-size: var(--text-xs); margin-top: var(--space-1); }

  .featured-works {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .work-card--featured { grid-column: span 1; }
  .work-card--featured .work-card__image { aspect-ratio: 3 / 2; }

  .work-card { padding: var(--space-3); }
  .work-card__image { aspect-ratio: 3 / 2; padding: var(--space-2); }
  .work-card__title { font-size: var(--text-base); }
  .work-card__desc { font-size: var(--text-sm); }

  .section { padding: var(--space-6) 0; }
  .section--featured,
  .section--catalogue,
  .section--about { padding: var(--space-6) 0; }

  .about-block p { font-size: var(--text-base); }

  .site-footer { padding: var(--space-6) var(--space-4); }

  .catalogue__item { padding-bottom: var(--space-3); }
}

/* Keep doors 2x2 on narrow */
@media (max-width: 480px) {
  .doors { grid-template-columns: 1fr 1fr !important; }
  .door { min-height: 80px; padding: var(--space-4) var(--space-2); }
}

/* ---- Light mode R4 ---- */
[data-theme="light"] body {
  background-color: #e8dcc8;
  background-image:
    radial-gradient(ellipse 1600px 500px at 35% 0%,
      rgba(138, 109, 59, 0.18) 0%,
      rgba(138, 109, 59, 0.06) 30%,
      transparent 55%),
    linear-gradient(180deg,
      #e8dcc8 0%, #e0d4ba 30%, #e5d8c0 60%, #e8dcc8 100%);
  background-attachment: fixed;
}

[data-theme="light"] {
  --color-bg: #e8dcc8;
  --color-surface: #f0e6d4;
  --color-surface-2: #f5ecdc;
  --color-surface-warm: #e5d8c0;
  --color-divider: #c4b898;
  --color-border: #b0a488;
  --color-text: #1a1510;
  --color-text-muted: #5a4e3a;
  --color-text-faint: #8a7e68;
  --color-gold: #8a6d3b;
}

[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse 60% 85% at 20% 50%,
      rgba(138, 109, 59, 0.22) 0%,
      rgba(138, 109, 59, 0.08) 30%,
      transparent 65%),
    radial-gradient(ellipse 40% 75% at 85% 35%,
      rgba(70, 82, 94, 0.12) 0%,
      transparent 55%),
    linear-gradient(120deg,
      #e5d8c0 0%, #e0d4ba 30%, #ddd0b8 50%, #d8ccb0 70%, #e0d4ba 100%);
}

[data-theme="light"] .doors {
  background: linear-gradient(180deg, #e0d4ba 0%, #ddd0b8 50%, #e8dcc8 100%);
}

[data-theme="light"] .work-card {
  background: linear-gradient(160deg, #f0e6d4 0%, #ece0cc 40%, #e8dcc8 100%);
  border-color: rgba(138, 109, 59, 0.22);
}

[data-theme="light"] .work-card--editorial .work-card__image {
  background:
    radial-gradient(ellipse 65% 50% at 50% 50%,
      rgba(138, 109, 59, 0.12) 0%, transparent 70%),
    linear-gradient(135deg, #e8dcc8 0%, #e0d4ba 50%, #ddd0b8 100%);
}

[data-theme="light"] .section--featured {
  background: linear-gradient(180deg, #e8dcc8 0%, #e0d4ba 50%, #e8dcc8 100%) !important;
}

[data-theme="light"] .section--catalogue {
  background: linear-gradient(180deg, #e0d4ba 0%, #e5d8c0 50%, #e0d4ba 100%) !important;
}

[data-theme="light"] .section--about {
  background: linear-gradient(180deg, #e5d8c0 0%, #e8dcc8 50%, #e8dcc8 100%) !important;
}

[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #e0d4ba 0%, #ddd0b8 100%);
}

/* ---- System dark fallback ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1a1510;
    --color-surface: #241c12;
    --color-surface-2: #2a2014;
    --color-surface-warm: #2e2416;
    --color-divider: #3a2e1c;
    --color-border: #4a3a22;
    --color-text: #e8d8b8;
    --color-text-muted: #b8a884;
    --color-text-faint: #8a7a5a;
    --color-gold: #c69858;
  }

  :root:not([data-theme]) body {
    background-color: #1a1510;
    background-image:
      radial-gradient(ellipse 1600px 500px at 35% 0%,
        rgba(198, 152, 88, 0.12) 0%,
        rgba(198, 152, 88, 0.04) 30%,
        transparent 55%),
      linear-gradient(180deg,
        #1a1510 0%, #221810 15%, #241a10 30%,
        #201810 45%, #221810 60%, #1a1510 80%, #181410 100%);
    background-attachment: fixed;
  }
}


/* ============================================================
   R5 — LAYOUT DENSITY + EDITORIAL RICHNESS
   Color palette is working (R4). Now fixing: spacing, typography
   size, placeholder card design, catalogue density, mobile.
   ============================================================ */

/* ---- Color overrides: warm mid-tone base ---- */
:root,
[data-theme="dark"] {
  --color-bg: #1a1510;
  --color-surface: #241c12;
  --color-surface-2: #2a2014;
  --color-surface-offset: #1e1810;
  --color-surface-warm: #2e2416;
  --color-divider: #3a2e1c;
  --color-border: #4a3a22;
  --color-text: #e8d8b8;
  --color-text-muted: #b8a884;
  --color-text-faint: #8a7a5a;
  --color-gold: #c69858;
  --color-gold-hover: #d4a868;
  --color-gold-soft: #3a2e18;
  --color-amber-glow: rgba(198, 152, 88, 0.15);
}

/* ---- Body: Warm base + texture ---- */
body {
  background-color: #1a1510;
  background-image:
    radial-gradient(ellipse 1600px 500px at 35% 0%,
      rgba(198, 152, 88, 0.12) 0%,
      rgba(198, 152, 88, 0.04) 30%,
      transparent 55%),
    linear-gradient(180deg,
      #1a1510 0%, #221810 15%, #241a10 30%,
      #201810 45%, #221810 60%, #1a1510 80%, #181410 100%);
  background-attachment: fixed;
  font-size: 1.0625rem;
  line-height: 1.6;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---- Typography: Confident and present ---- */
h1, h2, h3, h4, h5, h6 { letter-spacing: 0.03em; }

.eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: var(--space-2);
}

/* ---- Header ---- */
.site-header {
  background: color-mix(in srgb, #1a1510 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 20%, var(--color-divider));
}

.site-header__brand { font-size: var(--text-base); letter-spacing: 0.10em; }
.site-nav__link { font-size: var(--text-sm); letter-spacing: 0.06em; }

/* ---- Hero: COMPACT warm/cool field ---- */
.hero {
  min-height: auto;
  padding: var(--space-6) var(--space-6) var(--space-2);
  border-bottom: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 85% at 20% 50%,
      rgba(198, 152, 88, 0.28) 0%,
      rgba(198, 152, 88, 0.10) 30%,
      rgba(198, 152, 88, 0.03) 55%,
      transparent 70%),
    radial-gradient(ellipse 40% 75% at 85% 35%,
      rgba(37, 49, 59, 0.5) 0%,
      rgba(37, 49, 59, 0.15) 40%,
      transparent 60%),
    linear-gradient(120deg,
      #2e2416 0%, #28200e 15%, #221810 30%,
      #1c1820 50%, #161820 70%, #121418 100%);
}

.hero::before, .hero::after { display: none; }

.hero__content { max-width: var(--content-narrow); }

.hero__mark {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
  opacity: 0.55;
}

.hero__brand {
  font-size: clamp(1.8rem, 1.4rem + 2.5vw, 2.6rem);
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  margin-bottom: 0;
  text-shadow: 0 0 40px rgba(198, 152, 88, 0.25), 0 0 80px rgba(198, 152, 88, 0.10);
}

.hero__divider { margin: var(--space-2) 0; }
.hero__divider::before, .hero__divider::after { width: 72px; opacity: 0.35; }
.hero__divider-mark { font-size: var(--text-xs); }

.hero__tagline {
  font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1.05rem);
  letter-spacing: 0.10em;
  text-indent: 0.10em;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  opacity: 0.80;
}

.hero__imprint {
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  opacity: 0.60;
}

.hero__scroll { display: none; }

/* ---- Doors: COMPACT warm gradient, merged with hero ---- */
.doors {
  background: linear-gradient(180deg,
    #221810 0%, #1e1810 40%, #1a1510 100%);
  border-top: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
}

.door {
  background: transparent;
  padding: var(--space-5) var(--space-3);
  min-height: 100px;
  position: relative;
  transition: background var(--transition), color var(--transition);
}

.door::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(198, 152, 88, 0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.door:hover::before { opacity: 1; }
.door:hover { background: rgba(198, 152, 88, 0.06); color: var(--color-gold); }

.door__icon { font-size: var(--text-base); margin-bottom: var(--space-1); opacity: 0.80; }
.door__label { font-size: var(--text-sm); letter-spacing: 0.08em; }
.door__hint { font-size: var(--text-xs); margin-top: 0; letter-spacing: 0.06em; }

/* ---- Sections: TIGHT ---- */
.section { padding: var(--space-6) 0; }
.section--tight { padding: var(--space-5) 0; }

/* ---- Featured Works: Warm panel ---- */
.section--featured {
  background: linear-gradient(180deg,
    #1a1510 0%, #241a10 10%, #2a2014 30%,
    #2e2416 50%, #2a2014 75%, #241a10 90%, #1a1510 100%) !important;
  padding: var(--space-6) 0;
}

.featured-works { gap: var(--space-4); margin-top: var(--space-3); }

/* ---- Work cards: Warm, substantial ---- */
.work-card {
  background: linear-gradient(160deg,
    #2e2416 0%, #2a2014 35%, #241a10 70%, #201810 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 18%, var(--color-divider));
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(198, 152, 88, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-gold) 35%, var(--color-divider));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.30), 0 0 24px rgba(198, 152, 88, 0.10), inset 0 1px 0 rgba(198, 152, 88, 0.12);
}

.work-card__image {
  aspect-ratio: 3 / 2;
  background: #1a1408;
  border: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
  margin-bottom: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.work-card__image img { object-fit: contain; border-radius: var(--radius-sm); }

.work-card--featured { grid-column: span 2; }
.work-card--featured .work-card__image { aspect-ratio: 16 / 9; }
.work-card--featured .work-card__title { font-size: var(--text-lg); }

.work-card__title {
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-1);
}

.work-card__desc {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.work-card__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  margin-top: 0;
  color: var(--color-gold);
  opacity: 0.70;
}

/* ---- Editorial cards: RICH DESIGNED OBJECTS ---- */
.work-card--editorial .work-card__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 65% 50% at 50% 50%,
      rgba(198, 152, 88, 0.22) 0%,
      rgba(198, 152, 88, 0.08) 40%,
      transparent 70%),
    linear-gradient(135deg,
      #3a2e1a 0%, #302410 30%, #2a2010 60%, #241a10 100%);
  border: 1px solid color-mix(in srgb, var(--color-gold) 25%, var(--color-divider));
  padding: var(--space-4);
}

/* Top decorative rule */
.work-card--editorial .work-card__image::before {
  content: '';
  position: absolute;
  left: 15%; right: 15%; top: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent,
    color-mix(in srgb, var(--color-gold) 45%, transparent), transparent);
}

/* Bottom decorative rule */
.work-card--editorial .work-card__image::after {
  content: '';
  position: absolute;
  left: 15%; right: 15%; bottom: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent,
    color-mix(in srgb, var(--color-gold) 35%, transparent), transparent);
}

.work-card--editorial .editorial-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  color: var(--color-gold);
  opacity: 0.55;
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px rgba(198, 152, 88, 0.35);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-1);
}

.work-card--editorial .editorial-subtitle {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: var(--space-1);
  position: relative;
  z-index: 1;
  opacity: 0.50;
}

/* ---- Catalogue: DENSE warm panel ---- */
.section--catalogue {
  background: linear-gradient(180deg,
    #241a10 0%, #2e2416 20%, #322818 50%,
    #2e2416 80%, #241a10 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  padding: var(--space-6) 0;
}

.catalogue { gap: var(--space-4); }

.catalogue__item {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
}

.catalogue__title {
  font-size: var(--text-base);
  letter-spacing: 0.02em;
}

.catalogue__desc {
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

.catalogue__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

/* ---- About: Warm panel ---- */
.section--about {
  background: linear-gradient(180deg,
    #241a10 0%, #2a2014 40%, #241a10 80%, #1a1510 100%) !important;
  padding: var(--space-6) 0;
}

.about-block p {
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ---- Provenance ---- */
.provenance {
  background: linear-gradient(180deg,
    #1a1510 0%, #221810 50%, #181410 100%) !important;
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 12%, var(--color-divider));
  padding: var(--space-5) 0;
}

.provenance__list { gap: var(--space-6); margin-top: var(--space-4); }

/* ---- Footer ---- */
.site-footer {
  background: linear-gradient(180deg, #181410 0%, #141008 100%);
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 15%, var(--color-divider));
  padding: var(--space-6) var(--space-6);
}

.site-footer__brand { font-size: var(--text-base); }

/* ---- Divider ---- */
.divider { margin: var(--space-4) auto; }

/* ---- Mobile: WARM, DENSE, FIRST-CLASS ---- */
@media (max-width: 768px) {
  body { font-size: 1rem; }

  .hero {
    padding: var(--space-4) var(--space-4) var(--space-2);
    background:
      radial-gradient(ellipse 90% 70% at 25% 40%,
        rgba(198, 152, 88, 0.25) 0%,
        rgba(198, 152, 88, 0.08) 35%,
        transparent 60%),
      linear-gradient(140deg,
        #2e2416 0%, #241a10 35%, #1c1820 65%, #141118 100%);
  }

  .hero__brand {
    letter-spacing: 0.06em;
    text-indent: 0.06em;
    font-size: clamp(1.4rem, 1rem + 2vw, 1.8rem);
  }

  .hero__tagline {
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    font-size: var(--text-xs);
  }

  .hero__imprint { font-size: var(--text-xs); letter-spacing: 0.06em; }

  .doors { grid-template-columns: 1fr 1fr !important; }
  .door { padding: var(--space-4) var(--space-2); min-height: 80px; }
  .door__icon { font-size: var(--text-sm); margin-bottom: 0; }
  .door__label { font-size: var(--text-xs); letter-spacing: 0.06em; }
  .door__hint { font-size: 0.65rem; margin-top: 0; }

  .featured-works { grid-template-columns: 1fr; gap: var(--space-3); }
  .work-card--featured { grid-column: span 1; }
  .work-card--featured .work-card__image { aspect-ratio: 3 / 2; }
  .work-card { padding: var(--space-2); }
  .work-card__image { aspect-ratio: 3 / 2; padding: var(--space-2); }
  .work-card__title { font-size: var(--text-sm); }
  .work-card__desc { font-size: var(--text-xs); }

  .section { padding: var(--space-5) 0; }
  .section--featured, .section--catalogue, .section--about { padding: var(--space-5) 0; }

  .about-block p { font-size: var(--text-sm); }
  .site-footer { padding: var(--space-5) var(--space-4); }
  .catalogue__item { padding-bottom: var(--space-2); }
  .catalogue__title { font-size: var(--text-sm); }
  .catalogue__desc { font-size: var(--text-xs); }
}

@media (max-width: 480px) {
  .doors { grid-template-columns: 1fr 1fr !important; }
  .door { min-height: 70px; padding: var(--space-3) var(--space-2); }
}

/* ---- Light mode ---- */
[data-theme="light"] {
  --color-bg: #e8dcc8;
  --color-surface: #f0e6d4;
  --color-surface-2: #f5ecdc;
  --color-surface-warm: #e5d8c0;
  --color-divider: #c4b898;
  --color-border: #b0a488;
  --color-text: #1a1510;
  --color-text-muted: #5a4e3a;
  --color-text-faint: #8a7e68;
  --color-gold: #8a6d3b;
}

[data-theme="light"] body {
  background-color: #e8dcc8;
  background-image:
    radial-gradient(ellipse 1600px 500px at 35% 0%,
      rgba(138, 109, 59, 0.18) 0%,
      rgba(138, 109, 59, 0.06) 30%,
      transparent 55%),
    linear-gradient(180deg,
      #e8dcc8 0%, #e0d4ba 30%, #e5d8c0 60%, #e8dcc8 100%);
  background-attachment: fixed;
}

[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse 60% 85% at 20% 50%,
      rgba(138, 109, 59, 0.22) 0%,
      rgba(138, 109, 59, 0.08) 30%,
      transparent 65%),
    radial-gradient(ellipse 40% 75% at 85% 35%,
      rgba(70, 82, 94, 0.12) 0%, transparent 55%),
    linear-gradient(120deg,
      #e5d8c0 0%, #e0d4ba 30%, #ddd0b8 50%, #d8ccb0 70%, #e0d4ba 100%);
}

[data-theme="light"] .doors {
  background: linear-gradient(180deg, #e0d4ba 0%, #ddd0b8 50%, #e8dcc8 100%);
}

[data-theme="light"] .work-card {
  background: linear-gradient(160deg, #f0e6d4 0%, #ece0cc 40%, #e8dcc8 100%);
  border-color: rgba(138, 109, 59, 0.22);
}

[data-theme="light"] .work-card--editorial .work-card__image {
  background:
    radial-gradient(ellipse 65% 50% at 50% 50%,
      rgba(138, 109, 59, 0.12) 0%, transparent 70%),
    linear-gradient(135deg, #e8dcc8 0%, #e0d4ba 50%, #ddd0b8 100%);
}

[data-theme="light"] .section--featured {
  background: linear-gradient(180deg, #e8dcc8 0%, #e0d4ba 50%, #e8dcc8 100%) !important;
}

[data-theme="light"] .section--catalogue {
  background: linear-gradient(180deg, #e0d4ba 0%, #e5d8c0 50%, #e0d4ba 100%) !important;
}

[data-theme="light"] .section--about {
  background: linear-gradient(180deg, #e5d8c0 0%, #e8dcc8 50%, #e8dcc8 100%) !important;
}

[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #e0d4ba 0%, #ddd0b8 100%);
}

/* ---- System dark fallback ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1a1510;
    --color-surface: #241c12;
    --color-surface-2: #2a2014;
    --color-surface-warm: #2e2416;
    --color-divider: #3a2e1c;
    --color-border: #4a3a22;
    --color-text: #e8d8b8;
    --color-text-muted: #b8a884;
    --color-text-faint: #8a7a5a;
    --color-gold: #c69858;
  }
  :root:not([data-theme]) body {
    background-color: #1a1510;
    background-image:
      radial-gradient(ellipse 1600px 500px at 35% 0%,
        rgba(198, 152, 88, 0.12) 0%,
        rgba(198, 152, 88, 0.04) 30%,
        transparent 55%),
      linear-gradient(180deg,
        #1a1510 0%, #221810 15%, #241a10 30%,
        #201810 45%, #221810 60%, #1a1510 80%, #181410 100%);
    background-attachment: fixed;
  }
}

/* ---- Narrowlight plumb-bob-in-ring mark ---- */
.hero__mark-img {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-2);
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(198, 152, 88, 0.20));
}

.site-footer__mark {
  width: 28px;
  height: 28px;
  opacity: 0.55;
  margin-bottom: var(--space-2);
  display: block;
}

@media (max-width: 768px) {
  .hero__mark-img {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-1);
  }
  .site-footer__mark {
    width: 22px;
    height: 22px;
    margin-bottom: var(--space-1);
  }
}
