:root {
  --background: #f7f5f0;
  --surface: #ffffff;
  --text: #25282b;
  --muted: #676d72;
  --accent: #365b73;
  --border: #ddd9d0;

  --content-width: 760px;
  --page-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 18px;
  line-height: 1.7;
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration-thickness: 2px;
}

.container {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.96);
}

.header-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.name {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

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

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

.hero {
  padding: 100px 0 80px;
}

.hero .container,
section:not(.hero) .container {
  max-width: var(--content-width);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  line-height: 1.18;
}

h1 {
  margin: 12px 0 20px;
  font-size: clamp(2.7rem, 7vw, 4.7rem);
}

h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

section:not(.hero) {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.temporary {
  color: var(--muted);
}

footer {
  margin-top: 40px;
  padding: 35px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    gap: 14px;
  }

  .hero {
    padding: 70px 0 55px;
  }

  section:not(.hero) {
    padding: 55px 0;
  }
}
