/*
Theme Name: Kennedy For Littleton
Theme URI: https://kennedyforlittleton.com
Author: Committee to Elect James Kennedy
Description: Campaign website for James Kennedy for Park & Recreation Commissioner, Littleton MA. Content is editable through Appearance > Customize.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kennedy
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --green: #1a4a2e;
  --green-mid: #2d6b47;
  --green-light: #4a9065;
  --gold: #c8932a;
  --gold-light: #e8b04a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text: #1c1c1c;
  --text-mid: #3d3d3a;
  --text-light: #6b6b68;
  --border: #ddd;
  --red: #8b1a1a;
  --amber: #7a4e00;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; font-weight: 300; color: var(--text); background: var(--cream); line-height: 1.7; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--green); height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.site-nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.site-nav-brand {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px;
  color: var(--cream); text-decoration: none; letter-spacing: 0.02em;
}
.site-nav-brand span { color: var(--gold-light); }
.site-nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.site-nav-links a {
  color: rgba(245,240,232,0.8); text-decoration: none; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
.site-nav-links a:hover,
.site-nav-links a.active { color: var(--gold-light); }
.site-nav-links a.active { font-weight: 600; }
.site-nav-donate {
  background: var(--gold); color: var(--green) !important;
  padding: 7px 16px; border-radius: 2px; font-weight: 600 !important;
}
.site-nav-donate:hover { background: var(--gold-light); }

/* Mobile nav */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #f5f0e8; border-radius: 2px;
}
.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--green); border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 99; flex-direction: column; padding: 16px 24px 24px;
}
.nav-mobile a {
  display: block; color: rgba(245,240,232,0.85); text-decoration: none;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-mobile-donate {
  background: var(--gold); color: var(--green) !important;
  padding: 12px 20px; border-radius: 2px; font-weight: 600;
  text-align: center; margin-top: 12px;
}
.nav-mobile.open { display: flex; }

/* ============================================
   ELECTION BANNER
   ============================================ */
.election-banner {
  background: var(--gold); text-align: center; padding: 14px 40px;
  font-size: 14px; font-weight: 600; color: var(--green);
  letter-spacing: 0.04em;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
section { padding: 90px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  color: var(--green); line-height: 1.15; margin-bottom: 20px;
}
.section-lead {
  font-size: 18px; color: var(--text-mid); max-width: 640px;
  margin-bottom: 48px; font-weight: 300; line-height: 1.8;
}
.divider { width: 48px; height: 3px; background: var(--gold); margin-bottom: 32px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--gold); color: var(--green); padding: 14px 32px;
  border-radius: 2px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid rgba(245,240,232,0.4); color: var(--cream);
  padding: 14px 32px; border-radius: 2px; font-weight: 400; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--cream); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; background: var(--green); display: flex;
  align-items: center; position: relative; overflow: hidden;
  padding: 100px 40px 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,144,101,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}
.hero-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light);
  border: 1px solid rgba(200,147,42,0.4); padding: 5px 12px;
  border-radius: 2px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(40px, 4.5vw, 68px); color: var(--white);
  line-height: 1.05; margin-bottom: 8px;
}
.hero h1 em {
  font-style: normal; color: var(--gold-light);
  display: block; font-size: 0.65em; margin-top: 6px;
}
.hero-subtitle {
  font-size: 16px; color: rgba(245,240,232,0.7);
  margin-bottom: 28px; font-weight: 300;
}
.hero-date {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--cream);
  background: rgba(200,147,42,0.2); border: 1px solid rgba(200,147,42,0.3);
  padding: 10px 20px; border-radius: 2px; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo-col {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.photo-frame {
  width: 280px; height: 280px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--gold); box-shadow: 0 0 0 8px rgba(200,147,42,0.15);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 18px; text-align: center; transition: background 0.2s;
}
.stat-card:hover { background: rgba(255,255,255,0.12); }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 11px; color: rgba(245,240,232,0.6); letter-spacing: 0.04em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-left { animation: fadeUp 0.7s ease 0.1s both; }
.hero-photo-col { animation: fadeUp 0.8s ease 0.3s both; }

