:root {
  color-scheme: light;

  --color-navy-950: #0a1621;
  --color-navy-900: #10202f;
  --color-navy-800: #193246;
  --color-green-700: #126361;
  --color-green-600: #177a78;
  --color-green-100: #dff1ef;
  --color-gold-600: #a77f35;
  --color-gold-500: #c9a45d;
  --color-gold-100: #f5ead4;
  --color-ivory: #f6f4ef;
  --color-white: #ffffff;
  --color-text: #20252b;
  --color-gray-700: #505960;
  --color-gray-600: #687078;
  --color-gray-200: #dfe4e7;
  --color-gray-100: #edf0f2;
  --color-error: #b42318;
  --color-error-soft: #fef3f2;
  --color-success: #157347;
  --color-success-soft: #ecfdf3;
  --color-focus: #1769aa;

  --font-sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-size-14: 0.875rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-30: 1.875rem;
  --font-size-40: 2.5rem;
  --font-size-48: 3rem;
  --font-size-64: 4rem;

  --line-height-tight: 1.2;
  --line-height-heading: 1.35;
  --line-height-body: 1.7;

  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-64: 4rem;
  --space-80: 5rem;
  --space-96: 6rem;
  --space-120: 7.5rem;
  --space-160: 10rem;

  --container-width: 80rem;
  --page-gutter: 2.5rem;
  --section-space: clamp(7.5rem, 10vw, 10rem);

  --radius-8: 0.5rem;
  --radius-12: 0.75rem;
  --radius-20: 1.25rem;
  --radius-pill: 999px;

  --shadow-card: 0 1rem 2.5rem rgba(16, 32, 47, 0.09);
  --shadow-focus: 0 0 0 0.25rem rgba(23, 105, 170, 0.25);
  --transition-fast: 160ms ease;
  --transition-base: 240ms ease;
}

@media (max-width: 74.9375rem) {
  :root {
    --page-gutter: 1.75rem;
  }
}

@media (max-width: 47.9375rem) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: clamp(4.5rem, 18vw, 6rem);
  }
}

