/* ═══════════════════════════════════════════════════════
   LAWSON FOR CALIFORNIA — State Assembly District 79
   style.css — Shared across all pages
   ═══════════════════════════════════════════════════════ */

:root {
  --ca-navy: #003366;
  --ca-blue: #004A8F;
  --ca-gold: #C6930A;
  --ca-gold-light: #E8B630;
  --ca-gold-pale: #FFF8E7;
  --ca-red: #A42E2E;
  --ca-red-warm: #C2382A;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F0F1F3;
  --mid-gray: #D4D6DB;
  --text-dark: #1A1A2E;
  --text-body: #2D2D3F;
  --text-muted: #5A5D6B;
  --shadow-sm: 0 1px 3px rgba(0,30,60,0.08);
  --shadow-md: 0 4px 16px rgba(0,30,60,0.10);
  --shadow-lg: 0 8px 32px rgba(0,30,60,0.14);
  --radius: 4px;
  --max-w: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ══ UTILITY BAR ══ */
.utility-bar {
  background: var(--ca-navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 6px 0;
  border-bottom: 2px solid var(--ca-gold);
}
.utility-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.utility-bar .official-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-bar .official-badge svg { flex-shrink: 0; }
.utility-bar a { color: var(--ca-gold-light); text-decoration: none; }
.utility-bar a:hover { color: var(--white); }
.utility-bar .util-links { display: flex; gap: 16px; list-style: none; }

/* ══ HEADER ══ */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-seal {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--ca-gold);
}
.logo-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ca-navy);
  line-height: 1.15;
}
.logo-text .subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ca-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ══ NAV ══ */
nav { display: flex; align-items: center; gap: 0; }
nav a {
  display: block;
  padding: 26px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--ca-navy);
  border-bottom-color: var(--ca-gold);
}
nav a.cta-nav {
  background: var(--ca-red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 20px;
  margin-left: 8px;
  border-bottom: none;
  font-weight: 700;
}
nav a.cta-nav:hover { background: var(--ca-red-warm); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ca-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ══ HERO (home only) ══ */
.hero {
  background: linear-gradient(135deg, var(--ca-navy) 0%, #002244 60%, #001933 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-flag-bg {
  position: absolute;
  inset: 0;
  background: url('images/flag-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 60%, rgba(198,147,10,0.06) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ca-gold) 0%, var(--ca-gold-light) 50%, var(--ca-gold) 100%);
  z-index: 3;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ca-gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--ca-gold);
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h2 em { font-style: normal; color: var(--ca-gold-light); }
.hero-desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* candidate photo in hero — LEFT column */
.hero-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-candidate-photo {
  width: 300px;
  height: auto;
  border-radius: 8px;
  border: 4px solid var(--ca-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 8px rgba(198,147,10,0.12);
  object-fit: cover;
  object-position: top center;
}

/* ══ PAGE HERO (subpages) ══ */
.page-hero {
  background: linear-gradient(135deg, var(--ca-navy) 0%, #002244 60%, #001933 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 56px 0 60px;
}
.page-hero .hero-flag-bg {
  position: absolute;
  inset: 0;
  background: url('images/flag-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ca-gold) 0%, var(--ca-gold-light) 50%, var(--ca-gold) 100%);
  z-index: 3;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ca-gold-light);
  margin-bottom: 12px;
}
.page-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
}

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--ca-gold);
  color: var(--ca-navy);
  box-shadow: 0 2px 12px rgba(198,147,10,0.35);
}
.btn-primary:hover {
  background: var(--ca-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(198,147,10,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-red { background: var(--ca-red); color: var(--white); }
.btn-red:hover { background: var(--ca-red-warm); transform: translateY(-1px); }
.btn-navy { background: var(--ca-navy); color: var(--white); }
.btn-navy:hover { background: var(--ca-blue); transform: translateY(-1px); }

/* ══ SECTIONS ══ */
section { padding: 80px 0; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ca-gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--ca-navy);
  margin-bottom: 16px;
}
.section-header p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ══ QUICK NAV CARDS (home) ══ */
.quick-nav { background: var(--white); padding: 0; position: relative; z-index: 2; margin-top: -40px; }
.quick-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.qn-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 6px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.qn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ca-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.qn-card:hover::before { transform: scaleX(1); }
.qn-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--ca-gold); }
.qn-card .icon {
  width: 44px; height: 44px;
  background: var(--ca-gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.qn-card .icon svg { color: var(--ca-blue); }
.qn-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ca-navy);
  margin-bottom: 10px;
}
.qn-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.qn-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ca-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.qn-card .card-link svg { transition: transform var(--transition); }
.qn-card:hover .card-link svg { transform: translateX(4px); }

/* ══ ISSUES GRID ══ */
.issues { background: var(--light-gray); }
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.issue-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}
.issue-card:hover { box-shadow: var(--shadow-md); border-color: var(--ca-blue); }
.issue-icon { font-size: 1.8rem; margin-bottom: 14px; }
.issue-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ca-navy);
  margin-bottom: 10px;
}
.issue-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* issue detail page */
.issue-detail { background: var(--white); }
.issue-detail-card {
  background: var(--off-white);
  border-left: 4px solid var(--ca-gold);
  border-radius: 0 8px 8px 0;
  padding: 36px 32px;
  margin-bottom: 28px;
}
.issue-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ca-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.issue-detail-card p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 12px;
}
.issue-detail-card .resources {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--mid-gray);
}
.issue-detail-card .resources a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ca-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}
.issue-detail-card .resources a:hover { color: var(--ca-navy); }

