:root {
  --bg: #f5efe4;
  --bg-deep: #d7c2a3;
  --text: #1e1a16;
  --muted: #665b50;
  --card: rgba(255, 251, 245, 0.78);
  --border: rgba(91, 73, 49, 0.16);
  --accent: #6f4b2f;
  --accent-strong: #3c2618;
  --shadow: 0 24px 70px rgba(69, 43, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 32%),
    radial-gradient(circle at bottom right, rgba(138, 104, 67, 0.24), transparent 28%),
    linear-gradient(140deg, var(--bg) 0%, #efe6d5 45%, var(--bg-deep) 100%);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 48px 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.5;
}

.hero__glow--one {
  width: 280px;
  height: 280px;
  background: rgba(189, 141, 93, 0.32);
  top: 8%;
  left: -40px;
}

.hero__glow--two {
  width: 320px;
  height: 320px;
  background: rgba(112, 72, 42, 0.16);
  right: -70px;
  bottom: 6%;
}

.card,
.about {
  position: relative;
  z-index: 1;
}

.card {
  width: min(760px, 100%);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.18;
  max-width: 10ch;
}

.summary {
  margin: 20px 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent-strong);
  color: #fff8f2;
}

.button--ghost {
  color: var(--accent-strong);
  border: 1px solid rgba(60, 38, 24, 0.18);
  background: rgba(255, 255, 255, 0.45);
}

.about {
  margin-top: 18px;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about__item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(91, 73, 49, 0.12);
  background: rgba(255, 248, 241, 0.56);
  backdrop-filter: blur(10px);
}

.about__label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.about strong {
  font-size: 1rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 6px 20px 24px;
  text-align: center;
  color: rgba(60, 38, 24, 0.55);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .hero {
    padding: 28px 14px;
  }

  .card {
    padding: 28px 22px;
    border-radius: 24px;
  }

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

  .summary {
    font-size: 1rem;
  }
}
