:root {
  --text: #111;
  --muted: #666;
  --border: #e6e6e6;
  --pill: #f1f1f1;
  --primary: #007bff;
  --primary-hover: #007bff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: inherit;
}
a:hover {
  color: var(--primary-hover);
}

:focus-visible {
  outline: 3px solid rgba(0, 123, 255, 0.55);
  outline-offset: 3px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
.logo {
  font-weight: 700;
}
.nav a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  align-items: center;
}
.nav a:hover {
  color: var(--primary-hover);
}
.nav a.active {
  color: var(--primary);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0 22px;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
}

.btn.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  filter: brightness(0.95);
}

.page-header {
  text-align: center;
  padding: 48px 0 0 0;
}
.location {
  color: var(--muted);
}

.section {
  padding: 50px 0;
  text-align: center;
}
.section h1 {
  margin: 0 0 30px 0;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.pill-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.common {
  max-width: 800px;
  margin: 0 auto 40px;
}
.pill-grid li {
  background: var(--pill);
  padding: 12px 18px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.pill-grid li span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.contact address {
  font-style: normal;
  line-height: 1.7;
}

.footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .logo img {
    width: 200px;
    height: auto;
  }
  .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  nav .btn {
    display: none;
  }

  nav a {
    text-align: right;
    font-size: 14px;
    line-height: 1.5em;
  }
}
