@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Spectral:wght@300;400;500&display=swap");

:root {
  --bg: #101214;
  --ink: #e5e9f0;
  --muted: #9aa3b2;
  --accent-bright: #5c7bb0;
  --panel: #161a20;
  --border: #262b36;
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #1a2028 0%, var(--bg) 50%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(63, 92, 136, 0.18), transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(63, 92, 136, 0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(92, 123, 176, 0.18), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 8vw 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  width: 44px;
  height: 44px;
}

.wordmark {
  font-family: "Spectral", serif;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 80px 8vw 40px;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.section {
  padding: 64px 8vw 0;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 560px;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 920px;
  color: var(--muted);
  font-size: 16px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--accent-bright);
  border-radius: 999px;
}

.service-list strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-card {
  margin-top: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.headshot {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-bright);
  box-shadow: 0 18px 36px rgba(6, 10, 20, 0.45);
}

.contact-name {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card a {
  color: var(--accent-bright);
  text-decoration: none;
}

.site-footer {
  padding: 48px 8vw 32px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    padding-top: 56px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
