:root {
  --bg: #0b0b0b;
  --panel: #141414;
  --text: #f5f1e8;
  --muted: #b8b1a5;
  --line: #39352f;
  --accent: #e6d9bd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  min-height: 76px;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .95rem;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
}

nav a:hover,
nav a:focus {
  color: var(--text);
}

main {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.hero {
  min-height: 70vh;
  padding: 13vh 0 11vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
}

.eyebrow,
.section-label {
  color: var(--accent);
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
}

h1 {
  margin: 16px 0 24px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: .92;
  font-weight: 400;
  letter-spacing: -.045em;
}

.lede {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.button {
  align-self: flex-start;
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .03em;
}

.button:hover,
.button:focus {
  background: var(--accent);
  color: var(--bg);
}

.panel {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.panel h2 {
  margin: 12px 0 20px;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
}

.panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel p a {
  color: var(--text);
}

footer {
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .85rem;
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0;
  }

  footer {
    flex-direction: column;
  }
}
