:root {
  --bg-deep: #15241d;
  --bg-card: #1d3327;
  --bg-card-2: #213a2c;
  --ivory: #f3eee0;
  --ivory-dim: #cfc9b8;
  --sage: #9fbd9c;
  --sage-dim: #5f7d62;
  --gold: #cda44b;
  --gold-soft: #e3c581;
  --line: rgba(243, 238, 224, 0.1);
  --radius: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% -10%, #234433 0%, var(--bg-deep) 55%, #0f1c15 100%);
  color: var(--ivory);
  font-family: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 56px 18px 64px;
}

@media (prefers-reduced-motion: no-preference) {
  .card {
    animation: rise 0.6s ease-out both;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.page {
  width: 100%;
  max-width: 440px;
}

.sprig {
  display: block;
  margin: 0 auto 18px;
  width: 46px;
  height: 64px;
  color: var(--sage);
}

.card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px 32px;
  text-align: center;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 10px;
}

h1 {
  font-size: 28px;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  font-weight: 600;
}

.tagline {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ivory-dim);
  margin: 0 0 28px;
  padding: 0 6px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 16px;
}

.divider span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dim);
  white-space: nowrap;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  background: rgba(243, 238, 224, 0.04);
  border: 1px solid var(--line);
  color: var(--ivory);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  background: rgba(243, 238, 224, 0.09);
  border-color: rgba(243, 238, 224, 0.22);
  transform: translateY(-1px);
}

.link-btn:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.link-btn .ico {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--sage);
}

.link-btn .label {
  flex: 1;
  text-align: left;
}

.link-btn .arrow {
  color: var(--sage-dim);
  font-size: 16px;
}

.cta {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: none;
  color: #20300f;
  font-weight: 600;
}

.cta .ico,
.cta .arrow {
  color: #3c3015;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.cta-secondary {
  background: rgba(205, 164, 75, 0.08);
  border: 1px solid rgba(205, 164, 75, 0.35);
  color: var(--gold-soft);
}

.cta-secondary .ico {
  color: var(--gold-soft);
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--sage-dim);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  aspect-ratio: 1 / 1;
  padding: 14px 8px;
  border-radius: 18px;
  background: rgba(243, 238, 224, 0.04);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ivory);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tile:hover,
.tile:focus-visible {
  background: rgba(243, 238, 224, 0.09);
  border-color: rgba(243, 238, 224, 0.22);
  transform: translateY(-2px);
}

.tile:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.tile img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 9px;
}

.tile span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
