    /* ═══════════════════════════════════════════════════════════════
       WIZARDSKI — About Page Styles
       Dark Theme • Alpine Design System
       ═══════════════════════════════════════════════════════════════ */

    /* ── CSS Custom Properties (Dark Theme) ── */
    :root,
    [data-theme="dark"] {
      --bg: #06060d;
      --bg-secondary: #0e0e18;
      --bg-card: rgba(14, 14, 24, 0.85);
      --text: #e4e4ec;
      --text-secondary: #9999aa;
      --accent: #d4b06a;
      --accent-hover: #e4c07a;
      --border: #1a1a2c;
      --border-hover: #2a2a3c;
      --surface: #0e0e18;
      --card-bg: rgba(14, 14, 24, 0.9);
      --card-border: #1a1a2c;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    }

    /* ── Light Theme (day) — same day palette as impressum/seo twins ── */
    [data-theme="light"] {
      --bg: #faf9f7;
      --bg-secondary: #f0efed;
      --bg-card: rgba(255, 255, 255, 0.95);
      --text: #1a1a2c;
      --text-secondary: #6e6e82;
      --accent: #b8942e;
      --accent-hover: #9a7a24;
      --border: #e0dfd8;
      --border-hover: #d0cfc8;
      --surface: #ffffff;
      --card-bg: rgba(255, 255, 255, 0.95);
      --card-border: #e0dfd8;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    }

    /* ── Reset & Base ── */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    /* ── Container ── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ── Section ── */
    .section {
      padding: 6rem 0;
      position: relative;
    }

    /* ═══════════════ HERO SECTION ═══════════════ */
    .hero {
      position: relative;
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 8rem 1.5rem 4rem;
      overflow: hidden;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.3;
    }

    .hero__eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      opacity: 0.8;
    }

    .hero__title {
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 200;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .hero__title span {
      color: var(--accent);
      font-weight: 400;
    }

    .hero__subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ═══════════════ STORY SECTION ═══════════════ */
    .story {
      background: var(--bg);
    }

    .story__content {
      max-width: 800px;
      margin: 0 auto;
    }

    .story__paragraph {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .story__paragraph:first-of-type::first-letter {
      font-size: 3.5rem;
      font-weight: 200;
      color: var(--accent);
      float: left;
      line-height: 1;
      padding-right: 0.75rem;
      margin-top: 0.1rem;
    }

    .story__paragraph strong {
      color: var(--text);
      font-weight: 500;
    }

    .story__paragraph .highlight {
      color: var(--accent);
    }

    /* ═══════════════ VALUES SECTION ═══════════════ */
    .values {
      background: var(--bg-secondary);
    }

    .section__label {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
      text-align: center;
    }

    .section__heading {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 300;
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 0.75rem;
    }

    .section__sub {
      color: var(--text-secondary);
      text-align: center;
      max-width: 550px;
      margin: 0 auto 3.5rem;
      font-size: 0.95rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .values__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .value-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-left: 4px solid var(--accent);
      border-radius: 0 12px 12px 0;
      padding: 2rem 2rem 2rem 1.75rem;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-hover);
      border-left-color: var(--accent-hover);
    }

    .value-card__icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      display: block;
    }

    .value-card__title {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
      color: var(--text);
    }

    .value-card__desc {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ═══════════════ CTA SECTION ═══════════════ */
    .cta-section {
      background: var(--bg);
      text-align: center;
      padding: 5rem 0;
    }

    .cta-section__title {
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      font-weight: 300;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .cta-section__text {
      color: var(--text-secondary);
      max-width: 500px;
      margin: 0 auto 2.5rem;
      font-size: 0.95rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .btn {
      display: inline-block;
      padding: 0.875rem 2.5rem;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn--primary {
      background: var(--accent);
      color: #06060d;
    }

    .btn--primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(212, 176, 106, 0.3);
    }

    /* ═══════════════ DIVIDER ═══════════════ */
    .brand-divider {
      width: 60px;
      height: 1px;
      background: var(--accent);
      margin: 0 auto 2rem;
      opacity: 0.5;
    }

    /* ═══════════════ RESPONSIVE ═══════════════ */
    @media (max-width: 768px) {
      .section {
        padding: 4rem 0;
      }
      .hero {
        min-height: 40vh;
        padding: 7rem 1.5rem 3rem;
      }
      .story__paragraph {
        font-size: 0.95rem;
      }
      .values__grid {
        grid-template-columns: 1fr;
      }
      .value-card {
        padding: 1.5rem;
      }
      .cta-section {
        padding: 3.5rem 0;
      }
    }

    @media (max-width: 480px) {
      .hero__title {
        font-size: 2.2rem;
      }
      .container {
        padding: 0 1.25rem;
      }
    }
