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

:root {
  --bg: #0b0f14;
  --bg-elevated: #121820;
  --bg-card: #151c26;
  --text: #e8edf4;
  --text-muted: #93a0b4;
  --text-soft: #6d7a90;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.14);
  --accent-border: rgba(201, 162, 39, 0.28);
  --line: rgba(255, 255, 255, 0.08);
  --blue: #6d8fb8;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: #9bb8d9;
}

img {
  display: block;
  max-width: 100%;
}

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

.container.narrow {
  width: min(720px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 200;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
  color: #111;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  background: rgba(11, 15, 20, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  border-radius: 9px;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
}

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

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

.glow-a {
  width: 480px;
  height: 480px;
  background: #1d3a5f;
  top: -120px;
  left: 50%;
  transform: translateX(-70%);
}

.glow-b {
  width: 360px;
  height: 360px;
  background: #5c4710;
  top: 40px;
  right: 8%;
  opacity: 0.28;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #f7f4ea 0%, #d4c07a 45%, #f4f0e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 24, 32, 0.65), rgba(11, 15, 20, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.prose {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose em {
  color: #d7c48a;
  font-style: italic;
}

.note-card {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.note-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.note-body {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* People */
.people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.person-card {
  padding: 28px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  color: #1a1404;
  background: linear-gradient(145deg, #e4c86a, #b8912a);
}

.person-avatar-b {
  color: #061018;
  background: linear-gradient(145deg, #8fb0d8, #4d6f98);
}

.person-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.person-role {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.person-bio {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
  min-height: 3.6em;
}

.person-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  color: #161106;
  background: linear-gradient(135deg, #e4c86a, #c9a227);
  border: 1px solid transparent;
}

.btn:hover {
  color: #161106;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  filter: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 42px;
  background: #090c11;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-copy {
  color: var(--text-soft);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-domains {
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.86rem;
  }

  .hero {
    padding: 84px 0 64px;
  }

  .section {
    padding: 68px 0;
  }

  .people {
    grid-template-columns: 1fr;
  }

  .person-bio {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .container,
  .container.narrow {
    width: calc(100% - 28px);
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .nav a:nth-child(3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  a,
  .btn {
    transition: none;
  }
}
