:root {
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  --line: #d9d9d6;
  --muted: #4b4b4b;
  --pill-bg: #f8f8f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--muted);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  color: #111111;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-links span {
  color: #111111;
}

.section {
  padding: 32px 0;
}

.alt-section {
  background: #f8f8f8;
}

.section-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.4fr 0.9fr;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 12px;
}

h1,
h2 {
  margin: 0 0 12px;
  color: #111111;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 600;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
}

.pill-grid span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid #d8d8d2;
  color: var(--muted);
}

#contact.section {
  background: #f8f8f8;
}

.contact-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px 24px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #111111;
  line-height: 1;
  text-decoration: none;
}

.contact-label {
  display: inline-block;
  line-height: 1;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
}

.contact-icon-frame {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
}

.contact-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
  color: #111111;
}

@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .pill-grid {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 20px;
  }

  .contact-links {
    flex-wrap: wrap;
  }
}
