*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3eb;
  --text: #3a352e;
  --muted: #8a8074;
  --border: rgba(205, 188, 160, 0.42);
  --card: #fffcf7;
  --accent: #8a6f4a;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Zen Kaku Gothic New", "Segoe UI", system-ui, sans-serif;
}

.page {
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-family: Fraunces, "Noto Serif SC", serif;
  font-weight: 650;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.03em;
}

.lede {
  margin: 1rem 0 2.4rem;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.05rem;
}

.product {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.25rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(80, 60, 30, 0.06);
}

.product:hover {
  border-color: rgba(138, 111, 74, 0.55);
}

.product__glyph {
  flex: 0 0 auto;
  width: 4.5rem;
  display: grid;
  place-items: center;
  font-family: "Noto Serif SC", serif;
  font-weight: 300;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--accent);
}

.product__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.2rem 0;
}

.product__name {
  font-family: Fraunces, serif;
  font-size: 1.35rem;
  font-weight: 650;
}

.product__desc {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.98rem;
}

.product__go {
  margin-top: 0.45rem;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.soon {
  margin-top: 2.75rem;
}

.soon h2 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.soon ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.soon li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.45;
}

.soon li:last-child {
  border-bottom: 1px solid var(--border);
}

.soon strong {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 560px) {
  .page {
    padding-top: 3rem;
  }

  .product {
    flex-direction: column;
    gap: 0.4rem;
  }

  .product__glyph {
    width: auto;
    justify-content: flex-start;
    font-size: 2.4rem;
  }
}
