/*
Theme Name: Blue Byte Advisory
Theme URI: https://bluebyteadvisory.com
Author: Blue Byte Advisory
Author URI: https://bluebyteadvisory.com
Description: A clean, professional theme for mission-driven organizations. Features navy, sky blue, and gold brand colors with Inter font family. Includes page templates for Home, About, Services, Collaborators, Partners, Contact, Careers, and Case Study pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bluebyte
Tags: custom-menu, custom-logo, featured-images, one-column, two-columns, translation-ready
*/

/* ============================================
   BLUE BYTE ADVISORY — Global Stylesheet
   Brand: Deep navy, sky blue accents, warm gold
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F2B4C;
  --blue: #1B5E8A;
  --sky: #2A8FC1;
  --light-blue: #E8F4FA;
  --gold: #D4960A;
  --warm-gold: #E8AD2B;
  --light-gold: #FDF6E3;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --text: #2D3436;
  --text-light: #636E72;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* --- Navigation --- */
.site-nav {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-brand:hover { color: var(--white); }
.nav-brand span.accent { color: var(--sky); }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links li { list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.cta-link {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
}
.nav-links a.cta-link:hover { background: var(--warm-gold); color: var(--white); }
.nav-links a.cta-link.active { background: var(--warm-gold); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,143,193,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 700px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 620px; line-height: 1.8; }

/* Hero labels */
.hero .label,
.hero .hero-label,
.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm-gold);
  margin-bottom: 16px;
}

/* Hero buttons */
.hero-buttons,
.btn-group {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Page-level hero (shorter) */
.hero-page { padding: 70px 0 50px; }
.hero-page h1 { font-size: 2.25rem; }

/* Hero content wrapper */
.hero-content { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--warm-gold); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--blue); color: var(--white); }
.btn-full-width { width: 100%; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
section { padding: 80px 0; }
.section-alt,
section.section-alt { background: var(--off-white); padding: 80px 0; }
.section-blue { background: var(--light-blue); padding: 80px 0; }
.section-navy { background: var(--navy); color: var(--white); padding: 60px 0; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }

/* Section headers */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header .label,
.section-header .section-label,
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-intro { color: var(--text-light); font-size: 1.05rem; max-width: 700px; margin-bottom: 32px; }

/* Intro paragraph */
.intro-paragraph {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  line-height: 1.8;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid,
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card,
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.card:hover,
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card .icon,
.card .card-icon,
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: var(--light-blue);
  color: var(--blue);
}
.card h3 { font-size: 1.2rem; }
.card p,
.service-card p { color: var(--text-light); font-size: 0.95rem; }
.card-subtitle { color: var(--gold) !important; font-weight: 600; font-size: 0.85rem !important; text-transform: uppercase; letter-spacing: 0.5px; }

/* Gold accent top border card */
.card-accent { border-top: 3px solid var(--gold); }
.card-value { border-top: 3px solid var(--sky); }

/* ============================================
   COLLABORATOR CARDS
   ============================================ */
.collab-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.collab-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.collab-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.collab-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 28px 28px 20px;
  color: var(--white);
}
.collab-card-header h3 { color: var(--white); margin-bottom: 4px; font-size: 1.25rem; }
.collab-card-header .role,
.collab-card-header .collab-role {
  color: var(--warm-gold);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.collab-card-body { padding: 24px 28px 16px; flex: 1; }
.collab-card-body p { color: var(--text-light); font-size: 0.95rem; }

.collab-tags,
.collab-card-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 28px 24px; }
.collab-tag,
.tag {
  background: var(--light-blue);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================
   PARTNER CARDS
   ============================================ */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1140px; margin: 0 auto; }
.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); transform: translateY(-3px); }
.partner-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.partner-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.6; }
.partner-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 auto 16px;
  letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIAL / QUOTE
   ============================================ */
.quote-block {
  background: var(--light-gold);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.quote-block p { font-style: italic; font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.quote-block .attribution { font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--gold); }

.testimonial-section { padding: 60px 0; background: var(--off-white); }
.testimonial-block {
  background: var(--light-gold);
  border-left: 4px solid var(--gold);
  padding: 36px 40px;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-text { font-style: italic; font-size: 1.1rem; color: var(--text); line-height: 1.8; margin-bottom: 12px; }
.testimonial-attribution { font-weight: 600; font-size: 0.9rem; color: var(--gold); margin: 0; }

/* Quote section */
.quote-section { padding: 60px 0; background: var(--off-white); }
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.quote-container blockquote {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}
.quote-source { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* ============================================
   STATS ROW
   ============================================ */
.stats-row,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
  padding: 20px 0;
  max-width: 1140px;
  margin: 0 auto;
}
.stat-item { padding: 16px 8px; }
.stat-item .number,
.stat-item .stat-number,
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--warm-gold);
  margin-bottom: 4px;
}
.stat-item .label,
.stat-item .stat-label,
.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}
.section-navy .stat-item .label,
.section-navy .stat-item .stat-label,
.section-navy .stat-label,
.section-navy .stat-number { color: rgba(255,255,255,0.85); }
.section-navy .stat-number { color: var(--warm-gold); }

/* ============================================
   PHASED APPROACH
   ============================================ */
