/*
Theme Name: Latino Leaders Alliance
Theme URI: https://latinoleadersalliance.org
Author: Latino Leaders Alliance
Author URI: https://latinoleadersalliance.org
Description: A premium, institutional WordPress theme for the Latino Leaders Alliance. Full-screen video hero, transparent overlay navigation, editorial leadership profiles, and Gutenberg-friendly page building — inspired by disciplined, presidential-grade digital design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lla
Tags: one-column, full-width-template, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

== Notes ==
All layout, spacing, typography, and section CSS lives in this file per WordPress
convention (this file is enqueued as the theme's primary stylesheet). Component
styles are organized in clearly labeled sections below.
*/

/* =========================================================
   0. CSS RESET / BASE
   ========================================================= */
:root{
  --navy: #0a1f44;
  --navy-deep: #061530;
  --ivory: #faf7f0;
  --white: #ffffff;
  --gold: #b58a3d;
  --gold-light: #d4af6a;
  --ink: #14161a;
  --gray: #5a5f68;
  --gray-light: #e6e3da;
  --border: rgba(10,31,68,0.12);
  --overlay-dark: rgba(6,21,48,0.55);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --header-height: 74px;
  --header-height-scrolled: 60px;
  --container: 1280px;
  --radius: 2px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width: 100%; height: auto; display: block; }
