/*
Theme Name: Kenya Veterans for Peace
Theme URI: https://kenyaveteransforpeace.org
Author: KVP Web Team
Author URI: https://kenyaveteransforpeace.org
Description: Official website theme for Kenya Veterans for Peace — a nonprofit organization of former military and security personnel committed to nonviolence, conflict resolution, and peacebuilding across Kenya.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kvp
Tags: nonprofit, peace, veterans, kenya, custom-colors, custom-logo, featured-images, full-width-template, responsive-layout
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:        #1B2A6B;
  --navy-dark:   #0D1A3E;
  --navy-mid:    #2A3F8F;
  --gold:        #C8973A;
  --gold-light:  #F5E6C8;
  --gold-dark:   #9A7020;
  --red:         #BE0000;
  --green:       #006600;
  --white:       #FFFFFF;
  --offwhite:    #F7F5F0;
  --border:      #E8E6E0;
  --text:        #1a1a2e;
  --muted:       #5a5a7a;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(27, 42, 107, 0.10);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }
input, select, textarea { font-family: var(--sans); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--navy-dark);
  line-height: 1.2;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem);   font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { font-size: 0.93rem; color: var(--muted); line-height: 1.75; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  font-family: var(--sans);
  margin-bottom: 0.4rem;
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 4.5rem 0; }
.section--alt { background: var(--offwhite); }
.section--dark { background: var(--navy-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p  { color: rgba(255,255,255,0.65); }
.section--dark .eyebrow { color: var(--gold); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-desc { max-width: 580px; margin-bottom: 0; }
.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}
.view-all:hover { color: var(--gold-dark); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn--gold   { background: var(--gold); color: var(--navy-dark); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--navy   { background: var(--navy-dark); color: #fff; }
.btn--navy:hover { background: var(--navy); }
.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn--border { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); font-size: 12px; padding: 7px 16px; }
.btn--border:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  max-width: 1240px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-logo img {
  height: 46px; width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-logo-text { color: #fff; font-family: var(--serif); font-size: 14px; font-weight: 600; line-height: 1.25; }
.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-top: 2px;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 400;
  padding: 7px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 600 !important;
  margin-left: 8px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: 0.3s; }

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.slides-track {
  display: flex;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
.slide {
  min-width: 100%;
  height: 540px;
  position: relative;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.42);
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,26,62,0.88) 38%, rgba(13,26,62,0.25) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  width: fit-content;
  font-family: var(--sans);
}
.hero-content h1 { color: #fff; margin-bottom: 1rem; }
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content p  { color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 2rem; font-weight: 300; font-size: 1rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.slide-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.35); }

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(13,26,62,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 42px; height: 42px;
  border-radius: 50%; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.slide-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.arrow-prev { left: 22px; }
.arrow-next { right: 22px; }

/* ============================================================
   TAGLINE BAR
   ============================================================ */
.tagline-bar {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 11px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy-dark);
}
.stat-cell {
  padding: 1.8rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  border-top: 3px solid var(--navy);
  transition: box-shadow 0.25s, transform 0.25s;
}
.program-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.program-card.gold  { border-top-color: var(--gold); }
.program-card.red   { border-top-color: var(--red); }
.program-card.green { border-top-color: var(--green); }

.card-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.card-icon.gold  { background: var(--gold-dark); }
.card-icon.red   { background: var(--red); }
.card-icon.green { background: var(--green); }
.card-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.program-card h3 { font-size: 1rem; margin-bottom: 8px; }
.program-card p  { font-size: 0.85rem; }
.card-stat {
  font-size: 11px; color: var(--navy); font-weight: 600;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============================================================
   STORY CARDS
   ============================================================ */
.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.story-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.story-thumb {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: var(--navy-dark);
}
.story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.story-card:hover .story-thumb img { transform: scale(1.04); }
.story-thumb .story-avatar {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.story-avatar-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--navy-dark);
}
.story-county {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.story-body { padding: 1.1rem 1.3rem; }
.story-body h3 { font-size: 0.95rem; margin-bottom: 6px; }
.story-body p  { font-size: 0.82rem; margin-bottom: 12px; }
.read-more {
  font-size: 11px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 1px;
}
.read-more:hover { color: var(--gold-dark); }

/* ============================================================
   NEWS
   ============================================================ */
.news-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex; gap: 18px; align-items: flex-start;
  transition: box-shadow 0.2s;
}
.news-item:hover { box-shadow: var(--shadow); }
.news-date-box {
  min-width: 56px; text-align: center;
  background: var(--navy-dark); color: #fff;
  border-radius: 4px; padding: 8px 4px; flex-shrink: 0;
}
.news-date-box .day {
  font-family: var(--serif); font-size: 1.6rem;
  font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.news-date-box .month {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.6);
}
.news-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  padding: 2px 9px; border-radius: 2px;
  background: var(--gold-light); color: var(--gold-dark);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.07em;
}
.news-info h3 { font-size: 0.93rem; margin-bottom: 5px; }
.news-info p  { font-size: 0.82rem; }

