@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: var(--ls-font-body);
  background: var(--ls-off-white);
  color: var(--ls-gray-800);
  line-height: 1.6;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ls-font-display);
  color: var(--ls-navy);
  line-height: 1.2;
  font-weight: var(--ls-weight-bold);
}

h1 { font-size: var(--ls-text-4xl); }
h2 { font-size: var(--ls-text-3xl); }
h3 { font-size: var(--ls-text-2xl); }
h4 { font-size: var(--ls-text-xl); }
h5 { font-size: var(--ls-text-lg); }
h6 { font-size: var(--ls-text-base); }

p {
  margin-bottom: var(--ls-space-4);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--ls-navy);
  text-decoration: none;
  transition: color var(--ls-transition-fast);
}

a:hover {
  color: var(--ls-gold);
}

code,
pre {
  font-family: var(--ls-font-mono);
  font-size: var(--ls-text-sm);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--ls-navy);
  color: var(--ls-white);
}

:focus-visible {
  outline: 2px solid var(--ls-gold);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ls-gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--ls-gray-200);
  border-radius: var(--ls-radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ls-gray-400);
}
