@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,900;1,900&family=DM+Sans:wght@400;500&display=swap');

:root {
  --color-bg:            #F8F7F4;
  --color-white:         #FFFFFF;
  --color-blue:          #1a3fa0;
  --color-blue-dark:     #122d78;
  --color-blue-light:    #2a52c8;
  --color-blue-tint:     #eef1fb;
  --color-gold:          #C8840E;
  --color-gold-dark:     #a36a08;
  --color-gold-light:    #f5a623;
  --color-gold-tint:     #fdf3e3;
  --color-text:          #111827;
  --color-text-secondary:#4B5563;
  --color-text-tertiary: #9CA3AF;
  --color-border:        #E5E2DB;
  --color-border-strong: #C8C4BB;
  --color-success:       #059669;
  --color-purple:        #7C3AED;
  --color-teal:          #0891b2;
  --color-rose:          #e11d48;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;

  --leading-tight:   1.2;
  --leading-snug:    1.35;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  --tracking-tight:   -0.02em;
  --tracking-normal:   0em;
  --tracking-wide:     0.04em;
  --tracking-widest:   0.12em;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --max-width:       1100px;
  --section-padding: var(--space-20);
  --gutter:          var(--space-6);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  --shadow-xs:   0 1px 2px 0 rgba(17, 24, 39, 0.05);
  --shadow-sm:   0 1px 3px 0 rgba(17, 24, 39, 0.08), 0 1px 2px -1px rgba(17, 24, 39, 0.04);
  --shadow-md:   0 4px 6px -1px rgba(17, 24, 39, 0.08), 0 2px 4px -2px rgba(17, 24, 39, 0.04);
  --shadow-lg:   0 10px 15px -3px rgba(17, 24, 39, 0.08), 0 4px 6px -4px rgba(17, 24, 39, 0.03);
  --shadow-xl:   0 20px 25px -5px rgba(17, 24, 39, 0.08), 0 8px 10px -6px rgba(17, 24, 39, 0.03);
  --shadow-blue: 0 8px 24px -4px rgba(26, 63, 160, 0.25);
  --shadow-gold: 0 4px 16px -4px rgba(200, 132, 14, 0.30);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --duration-fast:   120ms;
  --duration-normal: 240ms;
  --duration-slow:   400ms;
  --duration-enter:  600ms;

  --nav-height: 68px;
}

/* Base reset and typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}