/* ============================================
   ABOUT
   ============================================ */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.about-text p { color: var(--text-mid); margin-bottom: 20px; font-size: 16px; line-height: 1.85; }
.credentials {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 28px 32px; border-radius: 0 4px 4px 0;
}
.credentials h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  color: var(--green); margin-bottom: 20px; font-weight: 700;
}
.cred-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.cred-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.cred-text strong { color: var(--green); font-weight: 600; display: block; font-size: 13px; }

/* ============================================
   WRESTLING LEGACY
   ============================================ */
#legacy { background: var(--green); }
.legacy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.legacy-inner .section-title { color: var(--white); }
.legacy-inner .section-tag { color: var(--gold-light); }
.legacy-inner p { color: rgba(245,240,232,0.75); font-size: 15px; margin-bottom: 16px; line-height: 1.85; }
.achievement-list { list-style: none; margin-top: 8px; }
.achievement-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(245,240,232,0.8); font-size: 14px;
  margin-bottom: 10px; line-height: 1.5;
}
.achievement-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light); margin-top: 6px; flex-shrink: 0;
}
.quote-box {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(200,147,42,0.3);
  border-radius: 4px; padding: 32px; margin-top: 8px;
}
.quote-box blockquote {
  font-family: 'Playfair Display', serif; font-size: 19px;
  font-style: italic; color: var(--cream); line-height: 1.65; margin-bottom: 16px;
}
.quote-box cite {
  font-size: 12px; color: var(--gold-light); font-style: normal;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.record-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.record-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 16px; text-align: center;
}
.record-n { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--gold-light); line-height: 1; }
.record-l { font-size: 11px; color: rgba(245,240,232,0.55); margin-top: 4px; letter-spacing: 0.04em; }

/* ============================================
   PRIORITIES
   ============================================ */
#priorities { background: var(--cream); }
.priorities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.priority-card {
  background: var(--white); border-radius: 4px; padding: 36px 28px;
  border-bottom: 3px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s;
}
.priority-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,74,46,0.1); }
.priority-num {
  font-family: 'Playfair Display', serif; font-size: 48px;
  font-weight: 900; color: rgba(26,74,46,0.08); line-height: 1; margin-bottom: 12px;
}
.priority-card h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--green); margin-bottom: 12px; font-weight: 700;
}
.priority-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ============================================
   YOUTH WRESTLING
   ============================================ */
#wrestling { background: var(--white); }
.wrestling-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wrestling-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.w-stat { text-align: center; padding: 20px 12px; background: var(--cream); border-radius: 4px; }
.w-stat .n { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--green); line-height: 1; }
.w-stat .l { font-size: 11px; color: var(--text-light); margin-top: 4px; letter-spacing: 0.04em; }
.wrestling-grid p { font-size: 15px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.85; }
.program-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: var(--green-mid); font-weight: 600; font-size: 14px;
  text-decoration: none; border-bottom: 1px solid var(--green-light); padding-bottom: 2px;
}
.program-link:hover { color: var(--green); }

/* ============================================
   ENDORSEMENTS
   ============================================ */
#endorsements { background: var(--cream); }
.endorse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.endorse-card {
  background: var(--white); border-radius: 4px; padding: 32px 24px;
  border-top: 3px solid var(--green-light);
}
.endorse-card p { font-size: 15px; color: var(--text-mid); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.endorse-card cite {
  font-size: 12px; font-weight: 600; color: var(--green);
  letter-spacing: 0.06em; text-transform: uppercase; font-style: normal;
}

/* ============================================
   DONATE
   ============================================ */
#donate { background: var(--cream); text-align: center; }
.donate-box {
  background: white; border: 1px solid var(--border); border-radius: 6px;
  padding: 36px; max-width: 500px; margin: 0 auto 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.donate-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 12px;
}
.venmo-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #008CFF; color: white; padding: 14px 32px;
  border-radius: 4px; font-weight: 600; font-size: 15px;
  text-decoration: none; letter-spacing: 0.04em;
}
.venmo-btn:hover { opacity: 0.9; }
.donate-check-name {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: var(--green); margin-bottom: 6px;
}

