/* Elements — base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--stone);
  padding-top: var(--age-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  text-transform: uppercase;
}

p {
  margin: 0 0 var(--space-4);
}

a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

a::after {
  content: " ›";
  font-weight: 700;
}

a.no-chevron::after,
.site-nav a::after,
.btn::after,
.logo-link::after,
.safety-card a::after,
.age-bar a::after,
.cookie-banner a::after,
.footer-nav a::after,
.brand::after {
  content: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

ul,
ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.25rem;
}

strong {
  font-weight: 700;
}

button,
input,
textarea {
  font: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
}
