/* Weingut Kauppert — Color tokens
   Warm heritage-modern Franconian winery palette:
   Bordeaux (wine), Franken gold, vine green, warm sandstone neutrals. */
:root {
  /* --- Wine / Bordeaux (primary) --- */
  --wine-950: #2E1119;
  --wine-900: #3A1420;
  --wine-800: #4E1B2A;
  --wine-700: #6B2436; /* brand primary */
  --wine-600: #862E43;
  --wine-500: #A23A52;
  --wine-400: #C05E74;
  --wine-300: #D68C9C;
  --wine-200: #E8BEC8;
  --wine-100: #F4E1E6;
  --wine-50:  #FBF1F3;

  /* --- Warmes Bernstein (accent) --- */
  --gold-800: #6E4611;
  --gold-700: #8A5A16;
  --gold-600: #A26B1E;
  --gold-500: #C2872E; /* brand accent (Bernstein) */
  --gold-400: #D9A24E;
  --gold-300: #E8C07E;
  --gold-200: #F2D8AC;
  --gold-100: #FBF3E1;

  /* --- Vine Green (secondary / Bocksbeutel green) --- */
  --vine-900: #232E20;
  --vine-800: #2F3D2A;
  --vine-700: #3E5138;
  --vine-600: #556B4A;
  --vine-500: #6E855F;
  --vine-300: #A9BD9D;
  --vine-100: #E4EBDD;

  /* --- Warm Sandstone Neutrals --- */
  --sand-50:  #FAF6EF; /* page */
  --sand-100: #F3ECDF;
  --sand-200: #E7DCC9;
  --sand-300: #D6C7AD;
  --sand-400: #BCAB8C;

  --ink-900: #241C18; /* near-black, warm */
  --ink-800: #34291F;
  --ink-700: #4A4038;
  --ink-600: #5F5449;
  --ink-500: #7A6E60;
  --ink-400: #998C7B;
  --white:   #FFFFFF;
  --card-white: #FFFDF8; /* warm paper white */

  /* --- Semantic status --- */
  --success-600: #4E7A46;
  --success-100: #E4EEDF;
  --warning-600: #B4791E;
  --warning-100: #F7E9CC;
  --danger-600:  #A32C2C;
  --danger-100:  #F5DEDE;
  --info-600:    #3E6079;
  --info-100:    #DDE8EE;
}/* Weingut Kauppert — Typography tokens */
:root {
  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Weights */
  --fw-regular: 400; /* @kind font */
  --fw-medium: 500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold: 700; /* @kind font */

  /* Fluid-ish display scale (px) */
  --fs-display-2xl: 84px;
  --fs-display-xl: 64px;
  --fs-display-lg: 48px;
  --fs-display-md: 38px;
  --fs-display-sm: 30px;

  /* Text scale */
  --fs-xl: 22px;
  --fs-lg: 19px;
  --fs-md: 17px;  /* base body */
  --fs-sm: 15px;
  --fs-xs: 13px;
  --fs-2xs: 11px; /* eyebrow / labels */

  /* Line heights */
  --lh-tight: 1.08; /* @kind font */
  --lh-snug: 1.25; /* @kind font */
  --lh-normal: 1.5; /* @kind font */
  --lh-relaxed: 1.7; /* @kind font */

  /* Letter spacing */
  --ls-eyebrow: 0.18em; /* uppercase labels */
  --ls-tight: -0.01em;
  --ls-display: -0.015em;
}/* Weingut Kauppert — Spacing scale (4px base) */
:root {
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
  --gutter: 24px;
}/* Weingut Kauppert — Corner radii (soft, restrained) */
:root {
  --radius-none: 0;
  --radius-xs: 3px;
  --radius-sm: 5px;   /* inputs, chips */
  --radius-md: 8px;   /* buttons, cards */
  --radius-lg: 12px;  /* large cards, media */
  --radius-xl: 18px;
  --radius-pill: 999px;
}/* Weingut Kauppert — Elevation (soft, warm-tinted) */
:root {
  --shadow-xs: 0 1px 2px rgba(46, 17, 25, 0.06);
  --shadow-sm: 0 1px 3px rgba(46, 17, 25, 0.08), 0 1px 2px rgba(46, 17, 25, 0.05);
  --shadow-md: 0 4px 12px rgba(46, 17, 25, 0.09), 0 2px 4px rgba(46, 17, 25, 0.05);
  --shadow-lg: 0 12px 28px rgba(46, 17, 25, 0.12), 0 4px 8px rgba(46, 17, 25, 0.06);
  --shadow-xl: 0 24px 48px rgba(46, 17, 25, 0.16);
  --ring-focus: 0 0 0 3px rgba(198, 154, 69, 0.45); /* gold focus ring */
}/* Weingut Kauppert — Semantic aliases (reference base tokens above) */
:root {
  /* Brand */
  --brand-primary: var(--wine-700);
  --brand-primary-hover: var(--wine-800);
  --brand-primary-press: var(--wine-900);
  --brand-accent: var(--gold-500);
  --brand-accent-hover: var(--gold-600);
  --brand-secondary: var(--vine-700);

  /* Surfaces */
  --surface-page: var(--sand-50);
  --surface-subtle: var(--sand-100);
  --surface-card: var(--card-white);
  --surface-inverse: var(--wine-900);
  --surface-accent-soft: var(--gold-100);

  /* Text */
  --text-body: var(--ink-900);
  --text-muted: var(--ink-500);
  --text-subtle: var(--ink-400);
  --text-on-brand: var(--sand-50);
  --text-on-accent: var(--wine-900);
  --text-link: var(--wine-700);
  --text-link-hover: var(--wine-600);

  /* Borders */
  --border-subtle: var(--sand-200);
  --border-default: var(--sand-300);
  --border-strong: var(--sand-400);
  --border-brand: var(--wine-700);

  /* Focus */
  --focus-ring: var(--ring-focus);
}