/* =========================================================
   APEX Sponsor Solutions — Site Stylesheet
   Design tokens extracted from apexsponsor.com (live site)
   Navy: #07172B | Gold: #D2AA52 | Gold-dark: #A98032
   ========================================================= */

:root {
  --color-navy: #07172B;
  --color-gold: #D2AA52;
  --color-gold-dark: #A98032;
  --color-gold-light: #E1C06C;
  --color-body-text: #5F6874;
  --color-muted: #6E7783;
  --color-border: #E9EDF2;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-label: var(--font-body);
  --container-max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-navy);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding-top: 96px; padding-bottom: 96px; }
@media (max-width: 768px) {
  .section-padding { padding-top: 64px; padding-bottom: 64px; }
}

.font-display {
  font-family: var(--font-display);
}
.font-label {
  font-family: var(--font-label);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--color-navy);
}
.site-header.is-solid { background: var(--color-navy); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-gold); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--color-gold);
  color: var(--color-navy) !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--color-gold-light); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 24px;
  }
  .nav-toggle { display: inline-flex; }
}

body { padding-top: 76px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -76px;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,23,43,0.90), rgba(7,23,43,0.70) 55%, rgba(7,23,43,0.40));
}
.hero-content {
  position: relative;
  padding: 96px 0 64px;
  max-width: 640px;
}
.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin: 0 0 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
}
.hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .hero-title { font-size: 56px; }
}
@media (min-width: 1200px) {
  .hero-title { font-size: 72px; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-primary:hover { background: var(--color-gold-light); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; }

/* Page header banner (interior pages) */
.page-hero {
  background: var(--color-navy);
  padding: 128px 0 80px;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 0 24px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  line-height: 1.7;
  margin: 0;
}
@media (min-width: 768px) {
  .page-hero h1 { font-size: 56px; }
}

/* ---------- Section headings ---------- */
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  margin: 0 0 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 48px;
}
@media (min-width: 768px) {
  .section-title { font-size: 40px; }
}

/* ---------- Cards / grids (capabilities, values) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.info-card .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-gold);
  font-weight: 600;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 12px 0 12px;
}
.info-card p {
  color: var(--color-body-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.info-card a {
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-card {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-navy);
  margin: 0 0 12px;
}
.value-card p {
  color: var(--color-body-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Team / Leadership cards ---------- */
.team-section { padding: 80px 0; }
.team-section.alt { background: #F8F9FB; }

/* Leadership — prominent/large cards */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1080px;
}
@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; }
}
.leader-card { display: block; }
.leader-card .photo-wrap {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-navy);
}
.leader-card .photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}
.leader-card:hover .photo-wrap img { transform: scale(1.025); }
.leader-card .photo-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(to top, rgba(7,23,43,0.55), transparent);
}
.leader-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 4px;
}
.leader-card .role {
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  margin: 0 0 20px;
  font-weight: 600;
}
.leader-card .desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-body-text);
  margin: 0 0 20px;
  max-width: 34em;
}
.view-profile {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold-dark);
}
.view-profile svg { margin-left: 8px; transition: transform 0.2s ease; }
.leader-card:hover .view-profile svg { transform: translateX(4px); }

/* Corporate Partnership Team — visually smaller / distinct row */
.partnership-intro {
  max-width: 720px;
  margin: 0 0 40px;
  color: var(--color-body-text);
  font-size: 16px;
  line-height: 1.7;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 900px;
}
@media (min-width: 640px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.partner-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}
.partner-card .photo-wrap {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-navy);
}
.partner-card .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.partner-card .info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 2px;
}
.partner-card .info .role {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.partner-card .info p.desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body-text);
  margin: 0 0 10px;
  max-width: none;
}
.partner-card .view-profile { font-size: 12px; }

.team-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(210,170,82,0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

/* Bar preceding "Corporate Partnership Team" title bar */
.team-divider {
  border-top: 1px solid var(--color-border);
  margin: 72px 0 0;
  padding-top: 72px;
}

/* ---------- Profile page ---------- */
.profile-hero {
  padding: 140px 0 40px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 24px;
}
.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .profile-layout { grid-template-columns: 340px 1fr; }
}
.profile-photo {
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-navy);
}
.profile-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.profile-body h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 6px;
}
.profile-body .role {
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin: 0 0 24px;
}
.profile-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin: 0 0 20px;
}
.profile-body h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-navy);
  margin: 32px 0 16px;
}
.profile-body ul { margin: 0 0 20px; }
.profile-body ul li {
  position: relative;
  padding-left: 18px;
  color: var(--color-body-text);
  font-size: 15px;
  line-height: 1.8;
}
.profile-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ---------- Properties page ---------- */
.property-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 992px) {
  .property-layout { grid-template-columns: 1.1fr 0.9fr; }
}
.property-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(210,170,82,0.12);
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.property-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 20px;
}
.property-copy {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin: 0 0 32px;
}
.property-copy + h3, .opportunity-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.opportunity-list { margin-bottom: 32px; }
.opportunity-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-body-text);
  font-size: 15px;
  line-height: 1.9;
}
.opportunity-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-gold-dark);
}
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.category-pill {
  padding: 6px 14px;
  border: 1px solid rgba(210,170,82,0.3);
  color: var(--color-navy);
  font-size: 13px;
  border-radius: 4px;
}
.property-media {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(7,23,43,0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.property-media img { width: 100%; max-width: 320px; height: auto; }
.host-market-box {
  background: #fff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  margin-top: 32px;
}
.host-market-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.host-market-box p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-navy);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 24px;
}
@media (min-width: 768px) { .cta-band h2 { font-size: 40px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 80px 0 0;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-grid img { height: 40px; width: auto; margin-bottom: 24px; }
.footer-grid .tagline {
  color: var(--color-gold);
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.footer-grid .desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin: 0 0 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-gold); }
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 6px 0; }

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.social-row a {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  transition: color 0.2s ease;
}
.social-row a:hover { color: var(--color-gold); }
.social-row.dark a { color: var(--color-navy); }
.social-row.dark a:hover { color: var(--color-gold); }
.social-row svg { width: 20px; height: 20px; }

.legal-row {
  display: flex; flex-direction: column; gap: 8px;
}
.legal-row a { color: rgba(255,255,255,0.5); font-size: 13px; }
.legal-row a:hover { color: rgba(255,255,255,0.8); }

.footer-disclaimer {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.footer-disclaimer p {
  max-width: 900px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom {
  margin-top: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0; }

/* ---------- Contact form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 992px) {
  .contact-layout { grid-template-columns: 1.3fr 0.7fr; }
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--color-muted); margin-top: 16px; }
.contact-info h4 {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  margin: 32px 0 12px;
}
.contact-info h4:first-child { margin-top: 0; }
.contact-info p, .contact-info a { color: var(--color-navy); font-size: 16px; margin: 0 0 8px; }
.contact-info a:hover { color: var(--color-gold-dark); }
