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

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(246, 163, 19, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(255, 248, 233, 0.94), rgba(243, 236, 217, 0.98)),
    repeating-linear-gradient(
      90deg,
      rgba(17, 23, 29, 0.02),
      rgba(17, 23, 29, 0.02) 1px,
      transparent 1px,
      transparent 2rem
    );
}

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

a {
  color: inherit;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.05;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.2rem;
}

small,
.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.96);
}

input:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(246, 163, 19, 0.35);
  outline-offset: 2px;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
