:root {
  --color-black: #000000;
  --color-ink: #1a1a1a;
  --color-soft-ink: #333333;
  --color-white: #ffffff;
  --color-cream: #f5f4f1;
  --color-mist: #f2f2f2;
  --color-line: #d9d9d9;
  --color-muted: #727272;
  --color-red-deep: #6f0e0e;
  --color-red: #b72e35;
  --color-red-bright: #c41423;
  --color-gold: #b88b23;
  --font-display: "Times New Roman", Times, Georgia, serif;
  --font-body: Avenir, Poppins, Inter, Arial, sans-serif;
  --shadow-md: rgba(54, 54, 54, 0.2) 2px 0 10px 0, rgba(54, 54, 54, 0.2) -2px 0 10px 0;
  --shadow-lg: rgba(0, 0, 0, 0.15) 0 0 30px 0;
  --shadow-xl: rgba(0, 0, 0, 0.16) 0 5px 40px 0;
  --radius-sm: 3px;
  --radius-md: 10px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --site-gutter: 50px;
  --section-max: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(var(--section-max), calc(100vw - (var(--site-gutter) * 2)));
  margin: 0 auto;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.body-tight {
  line-height: 1.35;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-size: 16px;
}

.stars {
  letter-spacing: 2px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-black);
  border-radius: 6px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--light {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-black);
}

.button--outline {
  background: transparent;
  color: currentColor;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
}

.icon-button svg,
.small-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  :root {
    --site-gutter: 22px;
  }
}

@media (max-width: 560px) {
  :root {
    --site-gutter: 16px;
  }

  body {
    font-size: 15px;
  }
}
