:root {
  --bg: #f5f1ea;
  --paper: rgba(255, 252, 247, 0.74);
  --text: #161514;
  --muted: #5f584f;
  --line: rgba(22, 21, 20, 0.1);
  --accent: #b86a3b;
  --shadow: 0 24px 80px rgba(72, 45, 24, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 106, 59, 0.18), transparent 28%),
    radial-gradient(circle at right 25%, rgba(118, 138, 122, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.glow-one {
  width: 320px;
  height: 320px;
  top: -40px;
  left: -60px;
  background: rgba(184, 106, 59, 0.14);
}

.glow-two {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: 40px;
  background: rgba(95, 128, 151, 0.12);
}

.card {
  position: relative;
  width: min(720px, 100%);
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  animation: rise 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 10vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.intro {
  max-width: 34rem;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.58);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.link-row a:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 106, 59, 0.32);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.82);
}

.note {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.note span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .card {
    padding: 40px 26px;
    border-radius: 24px;
  }

  h1 {
    font-size: 3.5rem;
  }

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