:root {
  color-scheme: light;
  --paper: #f2efe8;
  --ink: #18221d;
  --muted: #59635d;
  --line: #c7ccc4;
  --accent: #d95235;
  --accent-dark: #a93420;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgb(24 34 29 / 9%) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 680px;
  align-content: center;
  padding: 80px 0 110px;
}

.eyebrow,
.section-number {
  margin: 0 0 28px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 930px;
  margin-bottom: 34px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.91;
}

.intro {
  max-width: 690px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-action {
  padding: 15px 21px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--accent-dark);
}

.text-action {
  font-weight: 700;
}

.focus {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.5fr);
  gap: clamp(50px, 9vw, 130px);
  padding: 105px 0 120px;
  border-top: 1px solid var(--line);
}

h2 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
}

.focus-grid {
  display: grid;
}

.focus-grid article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.focus-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

h3 {
  font-size: 0.87rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 32px, 1180px);
  }

  nav {
    min-height: 76px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.72rem;
  }

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

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .actions,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus {
    grid-template-columns: 1fr;
    padding: 82px 0;
  }

  .focus-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