.phases,
.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.phase,
.phase-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.phase:hover,
.phase-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--warm-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  min-width: 32px;
  min-height: 32px;
}
.phase h3,
.phase-card h3 { font-size: 1.1rem; }
.phase p,
.phase-card p { font-size: 0.9rem; color: var(--text-light); }
.phase .timeline,
.phase-timeline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 12px;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { color: var(--text-light); }
.two-col-visual,
.visual-block {
  background: var(--light-blue);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.visual-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 2;
}
.placeholder-visual {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

/* Service detail blocks */
.service-detail { margin-top: 24px; }
.service-detail h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.service-detail p { font-size: 0.95rem; color: var(--text-light); }

/* ============================================
   ABOUT PAGE — Founder section
   ============================================ */
.about-founder { padding: 80px 0; }
.founder-visual {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-initials {
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
  opacity: 0.9;
}
.subtitle {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Values section */
.values-section { padding: 80px 0; background: var(--light-blue); }

/* ============================================
   FEATURE LIST
   ============================================ */
ul.feature-list { list-style: none; }
ul.feature-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}
ul.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Feature list as divs */
div.feature-list { max-width: 700px; }
.feature-item {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.feature-item:last-child { border-bottom: none; }
.feature-item::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.feature-item h3 { font-size: 1rem; font-weight: 600; margin: 0; color: var(--text); }

/* Featured section wrapper */
section.featured { padding: 80px 0; }
section.featured-orgs { padding: 80px 0; background: var(--off-white); }

/* Additional networks */
section.additional-networks { padding: 80px 0; }
section.additional-networks h2 { margin-bottom: 16px; }
section.additional-networks p { color: var(--text-light); font-size: 1.05rem; max-width: 800px; line-height: 1.8; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form { max-width: 100%; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(42,143,193,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- Contact Form 7 Styling --- */
.contact-form-wrapper .wpcf7 { max-width: 100%; }
.contact-form-wrapper .wpcf7-form p {
  margin-bottom: 20px;
}
.contact-form-wrapper .wpcf7-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form textarea,
.contact-form-wrapper .wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
  box-sizing: border-box;
}
.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form textarea:focus,
.contact-form-wrapper .wpcf7-form select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(42,143,193,0.1);
}
.contact-form-wrapper .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-wrapper .wpcf7-form input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
  background: var(--warm-gold);
  transform: translateY(-1px);
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 4px;
}
.contact-form-wrapper .wpcf7-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.contact-form-wrapper .wpcf7-form.sent .wpcf7-response-output {
  border-color: #27ae60;
  color: #27ae60;
  background: rgba(39,174,96,0.05);
}
.contact-form-wrapper .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #e74c3c;
  color: #e74c3c;
  background: rgba(231,76,60,0.05);
}

.contact-info h3 { margin-bottom: 16px; margin-top: 0; }
.contact-info-section { margin-bottom: 32px; }
.contact-details p { margin-bottom: 12px; }
.contact-details strong { color: var(--navy); }
.brand-links { list-style: none; }
.brand-links li { margin-bottom: 8px; }
.brand-links a { font-weight: 500; }

/* CTA content wrapper */
.cta-content { max-width: 700px; margin: 0 auto; text-align: center; }
.section-navy .cta-content h2 { color: var(--white); }
.section-navy .cta-content p { color: rgba(255,255,255,0.8); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto 24px; }

/* ============================================
   CASE STUDY TABLE
   ============================================ */
.arc-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.arc-table th { background: var(--navy); color: #fff; text-align: left; padding: 14px 20px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.arc-table td { padding: 16px 20px; font-size: 0.95rem; border-bottom: 1px solid var(--gray-200); }
.arc-table tr:last-child td { border-bottom: none; }
.arc-table tr:nth-child(even) { background: var(--off-white); }
.arc-table td:first-child { font-weight: 600; color: var(--blue); width: 180px; }

/* Content sections (case study) */
.content-section { padding: 80px 0; }
.findings-section { margin-bottom: 32px; }
.findings-section h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.findings-section p { color: var(--text-light); font-size: 0.95rem; }
.principles-group { margin-bottom: 28px; }
.principles-group h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.principles-group p { color: var(--text-light); font-size: 0.95rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-simple { margin-bottom: 40px; }
.footer-links-inline { display: flex; gap: 20px; margin-top: 16px; }
.footer-links-inline a { color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 500; }
.footer-links-inline a:hover { color: var(--warm-gold); }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--sky); }
.site-footer p { font-size: 0.9rem; line-height: 1.7; }
.site-footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links a:hover { color: var(--warm-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom .tagline { color: var(--warm-gold); font-weight: 600; }

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img { border-radius: var(--radius); }
.entry-content { padding: 60px 0; }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-top: 1.5rem; }

/* Screen reader text (accessibility) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  h1 { font-size: 2rem; }
  .hero { padding: 70px 0 50px; }
  .section,
  section { padding: 56px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 10px 14px; }
  .card-grid,
  .cards-grid { grid-template-columns: 1fr; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .phases,
  .phase-grid { grid-template-columns: 1fr; }
  .stats-row,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .partner-grid { grid-template-columns: 1fr; }
  .hero-buttons,
  .btn-group { flex-direction: column; }
  .hero-buttons .btn,
  .btn-group .btn { width: 100%; text-align: center; }
}
