
:root{
  --brand-blue:#1e3a8a;
  --brand-yellow:#f5c400;
  --text:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:14px;
  --maxw:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--maxw); margin:0 auto; padding:0 22px;}
.small{font-size:.93rem; color:var(--muted);}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--border); border-radius:10px; z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:#fff;
  border-bottom:5px solid var(--border);
}
.navbar{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
  min-width:220px;
}
.brand img{
  height:60px; width:auto; display:block;
}


.brand .name{
  font-size: 1.75rem;
  font-weight:700;
  letter-spacing:.2px;
  color:var(--brand-blue);
  white-space:nowrap;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  text-decoration:none;
  color:var(--brand-blue);
  font-weight:600;
  font-size:.98rem;
  padding:10px 10px;
  border-radius:10px;
}
.nav-links a:hover{background:rgba(30,58,138,.06)}
.nav-links a[aria-current="page"]{background:rgba(30,58,138,.10)}
.header-cta{
  text-decoration:none;
  background:var(--brand-yellow);
  color:var(--brand-blue);
  font-weight:800;
  padding:11px 16px;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(245,196,0,.25);
  white-space:nowrap;
}
.header-cta:hover{filter:brightness(.96)}
.menu-btn{
  display:none;
  background:transparent;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
}

/* Mobile menu */
.mobile-drawer{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-drawer.open{display:block}
.mobile-drawer a{
  display:block;
  padding:14px 22px;
  text-decoration:none;
  border-bottom:1px solid var(--border);
  color:var(--brand-blue);
  font-weight:650;
}
.mobile-drawer a.cta{
  background:rgba(245,196,0,.18);
  font-weight:800;
}

/* Hero */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  padding:64px 0;
  background-image:url("./assets/edmonton-hero.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(rgba(0,0,0,.50), rgba(0,0,0,.25));
}
.hero .container{position:relative; z-index:2;}
.hero-card{
  max-width:720px;
  color:#fff;
}
.hero h1{
  margin:0 0 14px 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height:1.15;
  letter-spacing:-.4px;
}
.hero p{
  margin:0 0 18px 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.hero .trust{
  font-size:1rem;
  opacity:.92;
  font-style:italic;
}
.btn-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px;}
.btn{
  display:inline-block;
  text-decoration:none;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  border:1px solid transparent;
}
.btn.primary{background:var(--brand-yellow); color:var(--brand-blue);}
.btn.secondary{background:rgba(255,255,255,.90); color:var(--brand-blue);}
.btn.ghost{background:transparent; border-color:rgba(255,255,255,.50); color:#fff;}
.btn:hover{filter:brightness(.98)}

/* Sections */
.section{padding:64px 0;}
.section h2{
  margin:0 0 10px 0;
  font-size:1.9rem;
  letter-spacing:-.2px;
}
.section h3{margin:18px 0 8px 0}
.grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
}
.card{
  background:#dbd9d9;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
}
.card p{color:var(--muted)}
.kpi{
  display:flex; gap:10px; align-items:flex-start;
}
.kpi .dot{
  width:10px; height:10px; border-radius:999px; background:var(--brand-yellow); margin-top:7px;
}
.badge{
  display:inline-block;
  font-size:.82rem;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--brand-blue);
  background:rgba(30,58,138,.04);
}

/* Forms */
form {
  margin-top: 14px;
}

label {
  display: block;
  font-weight: 700;
  margin: 12px 0 6px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #cfcfcf;
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}


textarea{min-height:140px; resize:vertical}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form-help{color:var(--muted); font-size:.92rem; margin-top:10px}

/* Footer */
.site-footer{
  background:var(--brand-blue);
  color:#fff;
  padding:48px 0 18px;
  margin-top:40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:22px;
}
.footer-grid a{color:#fff}
.footer-grid ul{list-style:none; padding:0; margin:0}
.footer-grid li{margin:8px 0}
.footer-cta{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  background:var(--brand-yellow);
  color:var(--brand-blue);
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:28px;
  padding-top:14px;
  font-size:.82rem;
  opacity:.95;
}

/* Responsive */
@media (max-width: 980px){
  .brand{min-width:auto}
  .nav-links{display:none}
  .header-cta{display:none}
  .menu-btn{display:inline-flex; align-items:center; gap:8px; color:var(--brand-blue); font-weight:800}
  .footer-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

.hero .badge {
  color: #ffffff;
  border-color: #ffffff; /* keeps outline consistent */
}


/* Focus state (important for UX & accessibility) */
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #f2c94c; /* your yellow */
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.25);
}
.site-footer .footer-cta {
  color: #1e3a8a; /* your blue */
}

