:root {
  --ink: #102720;
  --ink-soft: #1d3a31;
  --muted: #5e7069;
  --paper: #f4f8f6;
  --surface: #ffffff;
  --green: #137558;
  --green-dark: #0b4f3d;
  --green-bright: #3faa82;
  --mint: #e5f3ed;
  --mint-strong: #cde8dc;
  --red: #df5a4f;
  --red-soft: #fff0ed;
  --line: #d9e5df;
  --line-strong: #c6d6ce;
  --shadow-sm: 0 8px 24px rgba(16, 39, 32, .06);
  --shadow: 0 22px 60px rgba(16, 39, 32, .11);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --content-max: 1160px;
  --reading-max: 780px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 7%, rgba(205, 232, 220, .55), transparent 24rem),
    var(--paper);
  font-family: Inter, "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main, section, article, aside, .wrap { min-width: 0; }

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
a, button, summary { -webkit-tap-highlight-color: rgba(19, 117, 88, .15); touch-action: manipulation; }

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(19, 117, 88, .28);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 830;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

p { text-wrap: pretty; }
.wrap { width: min(calc(100% - 40px), var(--content-max)); margin-inline: auto; }

.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.skip:focus { transform: translateY(0); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header and wordmark */
.topline {
  min-height: 34px;
  color: #d9eee5;
  background: var(--ink);
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .01em;
}

.topline .wrap {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(198, 214, 206, .8);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 5px 18px rgba(16, 39, 32, .035);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  margin: 0 !important;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: var(--green-dark);
  box-shadow: 0 8px 20px rgba(11, 79, 61, .18);
}

.brand-mark img { width: 44px; height: 44px; }

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.brand-main {
  color: var(--ink);
  font-size: 18px;
  font-weight: 860;
  letter-spacing: -.035em;
}

.brand-sub {
  display: inline-flex !important;
  align-items: center;
  min-height: 22px;
  margin: 0 !important;
  padding: 4px 7px 3px;
  border-radius: 6px;
  color: #a83c34 !important;
  background: var(--red-soft);
  font-size: 9px !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

.links { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 760; }
.links a { padding: 9px 11px; border-radius: 9px; transition: color .18s ease, background-color .18s ease; }
.links a:hover, .links a[aria-current="page"] { color: var(--green-dark); background: var(--mint); }

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

.btn, .btn2 {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn { color: #fff; background: var(--green); box-shadow: 0 9px 22px rgba(19, 117, 88, .19); }
.btn:hover { transform: translateY(-1px); background: var(--green-dark); box-shadow: 0 12px 28px rgba(11, 79, 61, .23); }
.btn2 { border-color: var(--line-strong); color: var(--ink); background: rgba(255, 255, 255, .95); }
.btn2:hover { transform: translateY(-1px); border-color: var(--green); color: var(--green-dark); }

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: transparent;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.mobile-menu::before, .mobile-menu::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.mobile-menu::before { top: 15px; }
.mobile-menu::after { bottom: 15px; }
.mobile-menu[aria-expanded="true"]::before { top: 20px; transform: rotate(45deg); }
.mobile-menu[aria-expanded="true"]::after { bottom: 20px; transform: rotate(-45deg); }

.mobile-panel { display: none; }
.mobile-panel.open {
  display: block;
  max-height: calc(100dvh - 102px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 4px 18px 0;
  scrollbar-gutter: stable;
}
.mobile-panel > a { display: block; padding: 13px 2px; border-top: 1px solid var(--line); font-weight: 780; }
.mobile-city-menu { border-top: 1px solid var(--line); }

.mobile-city-menu > summary,
.mobile-city-groups details > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  font-weight: 820;
}

.mobile-city-menu > summary::-webkit-details-marker,
.mobile-city-groups summary::-webkit-details-marker { display: none; }
.mobile-city-menu > summary::after, .mobile-city-groups details > summary::after { content: "+"; color: var(--green); font-size: 21px; font-weight: 500; }
.mobile-city-menu[open] > summary::after, .mobile-city-groups details[open] > summary::after { content: "−"; }
.mobile-city-groups { padding: 0 0 8px 12px; }
.mobile-city-groups details { border-top: 1px solid #e6efea; }
.mobile-city-groups details > summary { font-size: 14px; }
.mobile-city-groups details > div { display: grid; }
.mobile-panel .mobile-city-groups a { display: block; padding: 10px 0; border-bottom: 1px solid #edf3f0; font-size: 14px; font-weight: 700; }
.mobile-panel .province-menu-overview, .mobile-panel .all-cities-link { color: var(--green-dark); font-weight: 820; }

/* Home */
.hero { position: relative; overflow: hidden; padding: 70px 0 72px; }
.hero::before { content: ""; position: absolute; top: 80px; left: max(20px, calc((100vw - var(--content-max)) / 2 - 120px)); width: 6px; height: 106px; border-radius: 99px; background: linear-gradient(var(--red), var(--green)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); align-items: center; gap: clamp(40px, 6vw, 82px); }

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: .02em;
}

.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--red); }
.hero h1 { max-width: 13ch; margin-top: 20px; font-size: clamp(44px, 5.2vw, 66px); line-height: 1.01; }
.lead { max-width: 66ch; margin: 22px 0 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.hero .lead { max-width: 57ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.micro { max-width: 62ch; margin-top: 16px; color: var(--muted); font-size: 12.5px; }

.location-first {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  color: #fff;
  background: radial-gradient(circle at 100% 0, rgba(63, 170, 130, .28), transparent 18rem), linear-gradient(145deg, #163b31, #0c2922 76%);
  box-shadow: var(--shadow);
}

.location-first::before { content: ""; position: absolute; top: 0; right: 0; width: 95px; height: 5px; background: var(--red); }
.location-first .eyebrow { color: #e7f7f0 !important; background: rgba(255, 255, 255, .11) !important; }
.location-first h2 { margin-top: 16px !important; color: #fff; font-size: 29px; letter-spacing: -.035em; }
.location-first > p { margin: 12px 0 0; color: #bed4cb; font-size: 15px; line-height: 1.62; }
.home-province-browser { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 22px; }

.home-province { overflow: hidden; border: 1px solid rgba(255, 255, 255, .13); border-radius: 12px; background: rgba(255, 255, 255, .055); transition: border-color .18s ease, background-color .18s ease; }
.home-province:hover, .home-province[open] { border-color: rgba(157, 217, 193, .48); background: rgba(255, 255, 255, .09); }
.home-province > summary { display: flex; min-height: 51px; align-items: center; gap: 10px; padding: 12px 15px; list-style: none; cursor: pointer; color: #fff; font-size: 15px; font-weight: 800; }
.home-province > summary::-webkit-details-marker { display: none; }
.home-province > summary small { margin-left: auto; color: #a9c5ba; font-size: 11.5px; font-weight: 700; }

.home-province > summary::after,
.province-drop > summary::after,
.article-province > summary::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-left: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.home-province[open] > summary::after,
.province-drop[open] > summary::after,
.article-province[open] > summary::after { transform: translateY(2px) rotate(225deg); }

.home-city-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; padding: 4px 15px 12px; border-top: 1px solid rgba(255, 255, 255, .11); }
.home-city-list a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 2px; border-bottom: 1px solid rgba(255, 255, 255, .09); color: #eef9f5; font-size: 13px; font-weight: 720; }
.home-city-list a:hover { color: #9fe0c7; }
.home-city-list .home-province-all { grid-column: 1 / -1; border-bottom: 0; color: #9dd9c3; font-size: 12px; font-weight: 800; }

/* Shared sections */
.section { padding: 76px 0; }
.section.white { background: rgba(255, 255, 255, .9); }
.section.dark { color: #fff; background: var(--ink); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); align-items: end; gap: 42px; margin-bottom: 30px; }
.section-head > p { max-width: 56ch; margin: 0; color: var(--muted); }
.kicker { margin-bottom: 9px; color: var(--red); font-size: 11.5px; font-weight: 900; line-height: 1.3; letter-spacing: .14em; text-transform: uppercase; }
.section h2 { font-size: clamp(32px, 3.5vw, 47px); }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.step { position: relative; min-height: 230px; overflow: hidden; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.step::after { content: ""; position: absolute; top: 0; right: 0; width: 74px; height: 5px; background: var(--green); }
.step:nth-child(2)::after { background: var(--red); }
.step:nth-child(3)::after { background: var(--green-bright); }
.step-num { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 9px; border-radius: 7px; color: var(--green-dark) !important; background: var(--mint); font-size: 10.5px; font-weight: 900; line-height: 1; letter-spacing: .11em; }
.step h3 { margin-top: 46px; color: var(--ink) !important; font-size: 23px; }
.step p { margin: 10px 0 0; color: var(--muted) !important; font-size: 15px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { position: relative; display: flex; min-height: 228px; flex-direction: column; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 24px rgba(16, 39, 32, .035); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--green), var(--green-bright)); opacity: 0; transition: opacity .2s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--mint-strong); box-shadow: 0 18px 38px rgba(16, 39, 32, .09); }
.card:hover::before { opacity: 1; }
.card.clean { background: linear-gradient(180deg, #fff, #fbfdfc); }

.tag, .rule-badge, .badge { display: inline-flex; width: fit-content; align-items: center; margin-bottom: 15px; padding: 6px 9px; border-radius: 999px; color: var(--green-dark); background: var(--mint); font-size: 10.5px; font-weight: 900; line-height: 1.2; letter-spacing: .055em; text-transform: uppercase; }
.rule-badge { color: #9d3e36; background: var(--red-soft); }
.card h3 { font-size: 22px; line-height: 1.16; }
.card p { margin: 11px 0 20px; color: var(--muted); font-size: 14.5px; }
.arrow { margin-top: auto; color: var(--green-dark); font-size: 13px; font-weight: 850; }

/* Page headers */
.page-hero { padding: 62px 0 45px; border-bottom: 1px solid rgba(217, 229, 223, .78); background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(244, 248, 246, .2)); }
.page-hero .wrap { max-width: 930px; }
.crumbs { margin-bottom: 17px; color: #71827b; font-size: 12.5px; }
.crumbs a { color: var(--green-dark); font-weight: 780; }
.page-hero h1 { max-width: 20ch; margin-top: 18px; font-size: clamp(40px, 5vw, 58px); line-height: 1.04; }
.page-hero .lead { font-size: 18px; }
.verified { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 7px 10px; border: 1px solid #d5e8df; border-radius: 999px; color: var(--green-dark); background: #edf8f3; font-size: 11.5px; font-weight: 800; }

/* Province and city navigation */
.compact-local-browser { padding: 54px 0 34px; }
.province-browser { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.province-drop, .article-province { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 4px 16px rgba(16, 39, 32, .03); transition: border-color .18s ease, box-shadow .18s ease; }
.province-drop:hover, .province-drop[open], .article-province:hover, .article-province[open] { border-color: #acd3c2; box-shadow: var(--shadow-sm); }

.province-drop > summary, .article-province > summary { display: flex; min-height: 62px; align-items: center; gap: 12px; padding: 15px 18px; list-style: none; cursor: pointer; color: var(--ink); font-size: 17px; font-weight: 830; }
.province-drop > summary::-webkit-details-marker, .article-province > summary::-webkit-details-marker { display: none; }
.province-drop > summary span, .article-province > summary span { margin-left: auto; color: var(--muted); font-size: 11.5px; font-weight: 720; }
.province-drop > summary::after, .article-province > summary::after { color: var(--green); }
.province-drop[open] > summary, .article-province[open] > summary { background: #f5faf7; }

.province-city-list, .article-city-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 17px; padding: 6px 18px 14px; border-top: 1px solid var(--line); }
.province-city-list a, .article-city-links a { position: relative; display: flex; min-height: 45px; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 24px 9px 2px; border-bottom: 1px solid #eaf1ed; color: var(--ink-soft); font-size: 14px; font-weight: 760; transition: color .16s ease, padding-left .16s ease; }
.province-city-list a::after, .article-city-links a::after { content: "→"; position: absolute; right: 3px; color: var(--green); transition: transform .16s ease; }
.province-city-list a:hover, .article-city-links a:hover { padding-left: 6px; color: var(--green-dark); }
.province-city-list a:hover::after, .article-city-links a:hover::after { transform: translateX(3px); }
.province-city-list .province-overview, .article-city-links .article-province-overview { grid-column: 1 / -1; border-bottom: 0; color: var(--green-dark); font-size: 12px; font-weight: 850; }
.coverage-note, .section-note, .inline-note { color: var(--muted); font-size: 13px; }

.local-intro { position: relative; overflow: hidden; padding: 34px; border-radius: var(--radius-lg); color: #fff; background: radial-gradient(circle at 100% 0, rgba(63, 170, 130, .24), transparent 22rem), var(--ink); box-shadow: var(--shadow); }
.local-intro::before { content: "3 local checks"; position: absolute; top: 24px; right: 27px; padding: 6px 9px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; color: #b8d4c9; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.local-intro h2 { color: #fff; font-size: 34px; }
.local-intro > p { max-width: 72ch; margin: 11px 0 0; color: #bed2ca; }
.city-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; margin-top: 26px; }
.city-summary-grid .decision-item { position: relative; min-height: 176px; padding: 49px 20px 20px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 15px; background: rgba(255, 255, 255, .065); }
.city-summary-grid .decision-item::before { position: absolute; top: 16px; left: 20px; color: #84cfb1; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.city-summary-grid .decision-item:nth-child(1)::before { content: "01"; }
.city-summary-grid .decision-item:nth-child(2)::before { content: "02"; color: #f08d84; }
.city-summary-grid .decision-item:nth-child(3)::before { content: "03"; }
.city-summary-grid .decision-item b { display: block; color: #fff; font-size: 18px; }
.city-summary-grid .decision-item span { display: block; margin-top: 8px; color: #b9cec6; font-size: 13.5px; line-height: 1.55; }

.province-section { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); }
.province-header { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(300px, 1fr); align-items: end; gap: 28px; margin-bottom: 17px; }
.province-header h2 { font-size: 31px; }
.province-header p { margin: 0; color: var(--muted); font-size: 14px; }
.city-grid-large { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.city-card-link { position: relative; display: flex; min-height: 190px; flex-direction: column; overflow: hidden; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.city-card-link::before { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 48px; background: var(--red); }
.city-card-link:hover { transform: translateY(-3px); border-color: #aed4c3; box-shadow: var(--shadow-sm); }
.city-card-link h3 { font-size: 22px; }
.city-card-link p { margin: 10px 0 18px; color: var(--muted); font-size: 14px; }
.city-card-link span { margin-top: auto; color: var(--green-dark); font-size: 13px; font-weight: 850; }

/* Hubs */
.scope-banner { margin: 0 0 25px; padding: 19px 21px; border: 1px solid #cfe2d9; border-left: 4px solid var(--green); border-radius: 13px; background: #f0f8f4; }
.scope-banner strong { display: block; margin-bottom: 5px; color: var(--green-dark); font-size: 10.5px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.scope-banner p { margin: 0 !important; color: #465e55 !important; font-size: 14.5px; }
.scope-banner.warning, .callout.warning { border-color: #f0c9b1; border-left-color: #c9662d; background: #fff6ef; }

.guide-section-label { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 54px 0 18px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.guide-section-label:first-of-type { margin-top: 28px; }
.guide-section-label h2 { font-size: 30px; }
.guide-section-label > span { color: var(--muted); font-size: 12.5px; }

.latest-guides { width: min(calc(100% - 40px), var(--content-max)); margin: 0 auto 76px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.latest-guides h2 { margin-bottom: 16px; font-size: 27px; }
.list-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; margin-bottom: 12px; padding: 21px; border: 1px solid var(--line); border-radius: 15px; background: #fff; transition: border-color .18s ease, transform .18s ease; }
.list-card:hover { transform: translateY(-2px); border-color: #acd3c2; }
.list-card h3 { font-size: 20px; }
.list-card p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.index-grid { display: grid; grid-template-columns: 245px minmax(0, 1fr); align-items: start; gap: 28px; padding-bottom: 76px; }
.filter { position: sticky; top: 102px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.filter h3 { margin-bottom: 8px; font-size: 18px; }
.filter a { display: block; padding: 9px 0; border-bottom: 1px solid #e9f0ed; font-size: 14px; }
.filter a:last-child { border-bottom: 0; }

/* Articles */
.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 28px; padding-top: 34px; padding-bottom: 76px; }
.article { min-width: 0; padding: clamp(25px, 3.4vw, 40px); border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 10px 34px rgba(16, 39, 32, .045); overflow-wrap: break-word; }
.article h1 { max-width: 18ch; margin: 17px 0 15px; font-size: clamp(37px, 4.4vw, 55px); }
.article-dek { max-width: 66ch; margin: 0 0 28px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.article h2 { margin: 40px 0 14px; font-size: 28px; line-height: 1.18; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 28px 0 10px; font-size: 21px; line-height: 1.25; }
.article p, .article li { color: #3f574e; }
.article ul, .article ol { padding-left: 23px; }
.article li + li { margin-top: 7px; }
.article a:not(.btn):not(.btn2):not(.decision-item):not(.city-card-link) { text-decoration-color: #93c7b0; text-underline-offset: 3px; }
.article a:not(.btn):not(.btn2):not(.decision-item):not(.city-card-link):hover { color: var(--green-dark); }

.callout { margin: 22px 0; padding: 17px 19px; border: 1px solid #cfe3da; border-left: 4px solid var(--green); border-radius: 12px; background: #eff8f4; }
.decision { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 20px 0; }
.decision-item { display: block; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: #fbfdfc; }
a.decision-item { transition: border-color .18s ease, transform .18s ease; }
a.decision-item:hover { transform: translateY(-2px); border-color: #acd3c2; }
.decision-item b { display: block; margin-bottom: 5px; color: var(--ink); font-size: 15px; }
.decision-item span { display: block; color: var(--muted); font-size: 13px; }

.fact-list { display: grid; gap: 9px; margin: 20px 0 27px; }
.fact-row { display: grid; grid-template-columns: 175px minmax(0, 1fr); gap: 18px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fbfdfc; }
.fact-row b { color: var(--ink); font-size: 14px; }
.fact-row span { color: var(--muted); font-size: 14px; line-height: 1.6; }

.guide-accordion { overflow: hidden; margin: 10px 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.guide-accordion:hover, .guide-accordion[open] { border-color: #b7d8c9; }
.guide-accordion[open] { box-shadow: 0 10px 25px rgba(16, 39, 32, .055); }
.guide-accordion > summary { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 17px; list-style: none; cursor: pointer; color: var(--ink); font-size: 17px; font-weight: 810; line-height: 1.3; }
.guide-accordion > summary::-webkit-details-marker { display: none; }
.guide-accordion[open] > summary { border-bottom: 1px solid var(--line); background: #f5faf7; }

.accordion-icon { position: relative; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--mint); }
.accordion-icon::before, .accordion-icon::after { content: ""; position: absolute; top: 13px; left: 8px; width: 12px; height: 2px; border-radius: 2px; background: var(--green); }
.accordion-icon::after { transform: rotate(90deg); transition: transform .18s ease; }
.guide-accordion[open] .accordion-icon::after { transform: rotate(0); }
.guide-accordion-body { padding: 18px; }
.guide-accordion-body > :first-child { margin-top: 0 !important; }
.guide-accordion-body > :last-child { margin-bottom: 0 !important; }
.guide-accordion-body p, .guide-accordion-body li { font-size: 15px; line-height: 1.68; }
.guide-accordion-body .fact-list { margin: 0; }
.faq-questions { display: grid; gap: 0; }
.faq-item { padding: 16px 2px; }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { padding-bottom: 0; }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0 0 7px; color: var(--ink); font-size: 16px; line-height: 1.4; }
.faq-item p { margin: 0; color: var(--muted); }

.faq { display: grid; gap: 8px; border: 0; }
.faq details { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fbfdfc; }
.faq summary { position: relative; padding: 15px 42px 15px 16px; list-style: none; cursor: pointer; color: var(--ink); font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 11px; right: 16px; color: var(--green); font-size: 22px; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0; padding: 0 16px 16px; color: var(--muted); font-size: 14px; }

.side { position: sticky; top: 102px; }
.side-card { margin-bottom: 13px; padding: 21px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.side-card h3 { font-size: 19px; }
.side-card p { margin: 9px 0 14px; color: var(--muted); font-size: 13px; }
.side-links a { display: block; padding: 10px 0; border-bottom: 1px solid #e8efec; color: var(--ink-soft); font-size: 13.5px; font-weight: 750; }
.side-links a:last-child { border-bottom: 0; }
.side-links a:hover { color: var(--green-dark); }
.phone-box { border-color: var(--ink); color: #fff; background: var(--ink); }
.phone-box h3 { color: #fff; }
.phone-box p { color: #b9cec6; }
.phone-box .btn2 { width: 100%; }
.phone-big { margin: 8px 0 13px; color: #fff; font-size: 22px; font-weight: 900; }
.phone-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-actions a { padding: 9px; border-radius: 9px; color: var(--ink); background: #fff; text-align: center; font-size: 13px; font-weight: 800; }

.location-picker, .article-local-selector { margin: 25px 0; padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: #f5f9f7; }
main > .article-local-selector { width: min(calc(100% - 40px), var(--content-max)); margin: 0 auto 76px; }
.location-picker h3 { margin: 0 0 5px; font-size: 20px; }
.location-picker p { margin: 0 0 13px; color: var(--muted); }
.location-chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }

.location-chips a, .city-link-list a { display: flex; min-height: 43px; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-soft); background: #fff; font-size: 13px; font-weight: 760; transition: border-color .16s ease, color .16s ease, transform .16s ease; }
.location-chips a::after, .city-link-list a::after { content: "→"; color: var(--green); }
.location-chips a:hover, .city-link-list a:hover { transform: translateY(-1px); border-color: #acd3c2; color: var(--green-dark); }
.article-local-selector h2 { margin: 4px 0 7px; font-size: 29px; }
.article-local-selector p { margin: 0 0 17px; color: var(--muted); }
.local-selector-copy { max-width: 70ch; margin-bottom: 16px; }
.article-province-browser { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.article-province > summary { min-height: 53px; padding: 12px 14px; font-size: 15px; }
.article-city-links { grid-template-columns: 1fr; padding: 4px 14px 10px; }
.article-city-links a { min-height: 41px; font-size: 13px; }

.article-local-finder { margin: 34px 0 24px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #f5f9f7; }
.article-local-finder > h2 { margin: 0 0 6px; font-size: 28px; }
.article-local-finder > p { margin: 0 0 15px; color: var(--muted); font-size: 14px; }
.article-local-finder .guide-accordion { box-shadow: none; }
.city-link-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }

details.sources-compact { margin-top: 22px; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none !important; }
details.sources-compact > summary { min-height: 46px; padding: 11px 2px; color: var(--muted); background: transparent !important; font-size: 12.5px; }
details.sources-compact .accordion-icon { width: 20px; height: 20px; flex-basis: 20px; }
details.sources-compact .accordion-icon::before, details.sources-compact .accordion-icon::after { top: 9px; left: 5px; width: 10px; }
details.sources-compact .guide-accordion-body { padding: 6px 2px 12px; }
details.sources-compact .guide-accordion-body p, details.sources-compact .guide-accordion-body li,
.source-explainer, .sources-list, .source-check { color: var(--muted) !important; font-size: 12.5px !important; line-height: 1.55 !important; }
.sources-list { padding-left: 20px !important; }

.table-scroll, .mini-table, .cost-table { width: 100%; overflow-x: auto; margin: 19px 0; border: 1px solid var(--line); border-radius: 13px; background: #fff; -webkit-overflow-scrolling: touch; }
.article table, .mini-table table, .cost-table table { width: 100%; min-width: 640px; margin: 0; border-collapse: collapse; font-size: 13.5px; }
.article th, .article td, .mini-table th, .mini-table td, .cost-table th, .cost-table td { padding: 13px 14px; border: 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: normal; word-break: normal; }
.article th, .mini-table th, .cost-table th { color: #4f665d; background: #eef6f2; font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.article tr:last-child td, .mini-table tr:last-child td, .cost-table tr:last-child td { border-bottom: 0; }

.lede-small { margin: -5px 0 15px !important; color: var(--muted) !important; font-size: 16px !important; }
.simple-decision { display: grid; gap: 8px; margin: 14px 0 27px; }
.simple-decision .fact-row { grid-template-columns: 155px minmax(0, 1fr); }
.compare-local { margin: 22px 0; }

/* Compact template used by four short guides */
main > .article { width: min(calc(100% - 40px), 900px); margin: 56px auto 76px; padding: clamp(26px, 4.5vw, 48px); }
main > .article > .article-shell { display: block; padding: 0; }
main > .article .eyebrow { margin-bottom: 0; }
main > .article .article-local-finder { margin-top: 36px; }

/* Contact and legal */
.contact-simple { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 25px; padding: 34px 0 76px; }
.contact-form, .contact-side, .legal { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 10px 34px rgba(16, 39, 32, .045); }
.contact-side { background: var(--ink); color: #fff; }
.contact-side h3 { color: #fff; font-size: 22px; }
.contact-side p { color: #b9cec6; font-size: 14px; }
.support-number { margin-top: 24px; padding-top: 19px; border-top: 1px solid rgba(255, 255, 255, .13); }
.support-number b { display: block; margin-bottom: 7px; color: #8fc2ad; font-size: 10.5px; letter-spacing: .11em; text-transform: uppercase; }
.support-number a { color: #fff; font-size: 25px; font-weight: 850; letter-spacing: -.025em; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.field { display: flex; flex-direction: column; gap: 6px; color: var(--ink-soft); font-size: 13px; font-weight: 750; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; padding: 11px 12px; border: 1px solid var(--line-strong); border-radius: 10px; color: var(--ink); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.legal { max-width: 860px; margin: 0 auto 76px; }
.legal h2 { margin: 32px 0 11px; font-size: 26px; }
.legal p, .legal li { color: #40584f; }

/* Calls to action and footer */
.cta { padding: 22px 0 76px; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 28px; overflow: hidden; padding: 34px; border-radius: 22px; color: #fff; background: radial-gradient(circle at 100% 0, rgba(63, 170, 130, .28), transparent 18rem), var(--ink); box-shadow: var(--shadow); }
.cta-box h2, .cta-box h3 { color: #fff; font-size: 30px; }
.cta-box p { max-width: 64ch; margin: 8px 0 0; color: #b9cec6; }
.cta-box .btn { flex: 0 0 auto; }

.footer { padding: 58px 0 26px; color: #dceae4; background: #0a1f19; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, minmax(125px, 1fr)); gap: 38px; }
.footer .brand-main { color: #fff; }
.footer .brand-sub { color: #ffb7b0 !important; background: rgba(223, 90, 79, .14); }
.footer .brand-mark { box-shadow: none; }
.footer p { max-width: 45ch; color: #94afa4; font-size: 13px; }
.footer h4 { margin: 0 0 14px; color: #7fa596; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; }
.footer a:not(.brand) { display: block; width: fit-content; margin: 8px 0; color: #d6e6df; font-size: 13.5px; }
.footer a:not(.brand):hover { color: #fff; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-top: 37px; padding-top: 20px; border-top: 1px solid #233a32; color: #829d92; font-size: 11.5px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 38px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .city-grid-large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:nth-child(4) { grid-column: 2; }
}

@media (max-width: 900px) {
  .links { display: none; }
  .mobile-menu { display: block; }
  .nav-actions > .btn { display: none; }
  .hero { padding-top: 52px; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 14ch; }
  .location-first { max-width: 700px; }
  .article-shell { grid-template-columns: 1fr; }
  .side { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .side-card { margin: 0; }
  .index-grid { grid-template-columns: 1fr; }
  .filter { position: static; display: flex; gap: 16px; overflow-x: auto; white-space: nowrap; }
  .filter h3 { display: none; }
  .filter a { border: 0; }
  .contact-simple { grid-template-columns: 1fr; }
  .contact-side { order: -1; }
}

@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 30px), var(--content-max)); }
  .topline { min-height: 31px; font-size: 11px; }
  .topline .wrap { min-height: 31px; }
  .nav { min-height: 70px; }
  .brand { gap: 9px; }
  .brand-mark, .brand-mark img { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-main { font-size: 16px; }
  .brand-sub { min-height: 20px; padding-inline: 6px; font-size: 8px !important; }
  .hero { padding: 42px 0 54px; }
  .hero h1 { max-width: none; font-size: clamp(39px, 11vw, 50px); }
  .lead, .page-hero .lead { font-size: 17px; }
  .location-first { padding: 23px 18px; border-radius: 21px; }
  .location-first h2 { font-size: 27px; }
  .home-city-list { grid-template-columns: 1fr; }
  .home-city-list .home-province-all { grid-column: auto; }
  .section { padding: 58px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .section h2 { font-size: 34px; }
  .steps, .cards, .city-summary-grid { grid-template-columns: 1fr; }
  .step { min-height: 0; padding: 23px; }
  .step h3 { margin-top: 28px; }
  .card { min-height: 205px; }
  .page-hero { padding: 42px 0 31px; }
  .page-hero h1 { font-size: clamp(36px, 10.7vw, 47px); }
  .province-browser, .article-province-browser { grid-template-columns: 1fr; }
  .province-city-list { grid-template-columns: 1fr; }
  .province-city-list .province-overview { grid-column: auto; }
  .local-intro { padding: 27px 20px; border-radius: 21px; }
  .local-intro::before { position: static; display: inline-flex; margin-bottom: 14px; }
  .local-intro h2 { font-size: 30px; }
  .city-summary-grid .decision-item { min-height: 0; }
  .province-header { grid-template-columns: 1fr; gap: 9px; }
  .city-grid-large { grid-template-columns: 1fr; }
  .city-card-link { min-height: 170px; }
  .guide-section-label { display: block; }
  .guide-section-label > span { display: block; margin-top: 7px; }
  .latest-guides { width: calc(100% - 30px); margin-bottom: 58px; padding: 20px; }
  .list-card { grid-template-columns: 1fr; }
  .article-shell { width: calc(100% - 30px); padding-top: 22px; padding-bottom: 58px; }
  .article { padding: 22px 17px; border-radius: 16px; }
  .article h1 { font-size: 37px; }
  .article-dek { font-size: 16.5px; }
  .article h2 { margin-top: 34px; font-size: 24px; }
  .article h3 { font-size: 20px; }
  .article p, .article li { font-size: 16px; line-height: 1.68; }
  .decision, .location-chips { grid-template-columns: 1fr; }
  .fact-row, .simple-decision .fact-row { grid-template-columns: 1fr; gap: 5px; }
  .guide-accordion > summary { min-height: 56px; padding: 14px; font-size: 16px; }
  .guide-accordion-body { padding: 16px 14px; }
  .guide-accordion-body p, .guide-accordion-body li { font-size: 15.5px; }
  .side { grid-template-columns: 1fr; }
  .location-picker, .article-local-selector, .article-local-finder { padding: 18px 14px; }
  main > .article-local-selector { width: calc(100% - 30px); margin-bottom: 58px; }
  .city-link-list { grid-template-columns: 1fr; }
  main > .article { width: calc(100% - 30px); margin: 32px auto 58px; padding: 22px 17px; }
  .contact-simple { padding-top: 22px; padding-bottom: 58px; }
  .contact-form, .contact-side, .legal { padding: 22px 18px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .cta { padding-bottom: 58px; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 27px 22px; }
  .footer { padding-top: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(4) { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .brand-main { font-size: 15px; }
  .brand-sub { padding-inline: 5px; font-size: 7.5px !important; }
  .hero-actions .btn, .hero-actions .btn2 { width: 100%; }
  .province-drop > summary { padding-inline: 15px; font-size: 16px; }
  .article h1 { font-size: 34px; }
  .phone-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .topline, .header, .footer, .side, .cta, .mobile-panel { display: none !important; }
  body { color: #000; background: #fff; }
  .article-shell { display: block; width: 100%; padding: 0; }
  .article { border: 0; box-shadow: none; }
  details { break-inside: avoid; }
}
