/* Rose Ventures — design tokens (vendored from the design system 257e7f9e).
 * Colors, typography, spacing, radius, effects and base element defaults.
 * Fonts are self-hosted (see fonts.css); do not add a Google Fonts @import here. */

:root {
  /* ---- Navy (primary ink / brand blue) ---- */
  --navy-950: #0F1521;
  --navy-900: #141C2B;
  --navy-800: #1D2637; /* brand primary — sampled from logo */
  --navy-700: #2B3A54;
  --navy-600: #3E4F6E;
  --navy-500: #566A8C;
  --navy-400: #7E8FAB;
  --navy-300: #A8B4C8;
  --navy-200: #D0D7E1;
  --navy-100: #E8ECF2;
  --navy-50:  #F4F6F9;

  /* ---- Rose gold (copper accent) ---- */
  --rose-950: #4E2A20;
  --rose-900: #6E4034;
  --rose-800: #8A5244;
  --rose-700: #A66355;
  --rose-600: #B4786A; /* brand accent — sampled from logo */
  --rose-500: #C48F81;
  --rose-400: #D3A99D;
  --rose-300: #E3C6BD;
  --rose-200: #F0DED8;
  --rose-100: #F8EEEA;
  --rose-50:  #FCF7F4;

  /* ---- Warm neutrals ---- */
  --white:  #FFFFFF;
  --paper:  #FBF8F5; /* default page background */
  --cream:  #F4EDE6;
  --sand:   #EAE0D6;
  --stone:  #D8CCC0;
  --taupe:  #B8AB9D;

  /* ---- Brand gradients ---- */
  --gradient-rose: linear-gradient(135deg, #D9AE9C 0%, #B4786A 48%, #94564A 100%);
  --gradient-navy: linear-gradient(160deg, #253150 0%, #1D2637 60%, #141C2B 100%);
  --gradient-navy-hero: linear-gradient(160deg, #2B3A54 0%, #1D2637 55%, #141C2B 100%);

  /* ---- Semantic status (warm-tuned) ---- */
  --success-600: #3F7A5A;
  --success-100: #E3F0E8;
  --warning-600: #C58A2E;
  --warning-100: #F6ECD8;
  --danger-600:  #B23B3B;
  --danger-100:  #F4E0E0;
  --info-600:    #3E4F6E;
  --info-100:    #E8ECF2;

  /* ---- Semantic aliases ---- */
  --color-bg:            var(--paper);
  --color-bg-alt:        var(--cream);
  --surface-card:        var(--white);
  --surface-raised:      var(--white);
  --surface-sunken:      var(--cream);
  --surface-inverse:     var(--navy-800);

  --text-strong:         var(--navy-900);
  --text-body:           var(--navy-800);
  --text-muted:          #6B7690;
  --text-subtle:         #93A0B5;
  --text-on-dark:        var(--cream);
  --text-on-dark-muted:  #A8B4C8;
  --text-accent:         var(--rose-700);

  --accent:              var(--rose-600);
  --accent-hover:        var(--rose-700);
  --accent-active:       var(--rose-800);
  --accent-soft:         var(--rose-100);
  --on-accent:           #FFFFFF;

  --border:              #EBE2D8;
  --border-strong:       #DACCBF;
  --border-accent:       var(--rose-300);
  --divider:             #EFE8DF;

  --ring:                color-mix(in srgb, var(--rose-600) 45%, transparent);
  --focus-ring:          var(--rose-600);

  /* ---- Families ---- */
  --font-serif:  'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-sans:   'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display:'Jost', 'Century Gothic', 'Futura', var(--font-sans);
  --font-mono:   ui-monospace, 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
  --font-heading: var(--font-serif);
  --font-body:    var(--font-sans);
  --font-label:   var(--font-display);

  /* ---- Weights ---- */
  --fw-light: 300; --fw-regular: 400; --fw-medium: 500;
  --fw-semibold: 600; --fw-bold: 700; --fw-extrabold: 800;

  /* ---- Type scale ---- */
  --text-2xs: 0.6875rem; --text-xs: 0.75rem; --text-sm: 0.875rem;
  --text-base: 1rem; --text-md: 1.125rem; --text-lg: 1.375rem;
  --text-xl: 1.75rem; --text-2xl: 2.25rem; --text-3xl: 3rem;
  --text-4xl: 4rem; --text-5xl: 5.25rem;

  /* ---- Line heights ---- */
  --leading-tight: 1.08; --leading-snug: 1.25; --leading-normal: 1.5; --leading-relaxed: 1.7;

  /* ---- Letter spacing ---- */
  --tracking-tight: -0.02em; --tracking-normal: 0; --tracking-wide: 0.04em;
  --tracking-wider: 0.12em; --tracking-widest: 0.28em;

  /* ---- Spacing (4px base grid) ---- */
  --space-0: 0; --space-px: 1px;
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-7: 2rem; --space-8: 2.5rem;
  --space-9: 3rem; --space-10: 4rem; --space-11: 5rem; --space-12: 6.5rem; --space-13: 8rem;

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-wide: 1360px;
  --container-narrow: 760px;
  --gutter: var(--space-6);
  --section-y: var(--space-12);

  /* ---- Radius ---- */
  --radius-none: 0; --radius-xs: 3px; --radius-sm: 6px; --radius-md: 10px;
  --radius-lg: 16px; --radius-xl: 24px; --radius-2xl: 32px;
  --radius-pill: 999px; --radius-circle: 50%;
  --radius-button: var(--radius-sm);
  --radius-input: var(--radius-sm);
  --radius-card: var(--radius-lg);
  --radius-chip: var(--radius-pill);
  --border-w: 1px; --border-w-thick: 1.5px;

  /* ---- Elevation ---- */
  --shadow-xs: 0 1px 2px rgba(20, 28, 43, 0.06);
  --shadow-sm: 0 1px 3px rgba(20, 28, 43, 0.07), 0 1px 2px rgba(20, 28, 43, 0.05);
  --shadow-md: 0 4px 14px rgba(20, 28, 43, 0.08), 0 2px 5px rgba(20, 28, 43, 0.05);
  --shadow-lg: 0 14px 34px rgba(20, 28, 43, 0.10), 0 5px 12px rgba(20, 28, 43, 0.06);
  --shadow-xl: 0 28px 60px rgba(20, 28, 43, 0.14), 0 10px 24px rgba(20, 28, 43, 0.08);
  --shadow-accent: 0 8px 24px rgba(180, 120, 106, 0.28);
  --ring-focus: 0 0 0 3px var(--ring);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 130ms; --dur-base: 200ms; --dur-slow: 360ms;

  /* ---- Blur (frosted nav) ---- */
  --blur-panel: saturate(120%) blur(12px);
}

/* ---- Base element defaults ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  font-weight: var(--fw-semibold);
  line-height: var(--leading-tight);
  margin: 0;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--accent); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; }
::selection { background: var(--rose-200); color: var(--navy-900); }