/* ============================================================
   EVENTS
   ============================================================ */
.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: var(--shadow); }
.ev-date {
  font-size: 11px; color: var(--gold-dark); font-weight: 600;
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.08em;
}
.event-card h3 { font-size: 0.92rem; margin-bottom: 6px; }
.event-card p  { font-size: 0.82rem; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.res-icon {
  width: 44px; height: 44px; background: var(--gold-light);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.res-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.resource-card h3 { font-size: 0.92rem; }
.resource-card p  { font-size: 0.82rem; flex: 1; }

/* ============================================================
   ABOUT / VALUES / TEAM
   ============================================================ */
.values-list { display: flex; flex-direction: column; gap: 12px; margin-top: 0.5rem; }
.value-item {
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.value-item p strong { color: var(--navy-dark); display: block; margin-bottom: 3px; font-size: 0.9rem; }
.value-item p        { font-size: 0.84rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.team-card {
  text-align: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.3rem 0.8rem;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--gold);
}
.team-card h4 { font-size: 0.86rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 3px; font-family: var(--sans); }
.team-card p  { font-size: 0.75rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }

.contact-form-wrap .form-group { margin-bottom: 16px; }
.contact-form-wrap label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--navy-dark); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 5px;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%; border: 1.5px solid #ddd; border-radius: 4px;
  padding: 10px 13px; font-size: 14px;
  color: var(--text); background: #fff;
  outline: none; transition: border-color 0.2s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus { border-color: var(--navy); }
.contact-form-wrap textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--navy-dark); color: #fff;
  border-radius: var(--radius); padding: 2rem;
  border-top: 3px solid var(--gold);
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1.5rem; }
.c-detail { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.c-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,151,58,0.3);
}
.c-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.c-text strong { display: block; color: #fff; font-weight: 500; font-size: 13px; margin-bottom: 2px; }
.social-row { display: flex; gap: 9px; margin-top: 1.5rem; }
.soc-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); }
.soc-btn svg { width: 15px; height: 15px; fill: #fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-dark);
  color: #fff;
  padding: 54px 0 46px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 { color: #fff; margin-bottom: 0.6rem; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 540px; font-weight: 300; font-size: 0.97rem; }

/* Breadcrumbs */
.breadcrumbs {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.breadcrumbs a { color: rgba(255,255,255,0.55); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-content {
  max-width: 740px;
}
.post-content h2,
.post-content h3 { margin: 1.5rem 0 0.6rem; }
.post-content p   { margin-bottom: 1rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1rem 1.5rem; }
.post-content li  { margin-bottom: 0.4rem; font-size: 0.93rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.footer-brand-logo img { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.footer-brand-logo span { color: #fff; font-family: var(--serif); font-size: 15px; font-weight: 600; line-height: 1.3; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.55); }
.footer-tagline { color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; margin-top: 8px; }
#site-footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; font-weight: 600; font-family: var(--sans); }
#site-footer ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
#site-footer ul li a:hover { color: #fff; }
#site-footer ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   WPCF7 CONTACT FORM 7 OVERRIDES
   ============================================================ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%; border: 1.5px solid #ddd; border-radius: 4px;
  padding: 10px 13px; font-size: 14px; font-family: var(--sans);
  color: var(--text); outline: none; transition: border-color 0.2s;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--navy); }
.wpcf7 textarea { resize: vertical; min-height: 120px; }
.wpcf7 input[type="submit"] {
  background: var(--navy-dark); color: #fff;
  padding: 12px 28px; font-size: 14px; font-weight: 600;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-family: var(--sans); transition: background 0.2s;
}
.wpcf7 input[type="submit"]:hover { background: var(--navy); }

/* ============================================================
   GUTENBERG / BLOCK EDITOR
   ============================================================ */
.wp-block-image img { border-radius: var(--radius); }
.wp-block-quote { border-left: 4px solid var(--gold); padding-left: 1.5rem; font-style: italic; }
.wp-block-pullquote { border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--navy-dark);
  padding: 8px 16px; border-radius: 3px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; align-items: stretch; gap: 2px; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 1.5rem; border-bottom: 3px solid var(--gold); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 1.5rem; max-width: 100%; }
  .slide { height: 400px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .page-hero { padding: 36px 0 30px; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy-dark); }
.text-muted  { color: var(--muted); }
.text-white  { color: #fff; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
