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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
}

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

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

.page {
  overflow-x: hidden;
}

.section {
  padding: 96px 24px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title {
  font-size: clamp(48px, 7vw, 96px);
  max-width: 880px;
  margin-bottom: 24px;
}

.section-copy {
  max-width: 620px;
  font-size: 18px;
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.form-fallback-note,
.ig-fallback-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.product-grid-empty {
  grid-column: 1 / -1;
  padding: 32px;
  border: 2px solid var(--black);
  background: var(--paper);
}