/* North Alliance Press — 2026 site refresh */

:root {
  --navy: #14264a;
  --navy-2: #1f3a6e;
  --gold: #eba415;
  --gold-2: #f5c34d;
  --ink: #1c2230;
  --muted: #5a6172;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #e6e9f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 38, 74, 0.08);
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy-2); text-decoration: none; }
a:hover { color: var(--gold); }

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

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

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 74px;
  width: auto;
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

nav.main-nav a.active,
nav.main-nav a:hover { color: var(--navy-2); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--gold-2); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, #2a4d8f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  padding: 90px 24px 100px;
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.hero .cta-row { justify-content: center; }

.hero .eyebrow {
  display: inline-block;
  background: rgba(235, 164, 21, 0.16);
  color: var(--gold-2);
  border: 1px solid rgba(235, 164, 21, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  margin: 0 auto 30px;
}

.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-blob {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(235,164,21,0.25) 0%, rgba(235,164,21,0) 70%);
  z-index: 1;
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
section.soft { background: var(--bg-soft); }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head .kicker {
  color: var(--navy-2);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-row .num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-row .label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

ul.check-list { list-style: none; margin: 0; padding: 0; }
ul.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
ul.check-list li:last-child { border-bottom: none; }
ul.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold);
  background-image: linear-gradient(135deg, var(--gold), var(--gold-2));
}

/* Services */
.service-group h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.service-group ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  columns: 1;
}
.service-group li {
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.96rem;
  border-bottom: 1px dashed var(--border);
}
.service-group li:last-child { border-bottom: none; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 20px;
  padding: 50px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 8px; font-size: 1.6rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.78); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.info-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
}
.info-card dt {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}
.info-card dt:first-child { margin-top: 0; }
.info-card dd { margin: 4px 0 0; color: var(--ink); }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.75); font-size: 0.94rem; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-logo { color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 64px 0;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.page-hero p { color: rgba(255,255,255,0.8); max-width: 60ch; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap { padding-top: 50px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
}

@media (max-width: 720px) {
  nav.main-nav, .header-actions .btn-outline, .phone-link { display: none; }
  .menu-toggle { display: block; }
  .header-actions { gap: 10px; }
  .logo img { height: 52px; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
}
