/* Northline Web Solutions — Shared stylesheet for /locations/ pages */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500&display=swap');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --navy:#1B3A6B;
  --navy-light:#EEF3FA;
  --text:#111827;
  --muted:#6B7280;
  --border:rgba(0,0,0,0.08);
  --border-md:rgba(0,0,0,0.14);
  --bg:#ffffff;
  --bg2:#F9F9F8;
  --r:12px;
  --r-sm:8px;
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased;line-height:1.65}

/* NAV */
nav{
  position:sticky;top:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 2.5rem;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:.5px solid var(--border);
}
.nav-logo{display:flex;align-items:center;gap:9px;text-decoration:none}
.nav-svg{flex-shrink:0}
.nav-wordmark{font-size:14px;font-weight:500;color:var(--text);letter-spacing:-.01em;white-space:nowrap}
.nav-links{display:flex;align-items:center;gap:1.6rem}
.nav-links a{font-size:13px;color:var(--muted);text-decoration:none;transition:color .15s}
.nav-links a:hover{color:var(--text)}
.nav-links a.active{color:var(--navy);font-weight:500}
.nav-cta,a.nav-cta{
  background:var(--navy);color:#fff !important;border:none;
  padding:8px 18px;border-radius:var(--r-sm);font-size:13px;
  font-family:inherit;cursor:pointer;transition:opacity .15s;
  white-space:nowrap;display:inline-block;text-decoration:none !important;
}
.nav-cta:hover,a.nav-cta:hover{opacity:.86}

/* FOOTER */
footer{background:var(--bg2);border-top:.5px solid var(--border);padding:2.5rem}
.footer-inner{max-width:960px;margin:0 auto}
.footer-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:2rem;margin-bottom:1.75rem}
.footer-brand{display:flex;flex-direction:column;gap:.6rem}
.footer-logo-row{display:flex;align-items:center;gap:8px}
.footer-wordmark{font-size:13px;font-weight:500}
.footer-tagline{font-size:12px;color:var(--muted);max-width:210px;line-height:1.65}
.footer-info{display:flex;flex-direction:column;gap:.5rem}
.footer-info-item{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--muted)}
.footer-info-item i{font-size:14px;color:var(--navy)}
.footer-col{display:flex;flex-direction:column;gap:.5rem}
.footer-col-label{font-size:11px;font-weight:500;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.2rem}
.footer-col a{font-size:13px;color:var(--muted);text-decoration:none;transition:color .15s}
.footer-col a:hover{color:var(--text)}
.footer-bottom{border-top:.5px solid var(--border);padding-top:1.25rem;text-align:center}
.footer-bottom p{font-size:11px;color:var(--muted)}

@media(max-width:760px){
  nav{padding:.875rem 1.25rem}
  .nav-links a:not(.nav-cta){display:none}
  .footer-top{flex-direction:column}
}
