/*
Theme Name:  MNHHOF v4
Theme URI:   https://mnhhof.com
Author:      Minnesota Hockey Hall of Fame
Author URI:  https://mnhhof.com
Description: Pixel-perfect WordPress theme for the Minnesota Hockey Hall of Fame. Matches exact colors, fonts, and layout of mnhhof.com.
Version:     4.0.0
License:     GNU General Public License v2 or later
Text Domain: mnhhof
Tags:        custom-menu, full-width-template, sports, hockey
*/

/* ─────────────────────────────────────────────
   EXACT COLORS FROM MNHHOF.COM (extracted live)
   --navy:       #17405F  (rgb 23,64,95)   — dark navy headings, banner
   --blue:       #3589D4  (rgb 53,137,212) — links, accents, separator
   --blue-light: #D8E8F3  (rgb 216,232,243)— section backgrounds
   --black:      #121212  (rgb 18,18,18)   — body text
   --white:      #FFFFFF                   — main background
   --offwhite:   #FAF9F5  (rgb 250,249,245)— subtle bg
   --gray:       #767676                   — muted text
   --gray-light: #D3D3D3                   — borders, dividers
   FONT: Assistant, sans-serif (Google Fonts)
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #121212;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3589D4; text-decoration: none; transition: color 0.2s; }
a:hover { color: #17405F; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Site Shell ── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Image Placeholder (for all temp images) ── */
.img-placeholder {
  background: linear-gradient(135deg, #D8E8F3 0%, #b8cede 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255,255,255,0.3) 10px, rgba(255,255,255,0.3) 11px
  );
}
.img-placeholder-icon {
  font-size: 36px;
  position: relative;
  z-index: 1;
}
.img-placeholder-label {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #17405F;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.img-placeholder-dim {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  color: #3589D4;
  position: relative;
  z-index: 1;
}
/* Dark overlay placeholder (for hero images) */
.img-placeholder.dark {
  background: linear-gradient(135deg, #1a2a3a 0%, #2a4a6a 100%);
}
.img-placeholder.dark .img-placeholder-label { color: #D8E8F3; }
.img-placeholder.dark .img-placeholder-dim { color: #9CC3DE; }
.img-placeholder.dark::before {
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 11px
  );
}

/* ─────────────────────────────────────────────
   HEADER — matches exact mnhhof.com header
   ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(18,18,18,0.08);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(18,18,18,0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo — matches the handwritten "Minnesota Hockey Hall of Fame" style */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  height: 52px;
  width: auto;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
}
.site-logo-main {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #121212;
  line-height: 1.1;
}
.site-logo-sub {
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #767676;
  font-style: italic;
}

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.header-nav a {
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #121212;
  padding: 8px 18px;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.header-nav a:hover,
.header-nav a.active { color: #3589D4; }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 18px; right: 18px;
  height: 2px;
  background: #3589D4;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #D3D3D3;
}
.header-social a {
  color: #121212;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
.header-social a:hover { color: #3589D4; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #121212; transition: all 0.22s;
}
.mobile-nav {
  display: none;
  background: #fff;
  padding: 16px 40px 24px;
  border-top: 1px solid #D3D3D3;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #121212;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}
.mobile-nav a:hover { color: #3589D4; }

.header-spacer { height: 68px; }

@media (max-width: 768px) {
  .header-nav, .header-social { display: none; }
  .nav-toggle { display: flex; }
}

/* ─────────────────────────────────────────────
   FOOTER — matches mnhhof.com footer
   ───────────────────────────────────────────── */
#site-footer {
  background: #17405F;
  color: #fff;
  padding: 56px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo-name {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 12px;
  color: #9CC3DE;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: #b8cede;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a {
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CC3DE;
  padding: 6px 14px;
  border: 1px solid rgba(156,195,222,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social-links a:hover {
  color: #fff;
  border-color: #fff;
}
.footer-col-heading {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9CC3DE;
  margin-bottom: 20px;
}
.footer-col-links li { margin-bottom: 10px; }
.footer-col-links a {
  font-size: 15px;
  color: #b8cede;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: #fff; }
.footer-newsletter-note {
  font-size: 14px;
  color: #b8cede;
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-newsletter-form {
  display: flex;
}
.footer-newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(156,195,222,0.4);
  border-right: none;
  padding: 10px 16px;
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form button {
  background: #3589D4;
  border: none;
  padding: 10px 18px;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover { background: #2a6fa8; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

/* ─────────────────────────────────────────────
   HOME PAGE — front-page.php
   ───────────────────────────────────────────── */

/* Hero — full-viewport with image overlay */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero-bg.placeholder {
  width: 100%;
  height: 100%;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
}

/* Founders' Puck Wall Banner */
.founders-banner {
  background: #17405F;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.founders-banner-text {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
/* Tagline + Body Text Section */
.home-tagline-section {
  background: #fff;
  padding: 72px 40px;
  text-align: center;
}
.home-tagline {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 24px;
  line-height: 1.15;
}
.home-tagline-body {
  font-family: 'Assistant', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #767676;
  max-width: 680px;
  margin: 0 auto;
}

/* Video Section */
.home-video-section {
  background: #000;
  position: relative;
  width: 100%;
}
.home-video-placeholder {
  width: 100%;
  height: 520px;
}
.home-video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* Quote Section — image LEFT, text RIGHT */
.home-quote-section {
  background: #fff;
  padding: 80px 40px;
}
.home-quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.home-quote-image {
  width: 100%;
  aspect-ratio: 1;
}
.home-quote-text-wrap {}
.home-quote-body {
  font-family: 'Assistant', sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: #121212;
  margin-bottom: 20px;
}
.home-quote-attr {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #17405F;
}

/* Mission Section */
.home-mission-section {
  background: #D8E8F3;
  padding: 80px 40px;
  text-align: center;
}
.home-mission-inner {
  max-width: 820px;
  margin: 0 auto;
}
.home-mission-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #17405F;
  margin-bottom: 24px;
  line-height: 1.2;
}
.home-mission-body {
  font-family: 'Assistant', sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: #2A3A4A;
}

/* CTA Section */
.home-cta-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}
.home-cta-inner { max-width: 900px; margin: 0 auto; }
.home-cta-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 12px;
}
.home-cta-sub {
  font-size: 17px;
  color: #767676;
  margin-bottom: 36px;
  line-height: 1.65;
}
.btn-primary {
  display: inline-block;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  background: #17405F;
  color: #fff;
  text-decoration: none;
  transition: background 0.22s;
  margin: 6px;
}
.btn-primary:hover { background: #122f47; color: #fff; }
.btn-outline {
  display: inline-block;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  background: transparent;
  color: #17405F;
  border: 2px solid #17405F;
  text-decoration: none;
  transition: all 0.22s;
  margin: 6px;
}
.btn-outline:hover { background: #17405F; color: #fff; }

/* ─────────────────────────────────────────────
   ABOUT US PAGE
   ───────────────────────────────────────────── */

/* Page Hero — B&W hockey skates image */
.page-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg.placeholder { width: 100%; height: 100%; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}
.page-hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

/* Blue Separator Line */
.blue-separator {
  display: block;
  height: 3px;
  background: #3589D4;
  max-width: 700px;
  margin: 0 auto;
}

/* Bio Cards */
.bios-section {
  background: #fff;
  padding: 64px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.bio-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid #f0f0f0;
}
.bio-card:last-child { border-bottom: none; }

/* Photo placeholder */
.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo.placeholder { }

.bio-name {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #17405F;
  margin-bottom: 4px;
}
.bio-role {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #121212;
  margin-bottom: 20px;
}
.bio-body {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3A3A3A;
  margin-bottom: 16px;
}
.bio-accolades-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #121212;
  margin-bottom: 12px;
}
.accolade-list {
  list-style: disc;
  padding-left: 20px;
}
.accolade-list li {
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  color: #3A3A3A;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Advisory Board */
.board-section {
  background: #FAF9F5;
  padding: 72px 40px;
}
.board-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #17405F;
  margin-bottom: 8px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: #3589D4;
  margin: 0 0 40px;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.board-item {
  background: #fff;
  padding: 24px 22px;
  border-left: 4px solid #3589D4;
}
.board-item-name {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #17405F;
  margin-bottom: 4px;
}
.board-item-role {
  font-family: 'Assistant', sans-serif;
  font-size: 13px;
  color: #767676;
  letter-spacing: 0.04em;
}

/* Foundation Partners */
.foundations-section {
  background: #fff;
  padding: 72px 40px;
}
.foundations-inner { max-width: 1200px; margin: 0 auto; }
.foundations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.foundation-card {
  background: #FAF9F5;
  padding: 32px 28px;
  border-top: 3px solid #D8E8F3;
}
.foundation-name {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #17405F;
  margin-bottom: 12px;
}
.foundation-body {
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: #3A3A3A;
}

/* Ambassadors */
.ambassadors-section {
  background: #17405F;
  padding: 72px 40px;
}
.ambassadors-inner { max-width: 1200px; margin: 0 auto; }
.ambassadors-section .section-title { color: #fff; }
.ambassadors-section .section-divider { background: #3589D4; }
.ambassadors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.ambassador-item {
  background: rgba(255,255,255,0.06);
  padding: 14px 16px;
  transition: background 0.2s;
}
.ambassador-item:hover { background: rgba(255,255,255,0.12); }
.ambassador-name {
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}
.ambassador-city {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  color: #9CC3DE;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────
   GET INVOLVED PAGE
   ───────────────────────────────────────────── */
.gi-intro-section {
  background: #fff;
  padding: 72px 40px;
  text-align: center;
}
.gi-intro-inner { max-width: 760px; margin: 0 auto; }
.gi-intro-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #17405F;
  margin-bottom: 20px;
}
.gi-intro-tagline {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #121212;
  margin-bottom: 16px;
}
.gi-intro-body {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: #3A3A3A;
  margin-bottom: 16px;
}
.gi-intro-note {
  font-size: 14px;
  color: #767676;
  line-height: 1.65;
}
.gi-intro-note a { color: #3589D4; }

/* Donation Tiers */
.gi-tiers-section {
  background: #FAF9F5;
  padding: 72px 40px;
}
.gi-tiers-inner { max-width: 1200px; margin: 0 auto; }
.gi-tiers-header { margin-bottom: 48px; }
.gi-tiers-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #17405F;
  margin-bottom: 8px;
}
.tier-card {
  background: #fff;
  border-left: 5px solid #3589D4;
  padding: 36px 36px 36px 40px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  box-shadow: 0 2px 12px rgba(18,18,18,0.06);
}
.tier-amount {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #17405F;
  line-height: 1;
  margin-bottom: 10px;
}
.tier-puck-badge {
  display: inline-block;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid;
  border-radius: 2px;
}
.badge-gold   { color: #B8860B; border-color: #B8860B; background: #fffbe6; }
.badge-silver { color: #708090; border-color: #708090; background: #f5f5f7; }
.badge-copper { color: #B87333; border-color: #B87333; background: #fff5ee; }
.badge-iron   { color: #5A6570; border-color: #5A6570; background: #f0f2f4; }
.badge-base   { color: #3589D4; border-color: #3589D4; background: #EEF6FD; }

.tier-benefits {
  list-style: disc;
  padding-left: 20px;
}
.tier-benefits li {
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #3A3A3A;
  margin-bottom: 7px;
  padding-left: 4px;
}
.tier-bonus-note {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17405F;
  background: #EEF6FD;
  padding: 8px 14px;
  border-left: 3px solid #3589D4;
  margin-top: 12px;
  display: block;
}

.gi-tiers-cta { text-align: center; margin-top: 48px; }

/* Corporate Partners */
.gi-partners-section {
  background: #17405F;
  padding: 72px 40px;
  text-align: center;
}
.gi-partners-inner { max-width: 760px; margin: 0 auto; }
.gi-partners-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.gi-partners-body {
  font-size: 17px;
  color: #b8cede;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Donor List */
.gi-donors-section {
  background: #fff;
  padding: 72px 40px;
}
.gi-donors-inner { max-width: 1200px; margin: 0 auto; }
.gi-donors-title {
  font-family: 'Assistant', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #17405F;
  margin-bottom: 8px;
}
.donor-tier-label {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3589D4;
  padding: 6px 0;
  border-bottom: 1px solid #D8E8F3;
  margin: 32px 0 14px;
}
.donor-names { display: flex; flex-wrap: wrap; gap: 8px; }
.donor-pill {
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #17405F;
  background: #EEF6FD;
  padding: 7px 16px;
  border: 1px solid #D8E8F3;
}

/* ─────────────────────────────────────────────
   SHOP PAGE
   ───────────────────────────────────────────── */
.shop-shipping-bar {
  background: #17405F;
  padding: 14px 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.shop-shipping-bar span {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.shop-products-section { background: #FAF9F5; padding: 72px 40px; }
.shop-products-inner { max-width: 1200px; margin: 0 auto; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.shop-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(18,18,18,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(18,18,18,0.12);
}
.shop-card-image { width: 100%; aspect-ratio: 1; overflow: hidden; }
.shop-card-image img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-body { padding: 20px 22px 24px; }
.shop-card-brand {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3589D4;
  margin-bottom: 6px;
}
.shop-card-name {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #121212;
  margin-bottom: 8px;
  line-height: 1.3;
}
.shop-card-price {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #17405F;
}

/* Shop Ambassador Showcase */
.shop-amb-section { background: #17405F; padding: 64px 40px; text-align: center; }
.shop-amb-inner { max-width: 1200px; margin: 0 auto; }
.shop-amb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 36px;
}
.shop-amb-item { background: rgba(255,255,255,0.06); padding: 20px 16px; text-align: center; }
.shop-amb-name { font-family: 'Assistant', sans-serif; font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 3px; }
.shop-amb-city { font-size: 11px; color: #9CC3DE; letter-spacing: 0.06em; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-quote-inner { grid-template-columns: 320px 1fr; gap: 48px; }
  .bio-card { grid-template-columns: 280px 1fr; gap: 40px; }
  .ambassadors-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container, .bios-section, .board-inner, .foundations-inner,
  .ambassadors-inner, .gi-tiers-inner, .gi-partners-inner, .gi-donors-inner,
  .shop-products-inner, .shop-amb-inner, .footer-inner { padding: 0 24px; }
  .home-quote-inner { grid-template-columns: 1fr; }
  .bio-card { grid-template-columns: 1fr; }
  .bio-photo { max-width: 380px; margin: 0 auto; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .foundations-grid { grid-template-columns: 1fr; }
  .ambassadors-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-amb-grid { grid-template-columns: repeat(3, 1fr); }
  .tier-card { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  #site-footer { padding: 48px 24px 24px; }
}
@media (max-width: 480px) {
  .board-grid, .shop-grid, .ambassadors-grid, .shop-amb-grid { grid-template-columns: 1fr; }
}
