:root {
  --bg: #f4f1e8;
  --ink: #111;
  --muted: #5d5850;
  --soft-muted: #817a70;
  --line: #d8d1c3;
  --card: #fbf8ef;
  --button-shadow: rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.03), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(0, 0, 0, 0.04) 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(0, 0, 0, 0.04) 39px),
    var(--bg);
  display: grid;
  place-items: center;
  padding: 20px;
}

.wrap {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 28px 40px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrap > * {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(42px, 7vw, 72px);
  margin: 0;
  letter-spacing: -1px;
  line-height: 0.95;
}

p {
  margin: 16px auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.tagline {
  margin: 18px auto 24px;
}

.count {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
}

.buyer-line {
  font-weight: 600;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  margin: 18px auto 0;
  background: var(--ink);
  color: white;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px var(--button-shadow);
  transition: all 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 24px 0 10px;
}

.icon-row {
  width: 100%;
  max-width: 260px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 92px);
  justify-content: center;
  gap: 20px 26px;
}

.icon-btn {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid #d6cec0;
  background: radial-gradient(circle at 30% 30%, #fff, #f3efe6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: all 0.18s ease;
}

.icon-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.icon-btn img {
  width: 150%;
  height: 150%;
  object-fit: contain;
  filter:
    contrast(1.25)
    brightness(0.92)
    drop-shadow(0 4px 7px rgba(0, 0, 0, 0.24));
}

.roll-mark {
  margin: 16px auto 10px;
  display: flex;
  justify-content: center;
}

.roll-mark img {
  width: 280px;
  height: auto;
  filter:
    contrast(1.2)
    brightness(0.95)
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

dialog {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 24px;
  max-width: 520px;
  width: calc(100% - 32px);
  background: var(--card);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
}

dialog h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin: 0 0 8px;
}

dialog p {
  font-size: 15px;
}

.footer {
  margin-top: 32px;
  font-size: 16px;
  color: var(--soft-muted);
  line-height: 1.45;
}

.small {
  font-size: 16px;
  color: var(--soft-muted);
  margin-top: 18px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .icon-row {
    max-width: 460px;
    grid-template-columns: repeat(4, 92px);
    gap: 24px;
  }
}