/*
Theme Name: Seaforged
Theme URI: https://seaforged.io
Author: Seaforged
Author URI: https://seaforged.io
Description: Dark theme for Seaforged — AI-powered drone technology, NDAA-compliant systems, and field-proven solutions.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seaforged
*/

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A1628;
  --navy-mid: #0F1F38;
  --navy-light: #162A4A;
  --steel: #1E3A5F;
  --slate: #3D5A80;
  --sky: #5B9BD5;
  --cyan: #00B4D8;
  --cyan-glow: rgba(0,180,216,0.15);
  --orange: #E8893C;
  --white: #F0F4F8;
  --text-primary: #E8ECF2;
  --text-secondary: #8A9BBF;
  --text-dim: #5A6B8A;
  --border: rgba(91,155,213,0.12);
  --border-hover: rgba(0,180,216,0.35);
}

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

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(91,155,213,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,155,213,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
/* Ambient glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(0,180,216,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 70%, rgba(91,155,213,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 50% 90%, rgba(232,137,60,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ═══ NAVIGATION ═══ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo .nav-brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.nav-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-glow);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all 0.25s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(91,155,213,0.08);
}
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: var(--navy) !important;
  font-weight: 600;
  margin-left: 8px;
  border-radius: 6px;
}
.nav-links .nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--navy);
}

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

/* ═══ LABELS ═══ */
.label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: inline-block;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,180,216,0.25); color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid rgba(91,155,213,0.3);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--text-primary); }
.btn-dark {
  background: var(--navy-light);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--border-hover); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══ SECTIONS ═══ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-alt { background: var(--navy-mid); }
.text-center { text-align: center; }

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ═══ HERO ═══ */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(0,180,216,0.03) 60deg, transparent 120deg);
  animation: heroSweep 20s linear infinite;
  pointer-events: none;
}
@keyframes heroSweep { to { transform: rotate(360deg); } }

.hero-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 24px rgba(0,180,216,0.15));
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .accent { color: var(--cyan); }
.hero .subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero .btn-group { justify-content: center; }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg { opacity: 0.5; }

/* ═══ CAPABILITY CARDS ═══ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cap-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  opacity: 0;
  transition: opacity 0.3s;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0,180,216,0.08);
}
.cap-card:hover::before { opacity: 1; }
.cap-card svg { margin-bottom: 16px; }
.cap-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.cap-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

/* ═══ SPOTLIGHT / FEATURE BOX ═══ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spotlight-reverse { direction: rtl; }
.spotlight-reverse > * { direction: ltr; }
.spotlight-text .label { margin-bottom: 16px; }
.spotlight-text h2 { font-size: 42px; margin-bottom: 16px; }
.spotlight-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.spotlight-text .detail-line { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }
.spotlight-visual { display: flex; align-items: center; justify-content: center; }

.glow-card {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
  width: 100%;
  max-width: 400px;
}
.glow-card:hover { border-color: var(--border-hover); }
.glow-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--cyan) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.4s;
}
.glow-card:hover::before { opacity: 1; }
.glow-card img { max-height: 160px; width: auto; margin: 0 auto 16px; }
.glow-card .glow-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.glow-card .glow-sub {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
}
.stat-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ═══ INDUSTRY GRID ═══ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: linear-gradient(160deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.industry-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.ind-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(0,180,216,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.industry-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

/* ═══ PRODUCT STRIP ═══ */
.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prod-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.25s, border-color 0.3s;
}
.prod-card:hover { transform: translateY(-2px); border-color: var(--border-hover); }
.prod-card .prod-img {
  width: 52px; height: 52px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}
.prod-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.prod-card .prod-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ═══ PRODUCT CARDS (products page) ═══ */
.cards-grid { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0,180,216,0.08);
}
.card:hover::before { opacity: 1; }

.card-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.card h3 { font-size: 20px; font-weight: 600; margin: 6px 0 10px; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

.product-card { display: flex; flex-direction: column; }
.product-card p { flex: 1; margin-bottom: 18px; }
.product-card .btn { align-self: flex-start; }
.product-img {
  width: 100px; height: 100px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 12px;
}

/* ═══ SERVICE BLOCKS ═══ */
.service-block {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.service-block:hover { border-color: var(--border-hover); }
.service-block:last-child { margin-bottom: 0; }
.service-content { flex: 1 1 380px; }
.service-content .service-icon { margin-bottom: 12px; }
.service-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.service-content p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); font-weight: 300; }
.service-caps {
  flex: 0 0 220px;
  background: var(--navy-light);
  border-radius: 8px;
  padding: 18px 22px;
  border: 1px solid var(--border);
}
.service-caps h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.service-caps li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.service-caps li:last-child { border-bottom: none; }

/* ═══ PAGE HEADER ═══ */
.page-header {
  padding: 100px 0 72px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-top: 8px;
}
.page-header .section-subtitle {
  margin: 14px auto 0;
  color: var(--text-secondary);
}

/* ═══ ABOUT LAYOUT ═══ */
.about-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-content { flex: 1 1 400px; }
.about-content p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; color: var(--text-secondary); font-weight: 300; }
.about-content em { color: var(--cyan); font-style: italic; }
.about-portrait { flex: 0 0 300px; text-align: center; }
.about-portrait img { width: 260px; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.portrait-caption { margin-top: 16px; font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.portrait-caption strong { color: var(--text-primary); font-size: 15px; display: block; margin-bottom: 4px; }

/* ═══ DIFF / VALUES CARDS ═══ */
.diff-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.diff-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.diff-card .diff-icon { font-size: 28px; margin-bottom: 8px; }
.diff-card h3 { font-size: 18px; font-weight: 600; margin: 4px 0 8px; }
.diff-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); font-weight: 300; }

/* ═══ NDAA SECTION ═══ */
.ndaa-section {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ndaa-section img { height: 100px; width: auto; }

/* ═══ CONTACT FORM ═══ */
.contact-layout { display: flex; gap: 48px; flex-wrap: wrap; }
.contact-form { flex: 1 1 400px; }
.contact-info { flex: 0 1 300px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--navy-mid);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: auto; }
.info-box {
  background: var(--navy-mid);
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.info-box h4 { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.info-box p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); }
.contact-detail { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .cd-icon { font-size: 20px; }
.contact-detail .cd-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-detail .cd-value { font-size: 15px; color: var(--text-primary); }

/* ═══ CTA SECTION ═══ */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ═══ FOOTER ═══ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
}
.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-name img { height: 32px; width: auto; }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 3px 0; }
.footer-col a { font-size: 14px; color: var(--text-dim); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: var(--text-dim); }

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero h1 { font-size: 38px; }
  .hero-logo { height: 60px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .product-strip { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; gap: 36px; }
  .spotlight-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 30px; }
  .page-header h1 { font-size: 36px; }
  .about-portrait { flex: 1 1 100%; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 80px 0 64px; }
  .hero h1 { font-size: 30px; }
  .hero .subtitle { font-size: 16px; }
  .cap-grid, .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .product-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 72px 0; }
  .trust-items { gap: 20px; }
  .contact-layout { flex-direction: column; }
  .contact-info { flex: 1 1 auto; }
  .ndaa-section { flex-direction: column; text-align: center; }
  .about-layout { flex-direction: column-reverse; }
  .about-portrait img { width: 200px; }
  .service-caps { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header { padding: 72px 0 56px; }
  .page-header h1 { font-size: 30px; }
  .spotlight-text h2 { font-size: 32px; }
}

/* ═══ WORDPRESS SPECIFIC ═══ */
.wp-block-post-content { max-width: none; padding: 0; }
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
}
