:root {
  --ink: #17372f;
  --muted: #5d6c67;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --accent: #b57442;
  --line: rgba(23, 55, 47, 0.16);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

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

nav a,
.text-link {
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
address a:hover,
address a:focus-visible { color: var(--accent); }

.hero {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 96px 0 112px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }

h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 7.2vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 700px;
  margin: 38px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.text-link { padding-bottom: 5px; border-bottom: 1px solid currentColor; }

.status,
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

h2 { font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -0.025em; }

.status > p {
  max-width: 500px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact { background: var(--ink); color: var(--white); margin-top: 96px; padding-inline: 56px; }
.contact .eyebrow { color: #d29b70; }

address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  font-style: normal;
}

address a { font-size: clamp(1rem, 2vw, 1.35rem); text-underline-offset: 5px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 48px;
  color: var(--muted);
  font-size: 0.8rem;
}

footer p { margin: 0; }

@media (max-width: 720px) {
  .site-header, main, footer { width: min(calc(100% - 32px), var(--max-width)); }
  .site-header { min-height: 88px; }
  .wordmark > span:last-child { max-width: 150px; }
  nav { gap: 18px; }
  .hero { min-height: auto; padding: 88px 0; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .status, .contact { grid-template-columns: 1fr; gap: 38px; padding: 72px 0; }
  .status > p { margin: 0; }
  .contact { margin-top: 64px; padding-inline: 24px; }
  footer { flex-direction: column; }
}

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