﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --black: #050505;
  --night: #0d0d0f;
  --charcoal: #17171c;
  --graphite: #212129;
  --gray: #8d8f99;
  --muted: #b9bcc6;
  --light: #f7f7f5;
  --soft: #dcdcdc;
  --gold: #d7b256;
  --gold-dark: #a98532;
  --card: #111115;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1200px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--light);
  line-height: 1.6;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--light);
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

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

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

.brand-mark img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--night);
  object-fit: cover;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.1rem;
}

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

.site-nav a {
  font-weight: 500;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5,5,5,0.85), rgba(5,5,5,0.4));
  z-index: 1;
}

.hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(80%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-hero {
  padding: 100px 0 50px;
  background: radial-gradient(circle at top, rgba(215, 178, 86, 0.15), transparent 55%), var(--night);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
}

.hero-card {
  background: rgba(8, 8, 8, 0.8);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 640px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 12px 0;
  line-height: 1.1;
}

.hero p {
  margin-bottom: 24px;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--light);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-lede {
  color: var(--muted);
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  height: 100%;
}

.card.accent {
  border-color: rgba(215, 178, 86, 0.5);
  background: linear-gradient(135deg, rgba(215, 178, 86, 0.12), rgba(5,5,5,0.9));
}

.card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.card p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(215, 178, 86, 0.15);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  border-left: 2px solid var(--border);
  margin-top: 32px;
}

.timeline-item {
  padding-left: 24px;
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 178, 86, 0.15);
}

.timeline-item h4 {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.stat {
  background: var(--graphite);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.logo-wall img {
  height: 56px;
  filter: grayscale(1);
  opacity: 0.8;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.media-card iframe,
.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 0;
}

.media-card figcaption,
.media-card .media-caption {
  padding: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--night);
  color: var(--muted);
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.list-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  margin: 16px 0 0;
}

.list-inline li {
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 999px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 14px;
  text-align: left;
}

.table th {
  background: rgba(255,255,255,0.05);
  font-weight: 600;
}

.highlight-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.highlight-list li {
  list-style: none;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  margin: 0 auto 8px;
}

.team-card h3 {
  margin: 8px 0 4px;
}

.team-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.team-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.team-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.team-pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(215, 178, 86, 0.08);
}

.team-pillar h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-header .inner {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    flex-direction: column;
    width: 100%;
    display: none;
    padding-bottom: 16px;
  }
  .site-nav.open {
    display: flex;
  }
  .hero img {
    height: 420px;
  }
  .cta-group {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding: 22px;
  }
  .section {
    padding: 60px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
