/* personalgold – Design-Tokens (verbindlich, aus dem Design-Handoff).
   Quelle: _ds/.../tokens/*.css + Inline-:root der .dc.html-Referenzen.
   Diese Variablen werden auch als Bricks-Globals gespiegelt. */

:root{
  /* ---- Gold (einziger Akzent) ---- */
  --gold-50:#faf6ea; --gold-100:#f3e9c9; --gold-200:#e7d196; --gold-300:#dabd63;
  --gold-400:#d2b347; --gold-500:#cba72f; --gold-600:#ad8c22; --gold-700:#876c1c;
  --gold-800:#5f4c16; --gold-900:#3d310f;

  /* ---- Ink / Navy (primär dunkel) ---- */
  --ink-900:#000000; --navy-900:#0b1220; --navy-800:#121b2e; --navy-700:#1b2740; --navy-600:#273654;

  /* ---- Neutrals ---- */
  --n0:#ffffff; --n50:#f7f8fa; --n100:#eef0f4; --n200:#e1e4ea; --n300:#cdd2db;
  --n400:#a3abba; --n500:#79828f; --n600:#565e6b; --n700:#3c434e; --n800:#262c35; --n900:#14181f;

  /* ---- Text-Aliase ---- */
  --txt:#000000; --txt2:#565e6b; --txt3:#79828f;

  /* ---- Status ---- */
  --success-500:#2f8f5b; --warning-500:#cba72f; --danger-500:#c0392b; --info-500:#2d6cb5;

  /* ---- Radii ---- */
  --r-sm:8px;    /* Buttons/Inputs */
  --r-md:12px;   /* Karten/Dropdowns */
  --r-pill:999px;

  /* ---- Schatten ---- */
  --sh-card:0 1px 2px rgba(11,18,32,.05);
  --sh-hover:0 16px 36px rgba(11,18,32,.12);
  --sh-drop:0 12px 32px rgba(11,18,32,.12);
  --sh-gold:0 10px 24px rgba(203,167,47,.38);

  /* ---- Layout & Motion ---- */
  --wrap:1200px; --gutter:24px; --section-y:88px;
  --ease:cubic-bezier(.2,.8,.2,1);

  /* ---- Fokus-Ring (gold, 35% Alpha) ---- */
  --focus-ring:0 0 0 3px rgba(203,167,47,.35);
}

/* Globale Grundstile */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
  color:var(--txt);
  background:#fff;
  line-height:1.65;
  font-size:16px;
}
a{color:inherit;}
input,textarea,select{font-family:inherit;}
section[id]{scroll-margin-top:124px;} /* Anker-Offset = Header-Höhe */

/* Eyebrow-Label */
.pg-eyebrow{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--gold-700);}