/* ══ ENDORSEMENTS ══ */
.endorsements { background: var(--white); }
.endorsement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.endorsement-card {
  padding: 28px;
  background: var(--off-white);
  border-left: 4px solid var(--ca-gold);
  border-radius: 0 6px 6px 0;
  transition: var(--transition);
}
.endorsement-card:hover { box-shadow: var(--shadow-sm); }
.endorsement-card blockquote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}
.endorsement-card .attribution {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ca-navy);
}
.endorsement-card .attribution span { font-weight: 400; color: var(--text-muted); }

/* endorsement image gallery */
.endorsement-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.endorsement-gallery img {
  border-radius: 6px;
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
}
.endorsement-gallery img:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

/* ══ TRANSPARENCY / FILINGS ══ */
.transparency { background: var(--light-gray); }
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.trans-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.trans-card:hover { box-shadow: var(--shadow-md); }
.trans-card .doc-icon {
  width: 56px; height: 56px;
  background: var(--ca-navy);
  border-radius: 8px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trans-card .doc-icon svg { color: var(--ca-gold-light); }
.trans-card h3 { font-size: 1rem; font-weight: 700; color: var(--ca-navy); margin-bottom: 8px; }
.trans-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.trans-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ca-blue);
  text-decoration: none;
}
.trans-card a:hover { color: var(--ca-navy); }

/* ══ CTA BAND ══ */
.cta-band {
  background: linear-gradient(135deg, var(--ca-red) 0%, var(--ca-red-warm) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-band .btn-primary { box-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══ VOTING ══ */
.voting-info { background: var(--white); }
.voting-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step { text-align: center; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ca-navy);
  color: var(--ca-gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--ca-navy); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* resource links list */
.resource-links {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}
.resource-links li {
  border-bottom: 1px solid var(--mid-gray);
  padding: 16px 0;
}
.resource-links li:last-child { border-bottom: none; }
.resource-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ca-navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.resource-links a:hover { color: var(--ca-blue); }
.resource-links .link-icon {
  width: 36px; height: 36px;
  background: var(--ca-gold-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-links .link-desc {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══ SOCIAL MEDIA ══ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.social-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.social-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.social-card .card-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--light-gray);
}
.social-card .platform-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.social-card .platform-icon.fb { background: #1877F2; }
.social-card .platform-icon.x { background: #000000; }
.social-card .platform-icon.ig { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); }
.social-card .platform-icon.sub { background: #FF6719; }
.social-card .platform-name { font-weight: 700; color: var(--ca-navy); font-size: 0.95rem; }
.social-card .platform-handle { font-size: 0.82rem; color: var(--text-muted); }
.social-card .card-body { padding: 20px 24px; }
.social-card .card-body p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
.social-card .card-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ca-blue);
  text-decoration: none;
}
.social-card .card-body a:hover { color: var(--ca-navy); }

/* ══ DONATE ══ */
.donate-hero {
  background: linear-gradient(135deg, var(--ca-red) 0%, #8B1A1A 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-hero .hero-flag-bg {
  position: absolute;
  inset: 0;
  background: url('images/flag-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.donate-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.donate-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.donate-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}
.donate-amounts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.donate-amounts a {
  padding: 14px 28px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}
.donate-amounts a:hover {
  background: var(--ca-gold);
  color: var(--ca-navy);
  border-color: var(--ca-gold);
}
.donate-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* what matters form */
.poll-section { background: var(--white); }
.poll-form {
  max-width: 700px;
  margin: 0 auto;
}
.poll-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: 6px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.poll-option:hover { border-color: var(--ca-blue); background: var(--ca-gold-pale); }
.poll-option input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--ca-navy);
}
.poll-option label {
  font-weight: 600;
  cursor: pointer;
  flex: 1;
}
.poll-option .desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ══ FOOTER ══ */
footer {
  background: var(--ca-navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.fppc-disclaimer {
  background: rgba(198,147,10,0.08);
  border: 1px solid rgba(198,147,10,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.fppc-disclaimer strong { color: var(--ca-gold-light); }
.fppc-disclaimer a { color: var(--ca-gold-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo-seal {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(198,147,10,0.3);
  flex-shrink: 0;
}
.footer-brand .footer-logo-seal img {
  width: 100%; height: 100%; object-fit: cover;
}
.footer-brand .footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
}
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--ca-gold); color: var(--ca-navy); border-color: var(--ca-gold); }
footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ca-gold-light);
  margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; }
footer ul a:hover { color: var(--white); }
.footer-newsletter p { font-size: 0.82rem; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--ca-gold); }
.newsletter-form button {
  padding: 10px 18px;
  background: var(--ca-gold);
  color: var(--ca-navy);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--ca-gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-photo-wrapper { animation: fadeUp 0.7s ease both; }
.hero-content { animation: fadeUp 0.7s 0.15s ease both; }
.qn-card:nth-child(1) { animation: fadeUp 0.5s 0.3s ease both; }
.qn-card:nth-child(2) { animation: fadeUp 0.5s 0.4s ease both; }
.qn-card:nth-child(3) { animation: fadeUp 0.5s 0.5s ease both; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 24px 72px; gap: 32px; text-align: center; }
  .hero-candidate-photo { width: 220px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .quick-nav-inner { grid-template-columns: 1fr; margin-top: -24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .utility-bar .util-links { display: none; }
  nav { display: none; }
  .mobile-toggle { display: block; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
    z-index: 99;
  }
  nav.open a { padding: 14px 24px; border-bottom: none; }
  nav.open a.cta-nav { margin: 8px 24px; text-align: center; }
  .hero h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
