:root {
  --midnight: #171548;
  --deep-ink: #0e1035;
  --gold: #ffc94a;
  --gold-soft: #ffe49b;
  --blue: #6da8d8;
  --green: #57b36b;
  --rose: #ef5b66;
  --white: #fff8df;
  --muted: #c6c4e2;
  --line: rgba(255, 248, 223, 0.16);
  --shadow: rgba(5, 8, 28, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep-ink);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(14, 16, 53, 0.92);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 201, 74, 0.35);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  padding: 10px 0;
}

nav a:hover,
nav a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100svh - 112px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 84px);
  overflow: hidden;
  background-color: var(--midnight);
}

.hero-copy,
.hero-logo {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 10vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 18px 38px var(--shadow);
}

.button.primary {
  background: var(--gold);
  color: #1d1741;
}

.button.secondary {
  border-color: rgba(255, 201, 74, 0.5);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.hero-logo {
  justify-self: center;
  width: min(100%, 540px);
}

.hero-logo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(255, 201, 74, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 84px);
}

.about-section {
  background: #11133d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-section {
  background: #18154a;
}

.socials-section {
  background: #101237;
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.member-card,
.social-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(4, 6, 28, 0.2);
}

.member-card {
  min-height: 300px;
  padding: 22px;
}

.member-spark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(255, 201, 74, 0.12);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.member-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.member-meta {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-weight: 800;
}

.member-detail {
  font-size: 0.95rem;
  line-height: 1.65;
}

.social-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-list a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.social-list a::after {
  content: "->";
  color: var(--gold);
  font-size: 1.1rem;
}

.social-list a:hover,
.social-list a:focus-visible {
  border-color: rgba(255, 201, 74, 0.52);
  background: rgba(255, 201, 74, 0.08);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 84px);
  color: var(--muted);
  background: #090b28;
}

footer p {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    justify-self: stretch;
  }

  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand-mark span {
    font-size: 0.98rem;
  }

  nav {
    gap: 8px;
    font-size: 0.82rem;
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .member-grid,
  .social-list {
    grid-template-columns: 1fr;
  }
}
