:root {
  --bg: #000000;
  --primary: #ff8000;
  --emphasis: #4a6c8a;
  --text: #dddddd;
  --muted: #8a8a8a;
  --rule: rgba(221, 221, 221, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

h1, h2, h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--emphasis);
  letter-spacing: 0.12em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

a:hover,
a:focus {
  border-bottom-color: var(--primary);
}

/* Hero / logo */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4rem;
}

.logo {
  display: inline-flex;
  align-items: stretch;
  gap: 0.6rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 1.75rem;
}

.bracket {
  color: var(--primary);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 1;
}

.wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(2.25rem, 7.5vw, 4.75rem);
  letter-spacing: 0.01em;
  padding: 0.4rem 0;
}

.word-top {
  color: var(--text);
}

.word-bottom {
  color: var(--primary);
}

.dot {
  color: var(--primary);
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* Sections */
section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
}

section:last-of-type {
  border-bottom: none;
}

.about p {
  font-size: 1.075rem;
  max-width: 42rem;
}

/* Services */
.services ul {
  list-style: none;
  display: grid;
  gap: 1.75rem;
}

.services li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--primary);
  background: rgba(255, 128, 0, 0.02);
}

.services .marker {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.services h3 {
  color: var(--text);
}

.services p {
  color: var(--muted);
  font-size: 0.975rem;
}

/* Referral callout */
.referral {
  margin: 3rem 0;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--emphasis);
  border-left: 3px solid var(--emphasis);
  background: rgba(74, 108, 138, 0.06);
}

.referral p {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
}

.referral a {
  color: var(--emphasis);
  font-weight: 600;
}

.referral a:hover,
.referral a:focus {
  border-bottom-color: var(--emphasis);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-grid h3 {
  color: var(--emphasis);
  margin-bottom: 0.5rem;
}

.contact-grid p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 3rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
}

footer .consortium {
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 600px) {
  main {
    padding: 2rem 1.25rem;
  }

  .hero {
    padding: 2rem 0 3rem;
    margin-bottom: 2.5rem;
  }

  .services li {
    grid-template-columns: 2.5rem 1fr;
    padding: 1.25rem;
    gap: 1rem;
  }

  .services .marker {
    font-size: 1.2rem;
  }
}
