:root {
  color-scheme: light;
  --bg: #f6f2e8;
  --surface: #fffdf7;
  --ink: #29231b;
  --muted: #6d6255;
  --line: #e4d6bd;
  --accent: #ffc83d;
  --accent-ink: #4a3210;
  --green: #3e8f58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(80, 62, 34, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(80, 62, 34, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 200, 61, 0.32), transparent 28%),
    linear-gradient(135deg, #fffef9, #fff6d9);
  box-shadow: 0 18px 60px rgba(85, 60, 26, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 104px;
  height: 80px;
  border: 6px solid #4c3b45;
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(#d9a164 0 68%, #a9683f 68% 100%);
  image-rendering: pixelated;
  box-shadow:
    inset 14px 0 0 rgba(255, 238, 174, 0.26),
    0 12px 0 rgba(76, 59, 69, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  right: 58px;
  bottom: 88px;
  width: 28px;
  height: 28px;
  border: 6px solid #4c3b45;
  border-radius: 50%;
  background: #d9a164;
  box-shadow:
    48px 0 0 -6px #d9a164,
    48px 0 0 0 #4c3b45;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 4px 12px 4px 5px;
  border: 1px solid #ead27d;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

h1 {
  max-width: 620px;
  margin: 22px 0 14px;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 10px;
  max-width: 520px;
  margin: 26px 0 0;
}

.meta div {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.meta dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.content {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

article {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 10px 36px rgba(85, 60, 26, 0.06);
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 20px, 960px);
    padding: 10px 0 28px;
  }

  .hero {
    padding: 24px 20px 118px;
    border-radius: 12px;
  }

  .hero::after {
    right: 22px;
    bottom: 22px;
    width: 82px;
    height: 62px;
  }

  .hero::before {
    right: 42px;
    bottom: 72px;
    width: 22px;
    height: 22px;
    box-shadow:
      38px 0 0 -6px #d9a164,
      38px 0 0 0 #4c3b45;
  }

  .hero p {
    font-size: 15px;
  }

  .meta {
    grid-template-columns: 1fr;
  }

  article {
    padding: 20px;
  }
}
