:root {
  --color-ink: #1b0409;
  --color-green: #3b4730;
  --color-blue: #213d5c;
  --color-paper: #f5f2ed;
  --color-sage: #b0b594;
  --color-sage-soft: #e4e6d8;
  --color-white: #fffaf3;
  --color-muted: #6d765b;
  --shadow-soft: 0 18px 44px rgba(27, 4, 9, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-green);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(176, 181, 148, 0.42), transparent 34rem),
    linear-gradient(180deg, var(--color-paper) 0%, #eee9dd 100%);
  color: var(--color-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: 100%;
  max-width: 30rem;
  min-height: 100vh;
  margin: 0 auto;
  padding: 1.4rem 1.35rem 1.6rem;
}

.hero {
  display: flex;
  min-height: 42vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0 1rem;
  text-align: center;
}

.brand-logo {
  width: clamp(7.5rem, 42vw, 11rem);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0.8rem 1.8rem rgba(59, 71, 48, 0.12));
}

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

.intro {
  max-width: 19.5rem;
  margin: 0.95rem 0 0;
  color: #37422f;
  font-size: 1rem;
  line-height: 1.55;
}

.link-list {
  display: grid;
  width: 100%;
  max-width: 21.5rem;
  gap: 0.72rem;
  margin: 0.5rem auto 1rem;
}

.primary-link,
.link-button {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  min-height: 4.6rem;
  border: 1px solid rgba(59, 71, 48, 0.13);
  border-radius: 0.5rem;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.primary-link {
  padding: 0.85rem 1rem;
  background: var(--color-green);
  box-shadow: var(--shadow-soft);
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 850;
}

.link-button {
  padding: 0.85rem 1rem;
  background: rgba(255, 250, 243, 0.78);
  color: var(--color-green);
  font-size: 1rem;
  font-weight: 820;
}

.button-icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(59, 71, 48, 0.1);
  font-size: 1.18rem;
  line-height: 1;
}

.primary-link .button-icon {
  background: rgba(255, 250, 243, 0.14);
}

.button-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.button-copy strong {
  font-size: 1em;
  line-height: 1.25;
}

.button-copy span {
  display: block;
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.35;
  opacity: 0.78;
}

.primary-link:active,
.link-button:active {
  transform: scale(0.985);
}

@media (hover: hover) {
  .primary-link:hover,
  .link-button:hover {
    border-color: rgba(59, 71, 48, 0.34);
    transform: translateY(-1px);
  }

  .link-button:hover {
    background: var(--color-white);
  }
}

.footer {
  display: grid;
  gap: 0.18rem;
  padding: 1rem 0 0.2rem;
  color: var(--color-green);
  text-align: center;
}

.footer span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer small {
  color: var(--color-muted);
  font-size: 0.76rem;
}

@media (min-width: 48rem) {
  .page-shell {
    max-width: 58rem;
    padding: 3rem 2rem 2.2rem;
  }

  .hero {
    min-height: auto;
    padding: 1.5rem 0 2rem;
  }

  .brand-logo {
    width: 12rem;
  }

  .intro {
    max-width: 26rem;
    font-size: 1.06rem;
  }

  .link-list {
    max-width: 36rem;
    gap: 0.85rem;
  }

  .primary-link,
  .link-button {
    min-height: 5rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
