/* ============================================
   CSS Reset + Base Styles
   ============================================ */

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

* {
  margin: 0;
  padding: 0;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

/* ── Base Styles ── */

html {
  scroll-behavior: smooth;

}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-50);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue-dark-600);
}