:root {
  --bg: #131f14;
  --bg-deep: #0b130c;
  --text: #f4ecd6;
  --muted: rgba(244, 236, 214, 0.72);
  --leaf: #738f34;
  --moss: #3b572a;
  --sand: #efd8b0;
  --shadow: rgba(7, 12, 8, 0.28);
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(115, 143, 52, 0.26), transparent 34rem),
    radial-gradient(circle at 82% 22%, rgba(239, 216, 176, 0.18), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(59, 87, 42, 0.24), transparent 28rem),
    linear-gradient(160deg, #1b2a1a 0%, var(--bg) 52%, var(--bg-deep) 100%);
}

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

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
}

.glow-a {
  top: 5rem;
  left: -3rem;
  width: 20rem;
  height: 20rem;
  background: rgba(115, 143, 52, 0.24);
}

.glow-b {
  right: -3rem;
  bottom: 3rem;
  width: 16rem;
  height: 16rem;
  background: rgba(239, 216, 176, 0.12);
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: min(100%, 68rem);
  padding: 0;
}

.hero-image {
  margin: 0;
  justify-self: center;
}

.hero-image img {
  display: block;
  width: min(100%, 31rem);
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 1.8rem 3rem rgba(0, 0, 0, 0.22));
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 7%,
    #000 16%,
    #000 84%,
    rgba(0, 0, 0, 0.4) 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 7%,
    #000 16%,
    #000 84%,
    rgba(0, 0, 0, 0.4) 93%,
    transparent 100%
  );
}

.hero-copy {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.eyebrow {
  margin: 0;
  color: var(--sand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.summary {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.4rem;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 223, 0.16);
  color: var(--text);
  text-decoration: none;
  background: rgba(245, 239, 223, 0.04);
  backdrop-filter: blur(10px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(115, 143, 52, 0.55);
  background: rgba(115, 143, 52, 0.14);
  outline: none;
}

@media (max-width: 860px) {
  .page-shell {
    padding: 1rem;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0.25rem 0.3rem 0.45rem;
  }

  h1 {
    max-width: none;
  }
}
