:root {
  --sage: #5f6f58;
  --sage-dark: #495744;
  --mauve: #925a72;
  --cream: #f7f1ea;
  --paper: #fffaf3;
  --sand: #e7d8c6;
  --ink: #2d2d2d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(231,216,198,.85), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(146,90,114,.18), transparent 30%),
    linear-gradient(135deg, var(--cream), #fff);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  width: min(100%, 760px);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(28px, 6vw, 56px);
  background: rgba(255, 250, 243, .92);
  border: 1px solid rgba(95,111,88,.24);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(73, 87, 68, .18);
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(231,216,198,.45);
  z-index: 0;
}

.card::before { left: -80px; top: -80px; }
.card::after { right: -90px; bottom: -90px; }
.card > * { position: relative; z-index: 1; }

.logo {
  width: min(260px, 70vw);
  height: auto;
  margin: 0 auto 12px;
  display: block;
  mix-blend-mode: multiply;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  letter-spacing: .04em;
  color: var(--sage-dark);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: .95;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--sage);
  text-transform: uppercase;
}

.intro {
  max-width: 520px;
  margin: 22px auto 0;
  font-size: clamp(1.08rem, 3vw, 1.35rem);
  line-height: 1.6;
}

.notice {
  max-width: 520px;
  margin: 28px auto 0;
  padding: 18px 20px;
  background: rgba(231,216,198,.45);
  border-radius: 22px;
  line-height: 1.5;
}

.notice p { margin: 4px 0; }

.button {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  text-decoration: none;
  font-size: 1.18rem;
  letter-spacing: .08em;
  box-shadow: 0 10px 24px rgba(95,111,88,.22);
}

.socials {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 18px 32px;
  flex-wrap: wrap;
  color: var(--mauve);
}

.socials p { margin: 0; }

.tagline {
  margin: 34px 0 0;
  color: var(--mauve);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.35;
}

@media (max-width: 520px) {
  .card { border-radius: 24px; }
  .socials { display: block; }
  .socials p + p { margin-top: 8px; }
}
