:root {
  --bg: #111111;
  --panel: #171717;
  --text: #f7f3ea;
  --muted: #d8d0c3;
  --gold: #d7ae61;
  --gold-deep: #b88a36;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(215, 174, 97, 0.18), transparent 34rem),
    linear-gradient(180deg, #16120d 0%, var(--bg) 36%, #090909 100%);
}

.page {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 44px 18px 64px;
}

.hero {
  text-align: center;
  padding: 22px 10px 34px;
}

.avatar {
  width: 126px;
  height: 126px;
  display: block;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(215, 174, 97, 0.75);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 8vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

p {
  width: min(780px, 100%);
  margin: 9px auto;
  font-size: clamp(1rem, 3.6vw, 1.28rem);
  line-height: 1.75;
  color: var(--muted);
}

.lead,
.shipping,
.dream {
  color: var(--text);
}

.dream {
  margin-top: 18px;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(86vw, 360px);
  margin-top: 20px;
  padding: 16px 28px;
  border-radius: 999px;
  color: #1a1308;
  background: linear-gradient(180deg, #f1cf86, var(--gold) 55%, var(--gold-deep));
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0 0;
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

@media (max-width: 820px) {
  .page {
    padding-top: 30px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .avatar {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 420px) {
  .page {
    padding-inline: 12px;
  }

  .gallery {
    gap: 10px;
  }

  .gallery img {
    border-radius: 12px;
  }
}
