/* =========================================================
   Bronzette by Caro — Theme tokens
   Three art directions, switchable via [data-theme].
   ========================================================= */

:root {
  /* fonts — brand stack: Playfair (heads), Cormorant (accents), Poppins (body) */
  --font-display: "Playfair Display", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;

  /* geometry */
  --maxw: 1240px;
  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 26px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* derived from --accent (override --accent and these follow) */
  --accent-deep: color-mix(in oklab, var(--accent), #1a0e06 26%);
  --accent-tint: color-mix(in oklab, var(--accent) 16%, var(--surface));
  --accent-veil: color-mix(in oklab, var(--accent) 9%, var(--bg));
}

/* ---- GLOW — warm cream editorial (default) ---- */
[data-theme="glow"] {
  --bg: #fdf8f4;
  --surface: #ffffff;
  --surface-2: #fbece1;
  --text: #3c2c22;
  --text-soft: #6a584c;
  --line: rgba(192, 133, 82, .18);
  --accent: #c08552;
  --accent-contrast: #fff8f0;
  --gold: #d99c5b;
  --shadow: 0 18px 50px -20px rgba(120, 80, 50, .35);
  --shadow-sm: 0 8px 24px -12px rgba(120, 80, 50, .30);
  --hero-veil: linear-gradient(180deg, rgba(253,248,244,0) 40%, rgba(253,248,244,.92) 100%);
}

/* ---- NOIR — deep espresso, gilded ---- */
[data-theme="noir"] {
  --bg: #18110d;
  --surface: #221913;
  --surface-2: #2b2017;
  --text: #f1e7da;
  --text-soft: #b6a48f;
  --line: rgba(241, 231, 218, .14);
  --accent: #cca15e;
  --accent-contrast: #1a1109;
  --gold: #d9b06a;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .75);
  --shadow-sm: 0 16px 40px -24px rgba(0, 0, 0, .7);
  --hero-veil: linear-gradient(180deg, rgba(24,17,13,0) 30%, rgba(24,17,13,.82) 100%);
}

/* ---- SAND — pale minimal ---- */
[data-theme="sand"] {
  --bg: #f0e8db;
  --surface: #f8f2e9;
  --surface-2: #e6d9c6;
  --text: #34291f;
  --text-soft: #8a7967;
  --line: rgba(52, 41, 31, .14);
  --accent: #a9764f;
  --accent-contrast: #fbf6ef;
  --gold: #c08552;
  --shadow: 0 26px 60px -32px rgba(86, 60, 36, .4);
  --shadow-sm: 0 14px 34px -24px rgba(86, 60, 36, .34);
  --hero-veil: linear-gradient(180deg, rgba(240,232,219,0) 40%, rgba(240,232,219,.92) 100%);
}

/* ---- Font pairing variant: modern sans display ---- */
[data-font="sans"] {
  --font-display: "Hanken Grotesk", system-ui, sans-serif;
  --font-accent: "Hanken Grotesk", system-ui, sans-serif;
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
}
[data-font="sans"] h1,
[data-font="sans"] h2,
[data-font="sans"] h3,
[data-font="sans"] .logo-mark {
  font-weight: 700;
  letter-spacing: -.02em;
}
[data-font="sans"] em { font-style: italic; }