/* ============================================
   CONTACT
   ============================================ */
#contact { background: var(--green); text-align: center; }
#contact .section-title { color: var(--white); }
#contact .section-lead { color: rgba(245,240,232,0.7); margin: 0 auto 48px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px;
  margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.contact-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 28px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: block;
}
.contact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.contact-icon { font-size: 26px; margin-bottom: 10px; }
.contact-card h3 {
  font-size: 13px; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
}
.contact-card p { font-size: 12px; color: rgba(245,240,232,0.6); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0f2e1c; padding: 28px 40px; text-align: center;
  font-size: 13px; color: rgba(245,240,232,0.4);
}
.site-footer a { color: var(--gold-light); text-decoration: none; }

/* ============================================
   PLATFORM PAGE
   ============================================ */
.top-banner {
  background: var(--green); color: var(--cream); text-align: center;
  padding: 14px 24px; font-size: 13px; letter-spacing: 0.06em;
}
.top-banner a { color: var(--gold-light); text-decoration: none; }
.top-banner strong { color: var(--gold-light); }

.platform-header {
  background: var(--green); color: var(--cream); padding: 60px 40px 50px;
}
.platform-header.has-nav { padding-top: 124px; }
.header-inner { max-width: 860px; margin: 0 auto; }
.report-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light);
  border: 1px solid rgba(200,147,42,0.4); padding: 5px 12px;
  border-radius: 2px; margin-bottom: 20px;
}
.platform-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.1; margin-bottom: 12px;
}
.platform-header h1 em {
  display: block; font-style: normal; color: var(--gold-light);
  font-size: 0.75em; margin-top: 8px;
}
.report-meta { font-size: 14px; color: rgba(245,240,232,0.65); margin-top: 20px; }
.report-meta span { margin-right: 24px; }

.toc {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 20px 24px; margin-top: 32px;
}
.toc h3 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px;
}
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: rgba(245,240,232,0.8); font-size: 14px; text-decoration: none; }
.toc a:hover { color: var(--gold-light); }

.platform-main { max-width: 860px; margin: 0 auto; padding: 0 24px 80px; }
.platform-main p { margin-bottom: 16px; color: var(--text-mid); }
.platform-main h3 {
  font-family: 'Playfair Display', serif; font-size: 19px;
  color: var(--green); margin: 28px 0 10px; font-weight: 700;
}
.platform-main h4 { font-size: 15px; font-weight: 600; color: var(--green-mid); margin: 18px 0 6px; }

/* WordPress block separator → gold divider bar in platform page */
.platform-main hr.wp-block-separator,
.platform-main .wp-block-separator {
  border: none !important;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0 24px;
  opacity: 1;
}
/* Section headings that follow a separator get section spacing */
.platform-main .wp-block-separator + h2 {
  margin-top: 0;
}
/* H2 section headings */
.platform-main h2 {
  padding-top: 52px;
  border-top: 1px solid var(--border);
  margin-top: 44px;
}
.platform-main h2:first-child {
  border-top: none;
  margin-top: 40px;
  padding-top: 40px;
}

.platform-section { padding: 52px 0 0; border-top: 1px solid var(--border); margin-top: 44px; }
.platform-section:first-child { border-top: none; margin-top: 40px; }
.section-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 8px; display: block;
}

