:root {
  --green-deep: #096d5c;
  --green-medium: #64a679;
  --green-soft: #79bd8f;
  --green-mint: #beeb9f;
  --green-bg: #bee9bf;
  --ink: #081614;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(190, 235, 159, 0.72), transparent 38%),
    radial-gradient(circle at 85% 75%, rgba(100, 166, 121, 0.32), transparent 44%),
    linear-gradient(145deg, #d8f2d5 0%, var(--green-bg) 45%, #a5d8b4 100%);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.page {
  width: min(100%, 980px);
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(9, 109, 92, 0.2);
  border-radius: 22px;
  padding: clamp(1.5rem, 3.2vw, 3rem);
  box-shadow: 0 26px 55px rgba(8, 22, 20, 0.15);
  text-align: center;
  animation: fade-up 650ms ease-out both;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.card::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(121, 189, 143, 0.27), rgba(121, 189, 143, 0));
  top: -130px;
  left: -90px;
}

.card::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(100, 166, 121, 0.24), rgba(100, 166, 121, 0));
  right: -180px;
  bottom: -180px;
}

.logo {
  width: clamp(76px, 10vw, 106px);
  height: auto;
  margin: 0 auto 0.9rem;
  display: block;
}

.eyebrow {
  margin: 0;
  color: var(--green-medium);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  margin: 0.45rem 0 0.85rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.04;
  color: var(--green-deep);
}

.lead {
  margin: 0 auto;
  max-width: 60ch;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
}

.notice {
  margin: 1.5rem auto 1rem;
  max-width: 62ch;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(9, 109, 92, 0.25);
  border-left: 5px solid var(--green-deep);
  background: linear-gradient(90deg, rgba(190, 235, 159, 0.38), rgba(255, 255, 255, 0.95));
  border-radius: 12px;
}

.notice p {
  margin: 0;
  font-weight: 600;
}

.contact-actions {
  margin-top: 1.25rem;
}

.contact-btn,
.mail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.82rem 1.4rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-btn {
  border: 0;
  cursor: pointer;
  background: linear-gradient(120deg, var(--green-deep), var(--green-medium));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(9, 109, 92, 0.25);
}

.contact-btn:hover,
.contact-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(9, 109, 92, 0.35);
}

.mail-link {
  background: rgba(9, 109, 92, 0.08);
  color: var(--green-deep);
  border: 1px solid rgba(9, 109, 92, 0.25);
}

.hint {
  margin: 0.8rem auto 0;
  max-width: 56ch;
  color: #27403b;
  font-size: 0.98rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (max-width: 640px) {
  body {
    padding: 1.25rem 0.75rem;
  }

  .card {
    border-radius: 16px;
    padding: 1.25rem 1rem 1.4rem;
  }

  .notice {
    text-align: left;
  }
}
