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

:root {
  --orange: #B35000;
  --orange-dark: #9E4800;
  --orange-light: #FEF3EC;
  --orange-faint: #FDF9F6;
  --charcoal: #111111;
  --charcoal-2: #1C1C1C;
  --slate: #1B2A3B;
  --slate-2: #243446;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --warm-gray: #F3F0EB;
  --border: #E6E1D9;
  --border-mid: #D1CBBC;
  --text-primary: #111111;
  --text-body: #3A3530;
  --text-muted: #6B6560;
  --text-subtle: #696969;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1160px;
  --r: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --sh-sm: 0 1px 4px rgba(0,0,0,0.07);
  --sh-md: 0 4px 20px rgba(0,0,0,0.09);
  --sh-lg: 0 12px 40px rgba(0,0,0,0.11);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 4.25rem;
  background: linear-gradient(160deg, #0d0d0d 0%, #141414 40%, #1B2A3B 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 80% 50%, rgba(27,42,59,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 40%, rgba(191,87,0,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #0d0d0d 0%, #141414 40%, #1B2A3B 100%);
}
.page-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.page-hero-left { flex: 1; max-width: 600px; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(191,87,0,0.18);
  border: 1px solid rgba(191,87,0,0.32);
  color: #F5A461;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.page-hero-h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.page-hero-h1 em { color: #F5A461; font-style: normal; }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 1.875rem;
}
.page-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background .15s, transform .15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.26);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background .15s, border-color .15s;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.17); border-color: rgba(255,255,255,0.38); }
.page-hero-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.hero-stat-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
  padding: 1.125rem 1.5rem;
  backdrop-filter: blur(10px);
  min-width: 200px;
}
.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-num span { color: #F5A461; }
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.4;
}

.sub-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 63px;
  z-index: 100;
}
.sub-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.sub-nav-link:hover { color: var(--text-primary); }
.sub-nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }

.sec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.375rem;
}
.sec-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.sec-sub {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.65;
  max-width: 540px;
}
.sec-hdr-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.25rem;
}
.link-more {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap .15s;
  white-space: nowrap;
}
.link-more:hover { gap: 0.55rem; }
.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: transparent;
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.btn-outline-orange:hover { background: var(--orange); color: white; }

@media (max-width: 960px) {
  .page-hero-content { flex-direction: column; align-items: flex-start; }
  .page-hero-right { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { min-width: 0; flex: 1 1 180px; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .page-hero { padding: 3.75rem 0 3.25rem; }
  .page-hero-right { flex-direction: column; width: 100%; }
  .sub-nav-inner { padding: 0 1.25rem; }
  .sec-hdr-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ─── HUB NEWS + EVENTS (shared across all audience hubs) ─── */
.hub-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.news-card {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.news-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1520 0%, #1B2A3B 50%, #0f1a28 100%);
}
.news-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.news-img::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(191,87,0,0.15);
}
.news-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.news-body { padding: 1.25rem; flex: 1; }
.news-meta {
  font-size: 0.73rem; color: var(--text-subtle);
  margin-bottom: 0.5rem;
}
.news-title {
  font-size: 0.975rem; font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4; margin-bottom: 0.625rem;
  transition: color .15s;
}
.news-card:hover .news-title { color: var(--orange); }
.news-excerpt {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hub-events-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.hub-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.home-event-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.home-event-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: rgba(191,87,0,0.25);
}
.home-event-date-block {
  background: linear-gradient(180deg, #132235 0%, #1b2f46 100%);
  color: white;
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}
.home-event-date {
  font-size: 0.88rem; font-weight: 700; line-height: 1.3;
}
.home-event-time {
  font-size: 0.74rem; line-height: 1.45;
  color: rgba(255,255,255,0.72);
}
.home-event-body { padding: 1.1rem 1.15rem 1.25rem; min-width: 0; }
.home-event-type {
  display: inline-flex; align-items: center;
  margin-bottom: 0.6rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(179,80,0,0.07);
  color: var(--orange);
  font-size: 0.67rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.home-event-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35; margin-bottom: 0.5rem;
}
.home-event-card:hover .home-event-title { color: var(--orange); }
.home-event-meta {
  font-size: 0.77rem; color: var(--text-subtle); margin-bottom: 0.5rem;
}
.home-event-summary {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hub-news-grid,
  .hub-events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .home-event-card { grid-template-columns: 140px minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .home-event-card { grid-template-columns: 1fr; }
  .home-event-date-block { gap: 0.35rem; }
}
