:root {
  --bg-1: #f9f6ef;
  --bg-2: #f1e9d6;
  --text: #181410;
  --accent: #c0472d;
  --card: rgba(255, 255, 255, 0.68);
  --border: rgba(24, 20, 16, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 15%, #ffdd9e 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, #f0b8a1 0%, transparent 32%),
    linear-gradient(130deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  font-family: "Public Sans", sans-serif;
  padding: 24px;
}

.hero {
  width: min(760px, 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 6vw, 56px);
  background: var(--card);
  backdrop-filter: blur(4px);
  box-shadow:
    0 20px 45px rgba(24, 20, 16, 0.12),
    0 4px 14px rgba(24, 20, 16, 0.08);
  animation: rise 700ms ease-out;
}

.domain {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: rgba(24, 20, 16, 0.7);
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 0.95;
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.subtitle {
  max-width: 42ch;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(24, 20, 16, 0.82);
}

.contact-email {
  margin: 14px 0 0;
  font-family: "Public Sans", sans-serif;
  font-size: 0.92rem;
  color: rgba(24, 20, 16, 0.78);
}

.contact-email a {
  color: var(--accent);
  text-decoration: none;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  text-decoration: underline;
}

.about-im {
  max-width: 65ch;
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(24, 20, 16, 0.84);
}

.next-event {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(24, 20, 16, 0.86);
}

.section-divider {
  margin: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.resource-note {
  max-width: 48ch;
  margin: 20px 0 0;
  font-size: 0.98rem;
  color: rgba(24, 20, 16, 0.85);
}

.download-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease,
    background-color 180ms ease;
}

.download-link:hover,
.download-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .hero {
    border-radius: 18px;
  }

  .domain {
    letter-spacing: 0.16em;
  }

  .download-link {
    width: 100%;
    text-align: center;
  }
}
