/* ============================================================
   Precision Industrial Theme – Main Stylesheet
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --navy:       #0d1f3c;
  --blue:       #1a4a8a;
  --mid-blue:   #2563a8;
  --steel:      #4a6fa5;
  --light-blue: #7ba3d0;
  --sky:        #c8dff5;
  --gray-dark:  #2d3748;
  --gray:       #4a5568;
  --gray-mid:   #718096;
  --gray-light: #e2e8f0;
  --gray-ultra: #f7fafc;
  --white:      #ffffff;
  --accent:     #e85d04;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--mid-blue); }

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: #aac4e8;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.topbar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #aac4e8; text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar .contact-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ─── HEADER ─────────────────────────────────────────────── */
#site-header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(13,31,60,0.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon span {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo-text span { color: var(--mid-blue); }
/* Custom logo image support */
.custom-logo-link img { height: 60px; width: auto; }

/* Navigation */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
#primary-nav a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
  white-space: nowrap;
}
#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--mid-blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}
#primary-nav a:hover { color: var(--blue); }
#primary-nav a:hover::after { transform: scaleX(1); }
#primary-nav a.active,
#primary-nav a.current-menu-item { color: var(--blue); }
#primary-nav a.active::after,
#primary-nav a.current-menu-item::after { transform: scaleX(1); }

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  border-radius: 4px !important;
  padding: 10px 20px !important;
  margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--mid-blue) 100%);
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.hero-content {
  max-width: 560px;
  padding: 80px 24px 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--sky);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--sky);
  display: block;
}
.hero > .hero-content > p {
  color: rgba(200,223,245,0.85);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--white);
  color: var(--blue);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); color: var(--blue); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); color: var(--white); }

.btn-blue {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
  transition: all 0.2s;
  margin-top: 12px;
}
.btn-blue:hover { background: var(--navy); transform: translateY(-2px); color: white; }

/* Hero visual – animated gears */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  z-index: 2;
}
.hero-diagram { width: 340px; height: 340px; position: relative; }
.gear {
  position: absolute;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.15);
}
.gear-1 { width:200px; height:200px; top:40px; left:40px; border-color:rgba(255,255,255,0.25); animation: spin 20s linear infinite; }
.gear-2 { width:120px; height:120px; top:20px; right:20px; border-color:rgba(200,223,245,0.3); animation: spin 12s linear infinite reverse; }
.gear-3 { width:80px; height:80px; bottom:40px; left:20px; border-color:rgba(200,223,245,0.2); animation: spin 8s linear infinite; }
.gear-center {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:80px; height:80px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif;
  font-size:28px; font-weight:800; color:white;
  border:2px solid rgba(255,255,255,0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--gray-dark); }
.stats-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #718096;
  margin-top: 6px;
  display: block;
}

