:root {
  --green: #1e5c3a;
  --green-dark: #143f27;
  --ink: #1f2421;
  --muted: #5c6660;
  --bg: #f7f6f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero {
  max-width: 36rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: normal;
  color: var(--green-dark);
  line-height: 1.1;
}

.office {
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  font-style: italic;
  color: var(--green);
  margin-top: 0.5rem;
}

.rule {
  border: none;
  border-top: 2px solid var(--green);
  width: 4rem;
  margin: 2rem auto;
}

.coming-soon {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

footer {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
}
