:root {
  --leaf: #176534;
  --leaf-dark: #0f3f26;
  --sprout: #8abf2e;
  --earth: #76502b;
  --soil: #3b2a1c;
  --cream: #fbf8ef;
  --paper: #fffdf7;
  --text: #1f2a22;
  --muted: #667164;
  --ring: rgba(23, 101, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(138, 191, 46, 0.18), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(118, 80, 43, 0.13), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 54%, #eef5e4 100%);
}

body::before,
body::after {
  position: fixed;
  content: "";
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 6vh auto auto -12rem;
  width: 34rem;
  height: 34rem;
  border: 1.25rem solid var(--ring);
  border-radius: 50%;
}

body::after {
  right: -8rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border: 0.9rem solid rgba(118, 80, 43, 0.1);
  border-radius: 50%;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.brand-panel {
  display: grid;
  width: min(100%, 1040px);
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-wrap::before {
  position: absolute;
  inset: 10% 4% 0;
  content: "";
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 101, 52, 0.1);
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(59, 42, 28, 0.16);
}

.logo-wrap img {
  position: relative;
  width: min(100%, 440px);
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 28px rgba(59, 42, 28, 0.16));
}

.message {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--earth);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 4vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.supporting-copy {
  max-width: 32rem;
  margin: 1.5rem 0 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(23, 101, 52, 0.2);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 28px rgba(59, 42, 28, 0.08);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  border-color: rgba(23, 101, 52, 0.42);
  box-shadow: 0 16px 34px rgba(59, 42, 28, 0.12);
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .page-shell {
    place-items: start center;
    padding: 1.3rem;
  }

  .brand-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5vh 0 2rem;
    text-align: center;
  }

  .logo-wrap img {
    width: min(86vw, 360px);
  }

  .message {
    margin: 0 auto;
  }

  .supporting-copy {
    margin-right: auto;
    margin-left: auto;
  }
}
