:root {
  --oak-green-900: #1F3A36;
  --oak-green-700: #2F5248;
  --oak-green-500: #547A6E;
  --oak-green-200: #C7D6CE;
  --oak-green-100: #E6EDE7;

  --oak-lime: #D9F28C;

  --oak-cream: #FAF6EF;
  --oak-cream-2: #F1EBE0;
  --oak-taupe: #B8AFA2;

  --oak-ink: #1A1A1A;
  --oak-muted: #6B6B6B;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  color: var(--oak-green-900);
  background: var(--oak-cream);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.accent-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--oak-green-200);
  filter: blur(140px);
  opacity: 0.5;
  bottom: -180px;
  right: -180px;
  z-index: 0;
  pointer-events: none;
}

.site-header {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.logo {
  height: 32px;
  width: auto;
  display: block;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--oak-green-900);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144;
  opacity: 0;
  animation: rise-in 400ms ease-out 80ms forwards;
}

.headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--oak-green-700);
}

.subhead {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--oak-green-700);
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  animation: fade-in 400ms ease-out 220ms forwards;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(31, 58, 54, 0.12);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--oak-green-500);
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-footer a:hover {
  color: var(--oak-green-900);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .site-header {
    padding: 28px 48px;
  }

  .hero {
    padding: 40px 48px;
  }

  .site-footer {
    padding: 22px 48px;
  }

  .logo {
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .headline,
  .subhead {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
