/* ============================================================
   THEME: REFLECTOR — "The Curated Legacy"
   Quiet luxury, linen tones, editorial serif elegance
   ============================================================ */

[data-theme="reflector"] {
  /* Colors */
  --bg: #fbf9f6;
  --surface: #fbf9f6;
  --surface-container-low: #f5f3f0;
  --surface-container-high: #e8e8e3;
  --primary: #5a605c;
  --primary-dim: #4f5450;
  --on-surface: #30332f;
  --on-surface-variant: #5d605b;
  --on-primary: #f5f9f4;
  --accent: #645f54;
  --accent-secondary: #eae2d4;
  --outline-variant: #b1b3ad;
  --outline: #797b77;

  /* Typography */
  --font-headline: 'Noto Serif', serif;
  --font-body: 'Manrope', sans-serif;
  --font-label: 'Manrope', sans-serif;
  --font-signature: 'Noto Serif', serif;

  /* Shape */
  --radius: 0.125rem;

  /* Decorative */
  --texture-opacity: 0;
  --grain-opacity: 0;
  --glow-opacity: 0.4;
}

[data-theme="reflector"] body {
  background-color: #fbf9f6;
}

[data-theme="reflector"] .site-header {
  background: #fbf9f6;
}

/* Serif title */
[data-theme="reflector"] .site-title {
  font-family: 'Noto Serif', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #5a605c;
}

/* Content label */
[data-theme="reflector"] .content-label {
  font-family: 'Manrope', sans-serif;
  color: #5d605b;
}

/* Glassmorphism content container */
[data-theme="reflector"] .content-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(2rem, 6vw, 6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

/* Large serif quote */
[data-theme="reflector"] .content-quote {
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #5a605c;
}

/* Decorative asymmetric line */
[data-theme="reflector"] .content-container::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: 3rem;
  width: 8rem;
  height: 1px;
  background: #b1b3ad;
  opacity: 0.3;
}

/* Footer */
[data-theme="reflector"] .footer-text {
  font-family: 'Manrope', sans-serif;
}

/* Soft organic blobs */
[data-theme="reflector"] .bg-glow-blob--primary {
  background: #f5f3f0;
  opacity: 0.4;
  filter: blur(100px);
}

[data-theme="reflector"] .bg-glow-blob--accent {
  background: #e8e8e3;
  opacity: 0.3;
  filter: blur(100px);
}

/* Dropdown */
[data-theme="reflector"] .theme-selector {
  background-color: transparent;
  font-family: 'Manrope', sans-serif;
}

[data-theme="reflector"] .theme-selector:hover {
  background-color: #f5f3f0;
}

/* Selection */
[data-theme="reflector"] ::selection {
  background: #dfe4df;
  color: #30332f;
}

@media (max-width: 768px) {
  [data-theme="reflector"] .content-container {
    padding: 1.5rem;
  }
  
  [data-theme="reflector"] .content-container::after {
    display: none;
  }
}
