:root {
  --bg-top: #f5f8ef;
  --bg-bottom: #d5e4de;
  --surface: #ffffffcc;
  --text-main: #12261f;
  --text-muted: #2e4a40;
  --accent: #1a7f64;
  --accent-hover: #145f4b;
  --border: #d0dfd8;
  --shadow: 0 18px 45px -26px rgba(18, 38, 31, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: linear-gradient(160deg, var(--bg-top), var(--bg-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.45),
      transparent 40%
    ),
    radial-gradient(circle at 85% 0%, rgba(26, 127, 100, 0.17), transparent 38%);
}

.site-wrapper {
  width: min(92%, 760px);
  margin: 3rem auto 1.25rem;
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.hero h1,
.about h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.3rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.intro,
.about p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.button {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

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

.button:focus-visible {
  outline: 3px solid #0f4d3d66;
  outline-offset: 2px;
}

.about h2 {
  font-size: clamp(1.6rem, 4.8vw, 2.2rem);
}

.tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags li {
  padding: 0.35rem 0.7rem;
  background: #f1f7f4;
  border: 1px solid #d8e8e1;
  border-radius: 999px;
  font-size: 0.88rem;
  color: #2f5448;
}

.footer {
  text-align: center;
  color: #365a4e;
  font-size: 0.9rem;
  padding: 0.6rem 0 2rem;
}

@media (min-width: 720px) {
  .site-wrapper {
    margin-top: 4.5rem;
    gap: 1.2rem;
  }

  .card {
    padding: 2rem 2.25rem;
  }

  .hero {
    padding-right: 4rem;
  }
}