figure{ margin: 0; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5, h6{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  color: var(--navy);
}

p{ margin: 0 0 1.4em; }

.screen-reader-text{
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; word-wrap: normal !important;
}
.screen-reader-text:focus{
  background: var(--navy); color: var(--white); display: block;
  clip: auto !important; clip-path: none; height: auto; width: auto;
  padding: 16px 24px; position: fixed; top: 8px; left: 8px; z-index: 100000;
  text-decoration: none; font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.04em;
}

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

/* =========================================================
   1. TYPOGRAPHY UTILITIES
   ========================================================= */
.eyebrow{
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1em;
}
.section-heading{ font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.5em; }
.section-intro{ max-width: 640px; color: var(--gray); font-size: 1.05rem; }
.text-center{ text-align: center; }

/* =========================================================
   2. BUTTONS
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-primary:hover{ background: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover{ background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-navy{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }
.btn-block{ width: 100%; }

/* =========================================================
   3. SITE HEADER / NAVIGATION
   ========================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: transparent;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-solid{
  background: rgba(6,21,48,0.96);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
/* Only the persistent utility-nav row hides on scroll-down / reappears on
   scroll-up. The top row (menu, logo, search) always stays visible — it
   never fades or translates, matching whitehouse.gov's live behavior. */
.site-header.is-hidden .header-utility-nav{
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  border-top-color: transparent;
}
.header-inner{
  height: var(--header-height);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: height 0.4s var(--ease);
}
.site-header.is-solid .header-inner{ height: var(--header-height-scrolled); }

.site-branding{ grid-column: 2; display: flex; justify-content: center; }
.site-branding a{ display: inline-flex; align-items: center; }
.custom-logo-link img{
  max-height: 46px;
  width: auto;
  transition: max-height 0.4s var(--ease);
}
.site-header.is-solid .custom-logo-link img{ max-height: 38px; }
.site-title-text{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* =========================================================
   3b. MENU TRIGGER + SEARCH TOGGLE
   ========================================================= */
.menu-toggle{
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
}
.menu-toggle-label{
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.menu-toggle .bar{
  display: block; width: 24px; height: 1.5px; background: var(--white);
  position: relative; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.menu-toggle .bar::before,
.menu-toggle .bar::after{
  content: ""; position: absolute; left: 0; width: 24px; height: 1.5px; background: var(--white);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), background-color 0.3s var(--ease);
}
.menu-toggle .bar::before{ top: -7px; }
.menu-toggle .bar::after{ top: 7px; }
.menu-toggle[aria-expanded="true"] .bar{ background: transparent; }
.menu-toggle[aria-expanded="true"] .bar::before{ top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar::after{ top: 0; transform: rotate(-45deg); }

.header-search-toggle{
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
}
.header-search-label{
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.lla-icon-search{
  display: inline-block; width: 15px; height: 15px;
  border: 1.5px solid var(--white); border-radius: 50%; position: relative;
}
.lla-icon-search::after{
  content: ""; position: absolute; width: 7px; height: 1.5px; background: var(--white);
  top: 16px; left: 11px; transform: rotate(45deg);
}

/* =========================================================
   3c. PERSISTENT UTILITY NAV ROW — always visible under the header
   ========================================================= */
.header-utility-nav{
  border-top: 1px solid rgba(255,255,255,0.16);
  overflow-x: auto;
  scrollbar-width: none;
  max-height: 43px;
  opacity: 1;
  transition: background-color 0.25s var(--ease), max-height 0.35s var(--ease), opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
/* Hovering anywhere in the row flips the whole row's background to white
   with dark text — not a per-link "pill." This mirrors whitehouse.gov: the
   entire nav strip inverts together while the mouse is inside it. */
.header-utility-nav:hover,
.header-utility-nav:focus-within{
  background: var(--white);
}
.header-utility-nav::-webkit-scrollbar{ display: none; }
.header-utility-nav-inner{
  max-width: 1440px; margin: 0 auto; padding: 0 28px;
}
.header-utility-nav ul{ display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.header-utility-nav a{
  display: inline-flex; align-items: center; height: 42px; padding: 0 16px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  transition: color 0.25s var(--ease);
}
.header-utility-nav:hover a,
.header-utility-nav:focus-within a{
  color: #000;
}
.header-utility-nav .current-menu-item > a{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* =========================================================
   3d. COLLAPSIBLE SEARCH ROW
   ========================================================= */
.header-search-row{
  max-height: 0; overflow: hidden;
  background: rgba(6,21,48,0.96);
  transition: max-height 0.35s var(--ease);
}
.header-search-row.is-open{ max-height: 80px; }
.header-search-form{
  max-width: 1440px; margin: 0 auto; padding: 14px 28px;
  display: flex; gap: 10px;
}
.header-search-form input[type="search"]{
  flex: 1; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 1rem; padding: 8px 2px;
}
.header-search-form input[type="search"]::placeholder{ color: rgba(255,255,255,0.55); }
.header-search-form button{
  background: transparent; border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 0 20px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius);
}

/* =========================================================
   3e. MEGA PANEL — inline expanding panel docked under the header
   ========================================================= */
.lla-mega-panel{
  position: fixed;
  left: 0; right: 0;
  top: var(--header-height);
  z-index: 490;
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  box-shadow: 0 24px 48px rgba(6,21,48,0.18);
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
}
.site-header.is-solid ~ .lla-mega-panel{ top: var(--header-height-scrolled); }
.lla-mega-panel.is-open{ max-height: 640px; opacity: 1; }
.mega-panel-inner{
  display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 48px;
  padding: 56px 32px 64px;
}
.mega-col-title{
  display: block; font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.mega-col-links ul{ display: flex; flex-direction: column; gap: 4px; }
.mega-col-links a{
  display: block; padding: 10px 0; font-family: var(--serif); font-size: 1.3rem; color: var(--navy);
  border-bottom: 1px solid var(--border); transition: color 0.3s var(--ease);
}
.mega-col-links a:hover, .mega-col-links a:focus-visible{ color: var(--gold); }
.mega-col-featured{ display: flex; flex-direction: column; gap: 16px; }
.mega-tile{
  display: flex; flex-direction: column; gap: 6px;
  background: var(--navy); color: var(--white);
  padding: 28px 26px; border-radius: var(--radius);
  transition: transform 0.3s var(--ease);
}
.mega-tile:hover{ transform: translateY(-3px); }
.mega-tile-gold{ background: var(--gold); }
.mega-tile-eyebrow{ font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.mega-tile-title{ font-family: var(--serif); font-size: 1.35rem; }
.mega-tile-arrow{ margin-top: 8px; font-size: 1.1rem; }

@media (max-width: 900px){
  .mega-panel-inner{ grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 48px; }
  .lla-mega-panel.is-open{ max-height: 100vh; overflow-y: auto; }
  .header-search-label{ display: none; }
}

/* =========================================================
   3f. FLOATING CTA PILL
   ========================================================= */
.lla-floating-cta{
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  background: var(--gold); color: var(--navy-deep);
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(6,21,48,0.28);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lla-floating-cta:hover{ background: var(--gold-light); transform: translateY(-2px); }
@media (max-width: 600px){ .lla-floating-cta{ right: 16px; bottom: 16px; padding: 12px 20px; } }

/* =========================================================
   4. HERO — FULL SCREEN VIDEO/IMAGE
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.hero-page{ min-height: 62vh; }
.hero-media{ position: absolute; inset: 0; z-index: 1; }
.hero-media video,
.hero-media img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay{
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(6,21,48,0.65) 0%, rgba(6,21,48,0.45) 45%, rgba(6,21,48,0.75) 100%);
}
.hero-content{
  position: relative; z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 168px 32px 80px;
  text-align: center;
}
.hero-content .eyebrow{ color: var(--gold-light); }
.hero-heading{
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  color: var(--white);
  margin-bottom: 0.35em;
}
.hero-sub{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 2.2em;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}
.hero-cta{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-cue{
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 1px; height: 46px; background: rgba(255,255,255,0.5);
}
.hero-scroll-cue::after{
  content: ""; position: absolute; top: 0; left: -3px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold-light);
  animation: hero-cue-move 2.4s var(--ease) infinite;
}
@keyframes hero-cue-move{
  0%{ top: 0; opacity: 1; } 90%{ opacity: 1; } 100%{ top: 40px; opacity: 0; }
}

/* =========================================================
   5. SECTIONS
   ========================================================= */
.section{ padding: 120px 0; }
.section-tight{ padding: 90px 0; }
.section-navy{ background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3{ color: var(--white); }
.section-navy .section-intro{ color: rgba(255,255,255,0.75); }
.section-ivory{ background: var(--ivory); }
.section-white{ background: var(--white); }
.section-header{ margin-bottom: 64px; }
.section-header.split{
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.rule{ width: 64px; height: 2px; background: var(--gold); margin: 26px auto; border: 0; }
.rule-left{ margin-left: 0; }

/* Entry content (Gutenberg) */
.entry-content{ max-width: 760px; margin: 0 auto; }
.entry-content > *:first-child{ margin-top: 0; }
.entry-content h2{ font-size: 1.9rem; margin-top: 1.6em; }
.entry-content h3{ font-size: 1.4rem; margin-top: 1.4em; }
.entry-content a{ color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote{
  border-left: 3px solid var(--gold); margin: 2em 0; padding: 0.2em 0 0.2em 28px;
  font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--navy);
}
.entry-content img{ border-radius: var(--radius); }
.entry-content .wp-block-columns{ gap: 32px; }
.page-full-width .entry-content{ max-width: var(--container); }

/* =========================================================
   6. LEADERSHIP
   ========================================================= */
.leader-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.leader-grid.leader-grid-preview{ grid-template-columns: repeat(6, 1fr); gap: 40px 24px; }
.leader-card{ text-align: left; }
.leader-photo{
  aspect-ratio: 4 / 5; overflow: hidden; background: var(--gray-light); margin-bottom: 22px;
}
.leader-photo img{ width: 100%; height: 100%; object-fit: cover; }
.leader-name{ font-size: 1.25rem; margin-bottom: 0.15em; }
.leader-position{
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.leader-bio{ color: var(--gray); font-size: 0.96rem; }
.leader-bio p:last-child{ margin-bottom: 0; }
.leader-social{ display: flex; gap: 14px; margin-top: 16px; }
.leader-social a{
  width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.leader-social a:hover{ background: var(--navy); border-color: var(--navy); color: var(--white); }
.leader-bio-full{ margin-top: 18px; }
.leader-bio-full summary{ cursor: pointer; color: var(--gold); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.leader-profile-grid{ display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
@media (max-width: 700px){ .leader-profile-grid{ grid-template-columns: 1fr; } }

@media (max-width: 1000px){
  .leader-grid, .leader-grid.leader-grid-preview{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .leader-grid, .leader-grid.leader-grid-preview{ grid-template-columns: 1fr; }
}

/* =========================================================
   7. PRIORITIES
   ========================================================= */
.priority-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.priority-card{ background: var(--white); padding: 48px 40px; }
.priority-index{ font-family: var(--serif); font-size: 0.95rem; color: var(--gold); margin-bottom: 20px; display: block; }
.priority-card h3{ font-size: 1.3rem; }
.priority-card p{ color: var(--gray); margin-bottom: 0; }
@media (max-width: 900px){ .priority-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   8. COALITION PARTNERS
   ========================================================= */
.partner-grid{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: center;
}
.partner-logo{ display: flex; align-items: center; justify-content: center; padding: 12px; filter: grayscale(1); opacity: 0.7; transition: opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.partner-logo:hover{ filter: grayscale(0); opacity: 1; }
.partner-logo img{ max-height: 56px; width: auto; }
@media (max-width: 900px){ .partner-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .partner-grid{ grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   9. NEWS
   ========================================================= */
.news-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.news-card-image{ aspect-ratio: 16/10; overflow: hidden; margin-bottom: 22px; background: var(--gray-light); }
.news-card-image img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.news-card:hover .news-card-image img{ transform: scale(1.04); }
.news-date{ font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.news-card h3{ font-size: 1.2rem; margin-bottom: 0.4em; }
.news-card p{ color: var(--gray); font-size: 0.95rem; }
@media (max-width: 900px){ .news-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   10. CTA BANDS (Join / Donate)
   ========================================================= */
.cta-band{
  position: relative; overflow: hidden; padding: 130px 0;
  background: var(--navy-deep); color: var(--white); text-align: center;
}
.cta-band .hero-media, .cta-band .hero-overlay{ position: absolute; inset: 0; }
.cta-band-content{ position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-band h2{ color: var(--white); }
.cta-band p{ color: rgba(255,255,255,0.8); }

/* =========================================================
   11. DONATE PAGE
   ========================================================= */
.donate-levels{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.donate-level{
  border: 1px solid var(--border); padding: 32px 20px; text-align: center; background: var(--white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.donate-level:hover{ border-color: var(--gold); transform: translateY(-3px); }
.donate-level .amount{ font-family: var(--serif); font-size: 1.8rem; color: var(--navy); display: block; margin-bottom: 8px; }
.donate-level .impact{ font-size: 0.88rem; color: var(--gray); }
.donate-embed{ border: 1px dashed var(--border); padding: 48px; text-align: center; color: var(--gray); background: var(--white); }
.donate-legal{ font-size: 0.82rem; color: var(--gray); border-top: 1px solid var(--border); margin-top: 60px; padding-top: 30px; }
@media (max-width: 900px){ .donate-levels{ grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   12. JOIN / CONTACT FORM
   ========================================================= */
.lla-form{ max-width: 640px; margin: 0 auto; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full{ grid-template-columns: 1fr; }
.lla-form label{ display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.lla-form input, .lla-form textarea, .lla-form select{
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); color: var(--ink); transition: border-color 0.3s var(--ease);
}
.lla-form input:focus, .lla-form textarea:focus, .lla-form select:focus{ outline: none; border-color: var(--gold); }
.lla-form textarea{ min-height: 140px; resize: vertical; }
.form-notice{ padding: 16px 20px; margin-bottom: 24px; border-radius: var(--radius); font-size: 0.92rem; }
.form-notice.success{ background: #e7f3ea; color: #1c5e2f; border: 1px solid #bfe0c8; }
.form-notice.error{ background: #fbeaea; color: #8a2020; border: 1px solid #f0c4c4; }
@media (max-width: 640px){ .form-row{ grid-template-columns: 1fr; } }

/* =========================================================
   13. SITE FOOTER
   ========================================================= */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,0.75); padding-top: 90px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img{ max-height: 40px; margin-bottom: 20px; }
.footer-brand p{ font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.footer-col h4{ color: var(--white); font-size: 0.95rem; margin-bottom: 20px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{ font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color 0.3s var(--ease); }
.footer-col a:hover{ color: var(--gold-light); }
.footer-social{ display: flex; gap: 12px; margin-top: 8px; }
.footer-social a{
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
.footer-bottom a{ color: rgba(255,255,255,0.5); }
.footer-bottom a:hover{ color: var(--gold-light); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   14. ARCHIVES / BLOG / SEARCH / 404
   ========================================================= */
.page-hero-title{ font-size: clamp(2.2rem, 4.4vw, 3.4rem); color: var(--white); }
.pagination{ display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
.pagination a, .pagination span{
  min-width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); font-size: 0.85rem;
}
.pagination .current{ background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination a:hover{ border-color: var(--gold); }
.not-found{ text-align: center; padding: 60px 0; }
.search-form-wrap{ max-width: 520px; margin: 40px auto 0; display: flex; gap: 10px; }
.search-form-wrap input[type="search"]{ flex: 1; padding: 14px 18px; border: 1px solid var(--border); }
.comment-list{ margin-top: 40px; }
.comment-body{ padding: 24px 0; border-bottom: 1px solid var(--border); }
.comment-respond{ margin-top: 50px; }

/* =========================================================
   15. UTILITIES / ACCESSIBILITY / REDUCED MOTION
   ========================================================= */
.visually-hidden{ position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   17. DONATION POPUP
   ========================================================= */
.lla-popup{
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lla-popup.is-visible{ opacity: 1; visibility: visible; }
.lla-popup-backdrop{
  position: absolute; inset: 0; background: rgba(6,21,48,0.72);
}
.lla-popup-panel{
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: var(--ivory);
  border-top: 3px solid var(--gold);
  padding: 48px 40px 40px;
  text-align: center;
  transform: translateY(16px);
  transition: transform 0.35s var(--ease);
}
.lla-popup.is-visible .lla-popup-panel{ transform: translateY(0); }
.lla-popup-panel h2{ font-size: 1.6rem; margin-bottom: 0.5em; }
.lla-popup-panel p{ color: var(--gray); font-size: 0.95rem; }
.lla-popup-close{
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border: 0; background: transparent;
  font-size: 1.6rem; line-height: 1; color: var(--gray);
}
.lla-popup-close:hover{ color: var(--navy); }
.lla-popup-dismiss{
  display: block; margin: 14px auto 0; background: none; border: 0;
  font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray);
  text-decoration: underline; text-underline-offset: 3px;
}
.lla-popup-dismiss:hover{ color: var(--navy); }
@media (max-width: 480px){
  .lla-popup-panel{ padding: 40px 26px 32px; }
}

/* Print */
@media print{
  .site-header, .mobile-nav-overlay, .hero-media video, .site-footer{ display: none !important; }
}

/* =========================================================
   16. MOBILE FINE-TUNING
   ========================================================= */
@media (max-width: 600px){
  .container{ padding: 0 20px; }
  .section{ padding: 70px 0; }
  .section-tight{ padding: 56px 0; }
  .hero-content{ padding: 130px 20px 60px; }
  .hero-page .hero-content{ padding-top: 118px; }
  .cta-band{ padding: 80px 0; }
  .section-header{ margin-bottom: 40px; }
  .section-header.split{ align-items: flex-start; }
  .priority-card{ padding: 36px 24px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .lla-mega-panel a{ font-size: 1.15rem; }
  .header-utility-nav a{ font-size: 0.72rem; padding: 0 12px; }
}
