:root {
  color-scheme: light;
  --ink: #382311;
  --muted: #7a5130;
  --paper: #fff2cf;
  --paper-deep: #f3c875;
  --button: #4f9a67;
  --button-dark: #2d6541;
  --button-light: #9fe2a4;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 230, 144, 0.58), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(147, 209, 119, 0.25), transparent 28rem),
    linear-gradient(135deg, #fff8df 0%, #f7d991 52%, #f0b85f 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(90, 55, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 55, 20, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.landing {
  display: grid;
  min-height: 100vh;
  padding: clamp(0.85rem, 2.4vw, 2rem);
  place-items: center;
}

.hero {
  display: grid;
  width: min(100%, 1100px);
  place-items: center;
  text-align: center;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.splash {
  display: block;
  width: auto;
  max-width: min(100%, 920px);
  max-height: min(68vh, 620px);
  height: auto;
  filter: drop-shadow(0 1.2rem 1.8rem rgba(91, 48, 12, 0.22));
}

.cta-panel {
  width: min(100%, 620px);
  margin-top: clamp(-0.75rem, -1.3vw, -0.15rem);
  padding: 0.95rem clamp(1rem, 3vw, 1.6rem) 1.1rem;
  border: 2px solid rgba(94, 54, 19, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 224, 0.82);
  box-shadow: 0 1rem 2.5rem rgba(91, 48, 12, 0.14);
  backdrop-filter: blur(8px);
}

.cta-panel p {
  max-width: 42rem;
  margin: 0 auto 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.5;
}

.follow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--button-dark);
  border-radius: 8px;
  color: #fffdf2;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(180deg, var(--button-light), var(--button) 42%, var(--button-dark));
  box-shadow: 0 0.45rem 0 #214b31, 0 0.9rem 1.4rem rgba(38, 72, 41, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.follow-link:hover,
.follow-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0.55rem 0 #214b31, 0 1.1rem 1.6rem rgba(38, 72, 41, 0.22);
}

.follow-link:focus-visible {
  outline: 3px solid rgba(72, 129, 205, 0.6);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .landing {
    align-items: start;
    padding-top: 1rem;
  }

  .splash {
    width: min(108%, 920px);
    max-height: none;
    max-width: none;
  }

  .cta-panel {
    margin-top: -0.25rem;
  }
}
