:root {
  --bg: #faf9f6;
  --ink: #1c1a17;
  --muted: #6f6a61;
  --rule: #e4e0d8;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 2.5rem 2rem 0;
  text-align: center;
}

.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.wordmark span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--muted);
  margin-top: 0.35rem;
}

main {
  flex: 1;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.hero { text-align: center; margin-bottom: 4rem; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1.75rem;
}

.lede {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 auto 3.5rem;
  max-width: 120px;
}

.block { margin-bottom: 3.5rem; }

.block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.block p { margin-bottom: 1rem; }
.block p:last-child { margin-bottom: 0; }

.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.city {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.25rem !important;
}

.detail { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--muted); }

footer {
  text-align: center;
  padding: 0 2rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  .offices { grid-template-columns: 1fr; gap: 1.5rem; }
  main { padding: 3rem 1.5rem 4rem; }
}
