@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --primary: #0a2342;
  --primary-light: #1a3a5c;
  --accent: #c9a84c;
  --accent-light: #e8c97a;
  --neutral-dark: #1c1c1e;
  --neutral-mid: #4a4a4a;
  --neutral-light: #f5f5f0;
  --white: #ffffff;
  --success: #2e7d5a;
  --border: #e2e0d8;
  --gradient-hero: linear-gradient(135deg, #0a2342 0%, #1a3a5c 60%, #0f3460 100%);
  --gradient-accent: linear-gradient(90deg, #c9a84c, #e8c97a);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;

  --radius-card: 12px;
  --radius-btn: 6px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);

  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 500; }

p {
  font-size: 1rem;
  color: var(--neutral-mid);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-light); }

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section {
  padding: var(--space-12) 0;
}

.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.bg-primary { background-color: var(--primary); }
.bg-navy { background: var(--gradient-hero); }
.bg-light { background-color: var(--neutral-light); }
.bg-white { background-color: var(--white); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: var(--space-2);
}
