/* ============================================================
   CineNorth, light, clean, EP-inspired
   For creatives + production. Trust through clarity.
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-1:      #f7f8fa;
  --bg-2:      #eef1f5;
  --line:      #e3e7ee;
  --line-2:    #cfd5e0;

  --fg:        #0f1a33;   /* EP-style deep navy */
  --fg-1:      #2b3553;
  --fg-2:      #5a6481;
  --fg-3:      #8c94a8;

  --accent:    #1e3a8a;   /* deep navy, primary brand */
  --accent-2:  #2e4ea8;
  --accent-soft: #1e3a8a14;

  --cta:       #c8391f;   /* cinematic red, secondary CTA */
  --cta-hover: #a52f19;

  --pos:       #15803d;
  --warn:      #b45309;
  --neg:       #b91c1c;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15,26,51,.04);
  --shadow: 0 2px 12px rgba(15,26,51,.06);
  --shadow-lg: 0 12px 36px rgba(15,26,51,.08);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--fg);
  font-family: var(--sans);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; }

.num { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -.01em;
  line-height: 1.2;
}

/* ============================================================
   Top bar, EP-style, clean, white
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar-left { display: flex; align-items: center; gap: 32px; }
/* Slate logo (selected direction) */
.topbar-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-weight: 700; font-size: 18px; letter-spacing: -.005em;
  color: var(--fg);
  font-family: var(--sans);
}
.topbar-logo .slate {
  width: 30px; height: 30px;
  background: var(--fg); color: #fff;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  flex: none; position: relative; overflow: hidden;
}
.topbar-logo .slate::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 32%;
  background: repeating-linear-gradient(135deg, currentColor 0 2px, transparent 2px 4px);
  opacity: .28;
}
.topbar-logo .slash { color: var(--cta); margin: 0 1px; font-weight: 600; }
.topbar-logo:hover .slate { background: var(--accent); }
.topbar nav {
  display: flex; gap: 28px; align-items: center;
}
.topbar-link {
  text-decoration: none;
  color: var(--fg-1); font-size: 14px; font-weight: 500;
  transition: color .15s;
}
.topbar-link:hover { color: var(--accent); }
.topbar-cta {
  padding: 10px 22px;
  background: var(--cta); color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: background .15s;
}
.topbar-cta:hover { background: var(--cta-hover); color: #fff; }
@media (max-width: 860px) {
  .topbar { padding: 14px 20px; }
  .topbar nav { display: none; }
}

/* ============================================================
   Hero, clean, centered, understated
   ============================================================ */
.hero {
  padding: 96px 32px 80px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 580px; margin: 0 auto 36px;
  line-height: 1.6;
}
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer; transition: all .15s ease;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--accent);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); }
@media (max-width: 720px) { .hero { padding: 56px 16px 48px; } }

/* ============================================================
   Section chrome, EP-style centered heads
   ============================================================ */
.section { padding: 96px 32px; }
.section + .section { border-top: 1px solid var(--line); }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-head {
  text-align: center;
  max-width: 680px; margin: 0 auto 56px;
}
.section-head .eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-head .lead {
  font-size: 17px; color: var(--fg-2); line-height: 1.6;
}
@media (max-width: 720px) { .section { padding: 64px 16px; } }

/* ============================================================
   Services, EP-style icon grid
   ============================================================ */
