:root {
  --bg: #f7f5f0;
  --text: #1f2421;
  --muted: #626b66;
  --line: #d8d2c6;
  --accent: #2f5d50;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--text);
  text-decoration: none;
  transform: translateY(calc(-100% - 20px));
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
.site-footer {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding-top: 32px;
}

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

main {
  display: flex;
  align-items: center;
  padding: 64px 0;
}

.hero {
  width: 100%;
  padding: clamp(56px, 9vw, 104px) 0 clamp(48px, 8vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 0.98;
  overflow-wrap: break-word;
}

.intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.site-footer {
  padding-bottom: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1100px);
  }

  .site-header {
    padding-top: 24px;
  }

  .logo {
    width: 140px;
  }

  main {
    padding: 40px 0;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .intro {
    margin-top: 24px;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}
