:root {
  --green: #103727;
  --ink: #18221d;
  --muted: #617168;
  --cream: #f5f7f6;
  --yellow: #f4c431;
}

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

html,
body {
  min-height: 100%;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

header {
  background: var(--green);
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  height: 32px;
  width: auto;
  display: block;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.75rem 1.5rem 3.5rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  background: var(--yellow);
  margin: 0.85rem auto 1.35rem;
}

address {
  font-style: normal;
}

h1 {
  font-size: clamp(1.7rem, 6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

address p {
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  line-height: 1.45;
}