/* ─── SECTION COMMON ─────────────────────────────────────── */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  color: var(--mid-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mid-blue);
  margin-bottom: 16px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.section-header p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-top: 14px;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services { background: var(--gray-ultra); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border: 2px solid var(--gray-light);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--mid-blue);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,31,60,0.12); z-index: 2; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--mid-blue));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mid-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--blue); }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 8px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 30px);
  pointer-events: none;
}
.about-badge-wrap { text-align: center; position: relative; z-index: 2; }
.years-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 110px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.circle-badge {
  width: 160px; height: 160px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
}
.circle-badge strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.circle-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-content ul {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}
.about-content ul li::before {
  content: '▸';
  color: var(--mid-blue);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-page-content p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ─── SECTORS ────────────────────────────────────────────── */
.sectors { background: var(--navy); }
.sectors .section-tag { color: var(--sky); border-color: var(--sky); }
.sectors h2 { color: white; }
.sectors .section-header p { color: rgba(200,223,245,0.7); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.sector-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,223,245,0.4);
  transform: translateY(-4px);
}
.sector-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.sector-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sector-card p { color: rgba(200,223,245,0.6); font-size: 13px; line-height: 1.6; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(90deg, var(--mid-blue) 0%, var(--blue) 50%, var(--navy) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: 16px; position: relative; z-index: 2; }
.cta-banner p { color: rgba(200,223,245,0.8); font-size: 17px; margin-bottom: 32px; position: relative; z-index: 2; }
.cta-btns { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 2; flex-wrap: wrap; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { background: var(--gray-ultra); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-info > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.contact-item-text span { color: var(--gray-dark); font-size: 15px; }
.contact-item-text a { color: var(--mid-blue); text-decoration: none; }
.contact-item-text a:hover { text-decoration: underline; }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--gray-dark);
  background: var(--gray-ultra);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mid-blue);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--navy); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message {
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  color: rgba(200,223,245,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: white; }
.footer-brand .logo-icon { background: rgba(255,255,255,0.15); }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(200,223,245,0.6);
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(200,223,245,0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(200,223,245,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: rgba(200,223,245,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(200,223,245,0.8); }

/* ─── INNER PAGES ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 24px;
}
.page-hero .container { position: relative; }
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.page-hero .section-tag { border-color: var(--sky); color: var(--sky); }
.breadcrumb { margin-top: 14px; color: rgba(200,223,245,0.6); font-size: 14px; }
.breadcrumb a { color: rgba(200,223,245,0.7); text-decoration: none; }
.post-meta { color: rgba(200,223,245,0.6); font-size: 14px; margin-top: 10px; display: flex; gap: 16px; flex-wrap: wrap; }

.page-content-wrap { padding: 60px 0 80px; }
.page-content-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.page-content-grid:has(.sidebar) { grid-template-columns: 1fr 320px; }
.site-main .entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
}
.site-main .entry-content h2,
.site-main .entry-content h3 { margin: 32px 0 16px; color: var(--navy); }
.site-main .entry-content p { margin-bottom: 20px; }
.site-main .entry-content ul,
.site-main .entry-content ol { margin: 0 0 20px 24px; }
.site-main .entry-content li { margin-bottom: 8px; }
.page-featured-image { margin-bottom: 36px; border-radius: 6px; overflow: hidden; }
.page-featured-image img { width: 100%; height: auto; }

.post-tags { margin-top: 32px; }
.tag-list a {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin: 4px 4px 4px 0;
  transition: background 0.2s;
}
.tag-list a:hover { background: var(--mid-blue); color: white; }

.post-navigation { margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--gray-light); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 20px; }
.post-navigation a { color: var(--mid-blue); font-weight: 600; font-size: 14px; text-decoration: none; }
.post-navigation a:hover { color: var(--navy); }

/* Sidebar */
.sidebar { padding: 0; }
.sidebar .widget { background: var(--gray-ultra); padding: 24px; border-radius: 6px; margin-bottom: 24px; }
.sidebar .widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mid-blue);
}
.sidebar ul { list-style: none; }
.sidebar ul li { padding: 8px 0; border-bottom: 1px solid var(--gray-light); font-size: 14px; }
.sidebar ul li:last-child { border-bottom: none; }
.sidebar ul li a { color: var(--gray-dark); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.sidebar ul li a:hover { color: var(--mid-blue); }

/* Archive */
.archive-section { padding: 60px 0 80px; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.archive-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s; }
.archive-card:hover { box-shadow: 0 8px 30px rgba(13,31,60,0.1); }
.archive-card-thumb img { width: 100%; height: 200px; object-fit: cover; }
.archive-card-body { padding: 24px; }
.archive-card-date { font-size: 12px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.1em; }
.archive-card-title { margin: 8px 0 12px; }
.archive-card-title a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.archive-card-title a:hover { color: var(--mid-blue); }
.archive-card-body p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 0; }
.pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--blue); color: white; border-color: var(--blue); }
.no-results { color: var(--gray); font-size: 16px; padding: 40px 0; text-align: center; }

/* Comments */
.comments-area { margin-top: 48px; padding-top: 32px; border-top: 2px solid var(--gray-light); }
.comments-area .comments-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}
.comments-area .comment-form-comment label { display: block; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 8px; }
.comments-area .comment-form-comment textarea,
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"] {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-light); border-radius: 4px;
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--gray-dark); background: var(--gray-ultra);
  transition: border-color 0.2s; outline: none; margin-bottom: 16px;
}
.comments-area .submit {
  background: var(--blue); color: white; border: none; padding: 12px 28px;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; border-radius: 3px; cursor: pointer; transition: all 0.2s;
}
.comments-area .submit:hover { background: var(--navy); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-visual   { animation: fadeUp 0.8s ease 0.2s both; }

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

@media ( max-width: 768px ) {
  /* Nav mobile */
  .nav-toggle { display: flex; }
  #primary-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    border-top: 3px solid var(--blue);
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  #primary-nav.open { display: flex; }
  #primary-nav a { width: 100%; }
  .nav-cta { margin-left: 0; }
  #site-header { position: relative; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 24px; max-width: 100%; }

  /* Stats */
  .stats-bar .inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 220px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Archive */
  .archive-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Content grid */
  .page-content-grid { grid-template-columns: 1fr !important; }
}

@media ( max-width: 480px ) {
  .stats-bar .inner { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .topbar .inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar .contact-links { flex-direction: column; gap: 4px; }
}