.callout { border-radius: 4px; padding: 20px 24px; margin: 20px 0; }
.callout-gold { background: #fdf6e8; border-left: 4px solid var(--gold); }
.callout-green { background: #eaf5f0; border-left: 4px solid var(--green-light); }
.callout strong { display: block; margin-bottom: 6px; font-size: 15px; color: var(--green); }
.callout p { margin: 0; font-size: 14px; }

/* Before/After Table */
.ba-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 24px 0; }
.ba-table th { padding: 10px 14px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.ba-table th:first-child { background: #f0ebe0; color: var(--text-light); width: 28%; }
.ba-table th:nth-child(2) { background: #fce8e8; color: var(--red); width: 36%; }
.ba-table th:nth-child(3) { background: #eaf5f0; color: var(--green); width: 36%; }
.ba-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.ba-table td:first-child { font-weight: 600; color: var(--text); background: #faf8f3; }
.ba-table td:nth-child(2) { color: var(--text-mid); background: #fffafa; }
.ba-table td:nth-child(3) { color: var(--text-mid); background: #f6fbf8; }

/* Facility Table */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table.facility-table { width: 100%; border-collapse: collapse; font-size: 13px; }
table.facility-table thead th {
  background: var(--green); color: white; padding: 10px 12px;
  text-align: left; font-weight: 600; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
table.facility-table tbody tr:nth-child(even) { background: #f9f7f2; }
table.facility-table tbody tr:hover { background: #eef5f0; }
table.facility-table td { padding: 9px 12px; border-bottom: 1px solid #e8e4dc; vertical-align: top; line-height: 1.45; }
table.facility-table td.name { font-weight: 600; color: var(--green); }
table.facility-table td a {
  color: var(--green-mid); font-size: 11px; display: block;
  margin-top: 2px; text-decoration: none; border-bottom: 1px dotted var(--green-light);
}
.badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.badge-yes { background: #e8f5ee; color: #1a4a2e; }
.badge-no { background: #fce8e8; color: #8b1a1a; }
.badge-partial { background: #fdf6e8; color: #7a4e00; }
.badge-email { background: #e8f0f5; color: #1a3a5e; }
.badge-addr { background: #f5ece8; color: #5a2a1a; }

.source-key { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0 8px; font-size: 12px; }
.source-key span { display: flex; align-items: center; gap: 6px; color: var(--text-light); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-yes { background: #1a4a2e; }
.dot-no { background: #8b1a1a; }
.dot-partial { background: #c8932a; }

ul.bullets { padding-left: 0; list-style: none; }
ul.bullets li {
  padding: 5px 0 5px 20px; position: relative;
  color: var(--text-mid); font-size: 15px; margin-bottom: 4px;
}
ul.bullets li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

a.src {
  font-size: 11px; vertical-align: super; color: var(--green-mid);
  text-decoration: none; border-bottom: 1px dotted; margin-left: 2px;
}
a.src:hover { color: var(--green); }

.sources {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 24px; margin-top: 32px;
}
.sources h3 {
  font-size: 14px; font-weight: 600; color: var(--green);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em;
}
.source-item { display: flex; gap: 12px; margin-bottom: 10px; font-size: 13px; }
.source-item .num { color: var(--green-mid); font-weight: 600; min-width: 24px; }
.source-item a { color: var(--green-mid); word-break: break-all; }

.principles { padding-left: 0; list-style: none; }
.principles li {
  padding: 10px 0 10px 20px; position: relative;
  border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-mid);
}
.principles li:last-child { border-bottom: none; }
.principles li::before { content: '\2713'; position: absolute; left: 0; color: var(--green-light); font-weight: 600; }
.principles li strong { color: var(--text); }

.platform-footer {
  background: var(--green); color: rgba(245,240,232,0.6);
  text-align: center; padding: 28px 24px; font-size: 13px; margin-top: 60px;
}
.platform-footer a { color: var(--gold-light); text-decoration: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .site-nav-links { display: none; }
  .nav-hamburger { display: flex !important; }
  .hero-inner, .about-grid, .legacy-inner, .wrestling-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats, .priorities-grid, .endorse-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 24px; }
  .photo-frame { width: 220px; height: 220px; }
}

@media print {
  .top-banner, .site-nav, .nav-mobile { display: none; }
  body { font-size: 12px; background: white; }
  .platform-header { padding: 30px 20px; }
  .platform-main { padding: 0 0 40px; }
}
