:root {
  color-scheme: light dark;
  font-family:
    ui-serif,
    Iowan Old Style,
    Georgia,
    serif;
  background: #f2f0eb;
  color: #171714;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  width: min(100% - 40px, 680px);
  margin: 0 auto;
  padding: 88px 0 120px;
}

img {
  display: block;
  margin-bottom: 32px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(48px, 10vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h2 {
  margin: 48px 0 12px;
  font-size: 22px;
  font-weight: 600;
}

p {
  color: #57564f;
  font-size: 18px;
  line-height: 1.65;
}

.lede {
  color: #171714;
  font-size: 26px;
  line-height: 1.35;
}

nav {
  display: flex;
  gap: 24px;
  margin-top: 44px;
}

section {
  margin-top: 48px;
  padding-block: 28px;
  border-block: 1px solid color-mix(in srgb, currentColor 20%, transparent);
}

section h2 {
  margin-top: 0;
}

.price strong {
  color: #171714;
  font-size: 28px;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.back {
  display: inline-block;
  margin-bottom: 64px;
}

.fine {
  margin-top: 56px;
  font-size: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #11110f;
    color: #f2f0eb;
  }

  p {
    color: #aaa79f;
  }

  .lede {
    color: #f2f0eb;
  }

  .price strong {
    color: #f2f0eb;
  }
}
