/* ==========================================================
   DESIGN TOKENS
========================================================== */

:root {
  --color-primary: #03306b;
  --color-primary-dark: #022754;
  --color-primary-soft: #123d82;

  --color-accent: #fdb913;
  --color-accent-dark: #d6a328;

  --color-text: #222222;
  --color-text-muted: #66748a;

  --color-white: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f8f9fb;
  --color-border: #e7edf6;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 6px 18px rgba(20, 45, 90, 0.06);
  --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(3, 48, 107, 0.1);

  --section-space-y: 100px;

  --transition-fast: 0.25s ease;
  --transition-base: 0.35s ease;
}


/* ==========================================================
   BASE
========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  overflow-x: hidden;

  background: var(--color-surface);

  color: var(--color-text);

  -webkit-font-smoothing: antialiased;

  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

:focus-visible {
  outline: 3px solid rgba(253, 185, 19, 0.55);

  outline-offset: 3px;
}


/* ==========================================================
   GLOBAL UTILITIES
========================================================== */

.section-padding {
  padding-top: var(--section-space-y);

  padding-bottom: var(--section-space-y);
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.section-heading__title {
  margin: 12px 0 18px;

  color: var(--color-primary);

  font-size: clamp(2rem, 4vw, 2.5rem);

  font-weight: 800;

  line-height: 1.2;
}


/* ==========================================================
   RESPONSIVE BASE
========================================================== */

@media (max-width: 767.98px) {
  :root {
    --section-space-y: 72px;
  }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }
}