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

body {
  background: #0f1116;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

a {
  color: #f2c94c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  background: #11141b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.main-nav a {
  color: #d6d6d6;
  font-size: 15px;
}

.main-nav a:hover {
  color: #f2c94c;
  text-decoration: none;
}

.hero {
  padding: 80px 0 60px;
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.07), rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #11141b 0%, #0f1116 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: #f2c94c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 {
  font-size: 60px;
  line-height: 1.08;
  margin-bottom: 20px;
  color: #ffffff;
}

.lead {
  font-size: 22px;
  color: #e7e7e7;
  margin-bottom: 18px;
}

.hero p {
  font-size: 19px;
  color: #d2d2d2;
  max-width: 760px;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  margin: 40px auto 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #f2c94c;
  color: #0f1116;
}

.btn-primary:hover {
  background: #ffd86d;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #f2c94c;
  color: #f2c94c;
  text-decoration: none;
}

.section {
  padding: 70px 0;
}

.alt-section {
  background: #12161d;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

h2 {
  display: inline-block;
  color: #f2c94c;
  font-size: 34px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f2c94c;
}

h3 {
  color: #f2c94c;
  font-size: 24px;
  margin-bottom: 12px;
}

.section p {
  font-size: 19px;
  color: #d8d8d8;
  margin-bottom: 20px;
  max-width: 980px;
}

.inline-link {
  margin-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: #171b23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 26px;
  min-height: 100%;
}

.card p {
  font-size: 17px;
  margin-bottom: 18px;
}

.card-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.profile-links a {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: #171b23;
}

.profile-links a:hover {
  border-color: #f2c94c;
  text-decoration: none;
}

.site-footer {
  background: #11141b;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #d2d2d2;
}

.footer-links a:hover {
  color: #f2c94c;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .button-row {
    justify-content: center;
  }

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

  .footer-wrap,
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 14px;
  }

  .hero-photo {
    width: 240px;
    height: 240px;
  }

  h1 {
    font-size: 46px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .lead,
  .section p,
  .hero p {
    font-size: 18px;
  }

  .brand {
    font-size: 21px;
  }
}
.social-icons {
  text-align: center;
  margin: 2px 0 2px 0;
}

.social-icons a {
  margin-right: 6px;
}

.social-icons img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
/* === HEADER SPACING FIX === */

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px; /* controls space between name, icons, nav */
}

.brand {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.main-nav {
  margin: 0;
  padding-top: 2px;
}
/* Fix spacing under header on all pages */
.container {
  padding-top: 40px;
}