.svc {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.svc-card { padding: 0 16px; }
.svc-card .ic {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.svc-card .ic svg { width: 100%; height: 100%; }
.svc-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.svc-card .tag {
  font-size: 15px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.svc-card p {
  font-size: 15px; color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.svc-card a {
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.svc-card a:hover { gap: 8px; }
@media (max-width: 760px) { .svc { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   SCENARIO WIDGET v3, tier tabs + 3 province cards
   ============================================================ */
.scn3 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  font-family: var(--sans);
}

/* Rate note strip */
.scn3-rate {
  padding: 10px 24px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--fg-3);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Tier tabs */
.scn3-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.scn3-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 18px 22px;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  text-align: left;
  transition: all .15s;
}
.scn3-tab:last-child { border-right: 0; }
.scn3-tab:hover { background: var(--bg-1); }
.scn3-tab.active {
  background: var(--bg-1);
  border-bottom-color: var(--accent);
}
.scn3-tab-label {
  font-size: 15px; font-weight: 600;
  color: var(--fg);
}
.scn3-tab.active .scn3-tab-label { color: var(--accent); }
.scn3-tab-meta {
  font-size: 12px; color: var(--fg-3); font-weight: 400;
}
@media (max-width: 640px) {
  .scn3-tabs { grid-template-columns: 1fr; }
  .scn3-tab { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* Assumption line */
.scn3-assume {
  padding: 14px 24px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--fg-2);
}

/* Cards */
.scn3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-1);
}
.scn3-card {
  position: relative;
  padding: 26px 24px 24px;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.scn3-card:last-child { border-right: 0; }
.scn3-card.winner {
  background: #fff;
  box-shadow: inset 0 3px 0 var(--pos, #16a34a);
  padding-top: 32px;
}
@media (max-width: 860px) {
  .scn3-cards { grid-template-columns: 1fr; }
  .scn3-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .scn3-card:last-child { border-bottom: 0; }
}

.scn3-badge {
  position: absolute; top: 12px; right: 14px;
  padding: 3px 9px;
  background: #dcfce7;
  color: #166534;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}

.scn3-card-head {
  margin-bottom: 16px;
}
.scn3-card-head h3 {
  font-size: 20px; font-weight: 700;
  color: var(--fg); margin: 0;
  letter-spacing: -.01em;
}
.scn3-city {
  font-size: 12px; color: var(--fg-3);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 2px;
}

/* Hero number */
.scn3-hero {
  margin-bottom: 14px;
}
.scn3-hero-usd-big {
  font-size: 42px; font-weight: 700; line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.scn3-hero-usd-big .cur {
  font-size: .38em;
  color: var(--fg-3);
  margin-right: 4px; vertical-align: .4em;
  font-weight: 500;
}
.scn3-hero-usd-sub {
  font-size: 12px; color: var(--fg-3);
  margin-top: 6px;
  letter-spacing: .06em; text-transform: uppercase;
}
.scn3-hero-cad-sub {
  font-size: 13px; color: var(--fg-2);
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}

/* Savings chip */
.scn3-savings {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  white-space: nowrap;
  max-width: 100%;
}
.scn3-savings.winner {
  background: #dcfce7;
  color: #166534;
}
.scn3-savings.other {
  background: var(--accent-soft, rgba(200, 57, 31, 0.08));
  color: var(--accent);
}
.scn3-savings small {
  font-weight: 500; opacity: .75;
}

/* Two-stat row */
.scn3-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.scn3-stat .v {
  font-size: 17px; font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.scn3-stat .l {
  font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 2px;
}

/* Description */
.scn3-desc {
  font-size: 13px; color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 14px;
  text-wrap: pretty;
}

/* Chips */
.scn3-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
.scn3-chip {
  padding: 4px 9px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px; color: var(--fg-2);
  font-weight: 500;
  white-space: nowrap;
}

/* MB stream note */
.scn3-mbnote {
  margin-top: auto;
  padding: 8px 10px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 11px; color: #78350f;
  font-weight: 500;
}

/* Unions in play (collapsible) */
.scn3-unions {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.scn3-unions summary {
  cursor: pointer;
  font-size: 12px;
  color: var(--fg-2);
  font-weight: 500;
  list-style: none;
  display: flex; align-items: center; gap: 6px;
  padding: 4px 0;
}
.scn3-unions summary::-webkit-details-marker { display: none; }
.scn3-unions summary::before {
  content: "▸";
  font-size: 9px;
  color: var(--fg-3);
  transition: transform .15s;
  display: inline-block;
}
.scn3-unions[open] summary::before { transform: rotate(90deg); }
.scn3-unions summary:hover { color: var(--fg); }
.scn3-unions-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  background: var(--fg); color: #fff;
  border-radius: 10px;
  font-size: 11px; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.scn3-unions-hint {
  color: var(--fg-3); font-weight: 400;
}
.scn3-union-list {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.scn3-union-row {
  padding: 10px 12px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.scn3-union-head {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.scn3-union-head strong {
  font-size: 13px; color: var(--fg); font-weight: 600;
}
.scn3-union-status {
  font-size: 9px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}
.scn3-union-status.status-active    { background: #dcfce7; color: #166534; }
.scn3-union-status.status-waiver    { background: #fef3c7; color: #78350f; }
.scn3-union-status.status-nonunion  { background: #e5e7eb; color: #374151; }
.scn3-union-status.status-bypass    { background: #fee2e2; color: #991b1b; }
.scn3-union-covers {
  font-size: 11px; color: var(--fg-2); line-height: 1.5;
}

/* Explainer / longForm Q&A section */
.scn3-explainer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 26px;
  background: var(--bg-1);
}
.scn3-explainer-head h3 {
  font-size: 20px; font-weight: 700;
  color: var(--fg);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.scn3-explainer-head p {
  font-size: 14px; color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 70ch;
  text-wrap: pretty;
}
.scn3-qa-list {
  display: flex; flex-direction: column; gap: 8px;
}
.scn3-qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.scn3-qa summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--fg);
  list-style: none;
  display: flex; align-items: center; gap: 10px;
}
.scn3-qa summary::-webkit-details-marker { display: none; }
.scn3-qa summary::before {
  content: "+";
  font-size: 16px;
  color: var(--accent);
  font-weight: 400;
  transition: transform .15s;
  display: inline-block;
  width: 12px;
}
.scn3-qa[open] summary::before { content: "−"; }
.scn3-qa summary:hover { background: var(--bg-1); }
.scn3-qa-body {
  padding: 0 18px 16px 40px;
  font-size: 13px; color: var(--fg-2);
  line-height: 1.6;
  text-wrap: pretty;
}

/* Foot */
.scn3-foot {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 12px; color: var(--fg-3); line-height: 1.55;
}

/* ============================================================
   About
   ============================================================ */
.about {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 56px; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.about-photo {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text { font-size: 16px; line-height: 1.7; color: var(--fg-1); }
.about-text .quote {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.45; color: var(--fg);
  font-weight: 500;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.about-text p { color: var(--fg-2); margin-bottom: 14px; }
.about-text p strong { color: var(--fg); font-weight: 600; }
.creds {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.creds .c {
  padding: 6px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  color: var(--fg-1);
}
@media (max-width: 760px) { .about { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   Provinces preview
   ============================================================ */
.prov-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prov-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.prov-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.prov-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.prov-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,26,51,.88) 10%, rgba(15,26,51,.15) 55%, transparent 85%);
}
.prov-card .body { position: relative; z-index: 2; padding: 22px; }
.prov-card .pname { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.prov-card .ploc  { font-size: 12px; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.prov-card .prate { font-size: 34px; font-weight: 700; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.prov-card .prate-note { font-size: 11px; color: rgba(255,255,255,.8); margin-top: 6px; }
.prov-foot { margin-top: 32px; text-align: center; }
.prov-foot a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 15px; }
.prov-foot a:hover { text-decoration: underline; }
@media (max-width: 760px) { .prov-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Process
   ============================================================ */
.proc {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proc-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.proc-card .ic {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.proc-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.proc-card p { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
@media (max-width: 760px) { .proc { grid-template-columns: 1fr; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  padding: 64px 32px;
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.cta-inner {
  max-width: 720px; margin: 0 auto;
}
.cta-inner h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 16px; color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact .lead { font-size: 15px; color: var(--fg-2); margin-bottom: 24px; line-height: 1.65; }
.facts { font-size: 14px; }
.facts .row {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.facts .row:first-child { border-top: 1px solid var(--line); }
.facts .row dt { color: var(--fg-3); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.facts .row dd { color: var(--fg-1); }
.facts .row dd a { color: var(--accent); text-decoration: none; font-weight: 500; }
.facts .row dd a:hover { text-decoration: underline; }
.cform {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.cform .grow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.cform .fld { margin-bottom: 16px; }
.cform .fld label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 8px;
}
.cform input, .cform select, .cform textarea {
  width: 100%; padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: var(--sans); font-size: 14px; color: var(--fg);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.cform textarea { min-height: 96px; resize: vertical; }
.cform select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%235a6481' stroke-width='1.4' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 32px; }
.cform .submit {
  width: 100%; padding: 14px;
  background: var(--cta); color: #fff;
  border: 0; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.cform .submit:hover { background: var(--cta-hover); }
@media (max-width: 760px) {
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .cform .grow { grid-template-columns: 1fr; }
}

/* ============================================================
   Newsletter + footer
   ============================================================ */
.news {
  max-width: 600px; margin: 0 auto;
  padding: 40px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.news h3 { font-size: 22px; margin-bottom: 8px; color: var(--accent); }
.news p { font-size: 14px; color: var(--fg-2); margin-bottom: 22px; line-height: 1.6; }
.news-form { display: flex; gap: 8px; }
.news-form input {
  flex: 1; padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 14px; color: var(--fg); outline: none;
}
.news-form input:focus { border-color: var(--accent); }
.news-form button {
  padding: 11px 22px; background: var(--cta); color: #fff;
  border: 0; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.news-form button:hover { background: var(--cta-hover); }
.news-foot { font-size: 11px; color: var(--fg-3); margin-top: 14px; }

.foot {
  padding: 36px 48px;
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 12px; color: var(--fg-3);
}
.foot .logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  color: var(--fg);
  font-weight: 700; font-size: 15px; letter-spacing: -.005em;
}
.foot .logo .slate {
  width: 24px; height: 24px;
  background: var(--fg); color: #fff;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 9px; font-weight: 700; letter-spacing: .04em;
  position: relative; overflow: hidden; flex: none;
}
.foot .logo .slate::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 32%;
  background: repeating-linear-gradient(135deg, currentColor 0 1.5px, transparent 1.5px 3px);
  opacity: .28;
}
.foot .logo .slash { color: var(--cta); font-weight: 600; }
.foot .note { max-width: 620px; text-align: center; line-height: 1.6; }
@media (max-width: 760px) { .foot { flex-direction: column; text-align: center; padding: 32px 20px; } }

/* Hide command palette & tweaks chrome, no longer part of design */
.cmdk-trigger, .cmdk-overlay, .tweaks { display: none !important; }

/* ============================================================
   SUBPAGE: Province hero (used by province detail pages)
   ============================================================ */
.prov-hero {
  position: relative; min-height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden; color: #fff;
}
.prov-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.prov-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,26,51,.92) 0%, rgba(15,26,51,.55) 50%, rgba(15,26,51,.35) 100%);
}
.prov-hero-inner {
  position: relative; z-index: 2;
  padding: 48px 48px 48px; width: 100%;
  max-width: 1120px; margin: 0 auto;
}
.prov-back {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.72);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 22px; transition: color .15s;
}
.prov-back:hover { color: #fff; }
.prov-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 12px;
}
.prov-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.1; color: #fff;
  margin-bottom: 18px;
}
.rate-badge {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: #fff; color: var(--accent);
  padding: 8px 16px; border-radius: 4px;
  font-size: 14px; font-weight: 700;
  margin-right: 12px;
}
.combined-label { font-size: 14px; color: rgba(255,255,255,.82); }
.prov-meta {
  display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap;
}
.prov-meta span {
  font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500;
}

/* Province body / detail sections */
.prov-body { padding: 72px 32px; max-width: 1000px; margin: 0 auto; }
.prov-landscape {
  font-size: 17px; color: var(--fg-2); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.prov-overview {
  font-size: 16px; color: var(--fg-1); line-height: 1.8;
  margin-bottom: 48px;
}
.section-block { margin-bottom: 48px; }
.section-block h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  color: var(--accent);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.detail-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.detail-label {
  font-size: 13px; font-weight: 600; color: var(--fg-2);
  flex-shrink: 0; min-width: 140px;
}
.detail-value {
  font-size: 14px; color: var(--fg-1); text-align: right; line-height: 1.6;
}
.post-section {
  background: var(--bg-1); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 32px; margin-bottom: 48px;
}
.post-section h2 {
  font-size: 20px; font-weight: 700; color: var(--accent);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.post-badge {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.post-badge.yes { background: #dcfce7; color: #166534; }
.post-badge.partial { background: #fef9c3; color: #854d0e; }
.post-badge.no { background: #fecaca; color: #991b1b; }
.post-section > p { font-size: 14px; color: var(--fg-2); line-height: 1.75; }
.post-section > p + p { margin-top: 12px; }
.post-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 20px;
}
.post-item h4 { font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.post-item p { font-size: 13px; color: var(--fg-2); line-height: 1.7; }
.updated { font-size: 12px; color: var(--fg-3); margin-top: 8px; }

@media (max-width: 760px) {
  .prov-hero-inner { padding: 32px 20px; }
  .prov-body { padding: 48px 20px; }
  .post-grid { grid-template-columns: 1fr; }
  .detail-row { flex-direction: column; gap: 4px; }
  .detail-value { text-align: left; }
}

/* ============================================================
   SUBPAGE: Incentive hub (incentives.html)
   ============================================================ */
.hub-header {
  padding: 72px 48px 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hub-header .eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.hub-header h1 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: 18px;
}
.hub-header p {
  font-size: 16px; color: var(--fg-2); line-height: 1.7;
  max-width: 680px; margin: 0 auto;
}
.hub-header p strong { color: var(--fg); font-weight: 600; }
.hub-legend {
  display: flex; gap: 20px; margin: 24px auto 0; flex-wrap: wrap;
  justify-content: center;
}
.hub-legend span { font-size: 12px; color: var(--fg-2); display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.yes { background: #dcfce7; border: 1px solid #86efac; }
.legend-dot.partial { background: #fef9c3; border: 1px solid #fde047; }
.legend-dot.no { background: #fecaca; border: 1px solid #fca5a5; }

.fed-banner {
  padding: 32px 48px;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  max-width: 1120px; margin: 0 auto;
}
.fed-banner h3 { font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.fed-banner p { font-size: 14px; color: var(--fg-2); }
.fed-rate {
  font-size: 36px; font-weight: 700;
  color: var(--accent); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; padding: 1px;
  background: var(--line);
  max-width: 1120px; margin: 0 auto;
}
.hub-card {
  background: var(--bg);
  text-decoration: none; color: var(--fg);
  transition: background .15s, transform .15s;
  display: flex; flex-direction: column;
}
.hub-card:hover { background: var(--bg-1); }
.hub-card-img {
  height: 160px; background-size: cover; background-position: center;
}
.hub-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.hub-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hub-abbr { font-size: 11px; font-weight: 600; color: var(--fg-3); letter-spacing: .1em; }
.hub-post-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .03em;
  padding: 3px 9px; border-radius: 100px;
}
.hub-post-badge.yes { background: #dcfce7; color: #166534; }
.hub-post-badge.partial { background: #fef9c3; color: #854d0e; }
.hub-post-badge.no { background: #fecaca; color: #991b1b; }
.hub-card h3 { font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 10px; line-height: 1.3; }
.hub-rate { font-size: 30px; font-weight: 700; line-height: 1; color: var(--fg); font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.hub-combined { font-size: 12px; color: var(--fg-2); margin-bottom: 14px; }
.hub-type {
  font-size: 11px; color: var(--fg-2); background: var(--bg-1);
  padding: 4px 10px; border-radius: 100px; align-self: flex-start;
  margin-top: auto; border: 1px solid var(--line);
}

@media (max-width: 760px) {
  .hub-header { padding: 48px 20px 24px; }
  .hub-grid { grid-template-columns: 1fr; }
  .fed-banner { padding: 24px 20px; flex-direction: column; text-align: center; }
}
