:root {
  --forest: #243316;
  --forest-deep: #15200e;
  --moss: #5a861f;
  --moss-light: #91b956;
  --cream: #f4f0df;
  --paper: #fffdf5;
  --soil: #2a2018;
  --muted: #6c7464;
  --line: rgba(36, 51, 22, 0.14);
  --shadow: 0 24px 70px rgba(23, 33, 14, 0.16);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--forest-deep);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(145, 185, 86, 0.2), transparent 27rem),
    radial-gradient(circle at 88% 90%, rgba(90, 134, 31, 0.15), transparent 31rem),
    linear-gradient(145deg, #f8f5e8 0%, #efead7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.page-shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 28px;
}

.hero {
  position: relative;
  align-self: center;
  overflow: hidden;
  padding: clamp(36px, 7vw, 78px);
  text-align: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: rgba(255, 253, 245, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(90, 134, 31, 0.16);
}

.hero::before {
  width: 330px;
  height: 330px;
  top: -210px;
  right: -115px;
}

.hero::after {
  width: 210px;
  height: 210px;
  bottom: -145px;
  left: -80px;
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--moss);
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(155px, 22vw, 235px);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(35, 46, 24, 0.18);
}

.copy {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 10px;
  color: var(--moss);
  font-weight: 700;
  letter-spacing: .04em;
}

h1 {
  margin: 0;
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro {
  margin: 25px auto 0;
  color: #596052;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.primary-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 27px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 12px 25px rgba(36, 51, 22, 0.2);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--moss);
  box-shadow: 0 16px 30px rgba(36, 51, 22, 0.23);
}

.primary-button:focus-visible {
  outline: 3px solid var(--moss-light);
  outline-offset: 4px;
}

.thank-you {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .91rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #697060;
  font-size: 0.8rem;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--moss);
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding: 10px 0 18px;
    gap: 18px;
  }

  .hero {
    min-height: calc(100vh - 72px);
    padding: 34px 22px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .eyebrow { margin-bottom: 20px; }
  .brand-mark { margin-bottom: 23px; }
  .intro { line-height: 1.62; }

  .primary-button {
    width: 100%;
    margin-top: 28px;
  }

  footer {
    gap: 8px;
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .primary-button { transition: none; }
}
