/*
Theme Name: Aldo Parrotta — Ward 2
Theme URI: https://votealdoparrotta.ca
Author: Mezzo Digital
Author URI: https://mezzo.digital
Description: Campaign theme for Aldo Parrotta, candidate for Welland City Council, Ward 2. Clean editorial design with a marketing-style front page and a working "Ward 2 Resources" directory. Listen. Act. Collaborate.
Version: 1.9.4
Requires at least: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aldo-parrotta-ward2
*/

/* ═══════════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════════ */
:root {
	--white:       #ffffff;
	--surface:     #f5f7fa;
	--surface-2:   #e6ecf3;
	--border:      #d4dbe5;
	--border-soft: #e2e7ee;

	--ink:         #0b1220;
	--ink-soft:    #2b3648;
	--ink-muted:   #5b6678;

	--navy:        #0a2540;
	--navy-2:      #0f2c5c;
	--blue:        #1d4ed8;
	--navy-hover:  #1d4274;
	--blue-2:      #2563eb;
	--blue-3:      #3b82f6;
	--blue-4:      #60a5fa;
	--blue-tint:   #eef4ff;

	--red:         #c8102e;
}

/* ═══════════════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: 'Geist', system-ui, -apple-system, sans-serif;
	font-weight: 400;
	line-height: 1.55;
	font-size: 17px;
	letter-spacing: -0.011em;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
	font-family: 'Geist', sans-serif;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin: 0;
}
p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 32px;
}

.eyebrow {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--red);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.eyebrow.muted { color: var(--ink-muted); }

.demo-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: rgba(200, 16, 46, 0.08);
	color: var(--red);
	border-radius: 4px;
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.15s;
	border: 1px solid transparent;
	cursor: pointer;
}
.btn-primary {
	background: var(--navy);
	color: var(--white);
}
.btn-primary:hover {
	background: var(--navy-hover);
	transform: translateY(-1px);
}
.btn-ghost {
	background: transparent;
	color: var(--navy);
	border-color: var(--border);
}
.btn-ghost:hover {
	border-color: var(--navy);
	background: var(--surface);
}
.btn-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border-radius: 8px;
	background: var(--white);
	color: var(--navy);
	border: 1.5px solid var(--navy);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1;
	transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-inline:hover,
.btn-inline:focus-visible {
	background: var(--navy-hover);
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 8px 18px -10px rgba(10, 37, 64, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════════════ */
.topbar {
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	z-index: 60;
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}
.wordmark {
	font-family: 'Geist', sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.025em;
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.wordmark .tag {
	font-family: 'Geist', system-ui, sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--red);
	background: rgba(200, 16, 46, 0.08);
	padding: 4px 8px;
	border-radius: 4px;
	line-height: 1;
}
.nav {
	display: flex;
	gap: 32px;
	align-items: center;
}
.nav a:not(.btn-cta) {
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 500;
	transition: color .15s;
}
.nav a:not(.btn-cta):hover { color: var(--navy-hover); }
.nav a.active:not(.btn-cta) {
	color: var(--navy);
	font-weight: 600;
}
.btn-cta {
	background: var(--navy);
	color: var(--white);
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background .15s, transform .15s;
}
.btn-cta:hover {
	background: var(--navy-hover);
	transform: translateY(-1px);
}

/* ─── Hamburger toggle — hidden on desktop, shown at ≤900px ─── */
.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
	width: 44px;
	height: 44px;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border-radius: 6px;
	transition: background .15s;
}
.nav-toggle:hover { background: var(--surface); }
.nav-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile menu drawer — collapsed by default, hidden on desktop ─── */
.nav-mobile { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — front page (two-up image)
═══════════════════════════════════════════════════════════════════ */
.hero {
	padding: 88px 0 96px;
}
.hero .container {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 80px;
	align-items: center;
}
.hero-eyebrow { margin-bottom: 36px; }
.hero h1 {
	font-size: clamp(36px, 4.8vw, 64px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.4;
	color: var(--navy);
}
.hero h1 .accent {
	position: relative;
	display: block;
	width: fit-content;
	max-width: 100%;
}
.hero h1 .accent::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 6px;
	background: var(--red);
	border-radius: 1px;
	z-index: -1;
	opacity: 0.95;
}
.hero .lede {
	font-size: 20px;
	line-height: 1.5;
	color: var(--ink-soft);
	margin-top: 28px;
	max-width: 540px;
	font-weight: 400;
}
.hero-ctas {
	margin-top: 40px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.hero-image {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 20px 40px -20px rgba(10, 37, 64, 0.25);
}
.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-image-caption {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: var(--white);
	padding: 8px 14px;
	border-radius: 6px;
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.hero-image-caption i { color: var(--red); }

/* HERO — narrow (resources / generic page) */
.hero-narrow { padding: 72px 0 56px; }
/* Reset the .hero 2-col grid — .hero-narrow is a stack (eyebrow / h1 / lede), no side image. */
.hero-narrow .container { display: block; }
.hero-narrow h1 {
	font-size: clamp(40px, 5.6vw, 72px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
	color: var(--navy);
	max-width: 18ch;
}
.hero-narrow .lede {
	font-size: 19px;
	line-height: 1.5;
	color: var(--ink-soft);
	margin-top: 24px;
	max-width: 60ch;
}
.hero-narrow .hero-eyebrow { margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════════════
   PILLAR PREVIEW (3-up cards)
═══════════════════════════════════════════════════════════════════ */
.preview {
	padding: 70px 0;
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.preview-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.preview-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s;
}
.preview-card:hover {
	border-color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -16px rgba(10, 37, 64, 0.25);
}
.preview-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: var(--blue-tint);
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}
.preview-card h3 {
	font-size: 28px;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: -0.03em;
}
.preview-card p {
	color: var(--ink-muted);
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.45;
	margin: 0;
}
.preview-card .arrow {
	margin-top: auto;
	padding-top: 12px;
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .15s;
}
.preview-card:hover .arrow { color: var(--navy-hover); }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════════ */
.about { padding: 100px 0; }
.about .container {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 80px;
	align-items: start;
}
.about-aside {
	position: sticky;
	top: 100px;
	padding-right: 24px;
	border-right: 1px solid var(--border);
}
.about-aside .lifelong {
	font-size: 22px;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 18px 0 32px;
}
.stats {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.stat {
	padding: 18px 0;
	border-top: 1px solid var(--border-soft);
}
.stat:first-child { border-top: 0; padding-top: 0; }
.stat-num {
	font-size: 40px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -0.04em;
	line-height: 1;
}
.stat-label {
	font-size: 13px;
	color: var(--ink-muted);
	margin-top: 8px;
	line-height: 1.45;
}
.about-body h2 {
	font-size: clamp(36px, 4.6vw, 56px);
	color: var(--navy);
	letter-spacing: -0.035em;
	margin: 14px 0 28px;
}
.about-body p {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-soft);
}
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-signature {
	margin-top: 16px;
	font-family: 'Geist', sans-serif;
	font-style: italic;
	font-size: 18px;
	color: var(--navy);
	font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   PLATFORM (3 pillars × 4 planks)
═══════════════════════════════════════════════════════════════════ */
.platform {
	padding: 100px 0;
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.platform-head {
	max-width: 720px;
	margin-bottom: 60px;
}
.platform-head .eyebrow { margin-bottom: 18px; }
.platform-head h2 {
	font-size: clamp(36px, 4.6vw, 56px);
	color: var(--navy);
	letter-spacing: -0.035em;
	margin-bottom: 14px;
}
.platform-head p {
	font-size: 17px;
	color: var(--ink-muted);
	line-height: 1.55;
	margin: 0;
}
.pillar {
	padding: 56px 0;
}
.pillar:first-of-type { padding-top: 0; }
.pillar .container {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 80px;
	align-items: start;
}
.pillar-marker {
	position: sticky;
	top: 100px;
}
.pillar-num {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 14px;
}
.pillar-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: var(--blue-tint);
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-bottom: 18px;
}
.pillar-name {
	font-size: clamp(36px, 4vw, 48px);
	color: var(--navy);
	letter-spacing: -0.035em;
	margin: 0 0 14px;
}
.pillar-tagline {
	font-size: clamp(20px, 2.2vw, 28px);
	color: var(--ink-muted);
	line-height: 1.4;
	margin: 0;
	max-width: 32ch;
}
.planks {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.plank {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 22px 26px;
	display: grid;
	grid-template-columns: 56px auto 1fr;
	gap: 22px;
	align-items: center;
	transition: all .2s;
}
.plank:hover {
	border-color: var(--navy);
	box-shadow: 0 10px 22px -16px rgba(10, 37, 64, 0.25);
}
.plank-num {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-muted);
	letter-spacing: 0.04em;
}
.plank-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--blue-tint);
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.plank h4 {
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.015em;
	margin: 0;
	line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION BASE (shared by resources page)
═══════════════════════════════════════════════════════════════════ */
section.block { padding: 90px 0; }
section.block.alt {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.section-head {
	margin-bottom: 48px;
	max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
	font-size: clamp(32px, 4.2vw, 48px);
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 14px;
}
.section-head p {
	font-size: 17px;
	color: var(--ink-muted);
	line-height: 1.55;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SUB-NAV (resources page)
═══════════════════════════════════════════════════════════════════ */
.subnav {
	position: sticky;
	top: 65px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	z-index: 40;
}
.subnav-inner {
	display: flex;
	gap: 4px;
	padding: 14px 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-inner a {
	flex-shrink: 0;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-soft);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .15s;
	white-space: nowrap;
}
.subnav-inner a:hover {
	background: var(--surface);
	color: var(--navy-hover);
}
.subnav-inner a i {
	font-size: 16px;
	color: var(--ink-muted);
}
.subnav-inner a:hover i { color: var(--navy-hover); }

/* ═══════════════════════════════════════════════════════════════════
   WARD MAP
═══════════════════════════════════════════════════════════════════ */
.map-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* Static ward-boundary map figure (replaces former Leaflet container). */
.ward-map-static {
	margin: 0;
	width: 100%;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.ward-map-static .ward-map-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 640px;
	object-fit: contain;
	border-radius: 6px;
}
.ward-map-static figcaption {
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--ink-muted);
	text-align: center;
	max-width: 44ch;
}
.ward-map-static .ward-map-img { cursor: zoom-in; transition: opacity .15s; }
.ward-map-static .ward-map-img:hover { opacity: 0.92; }

/* ─── Lightbox — quick, dependency-free. Opens a fixed overlay with a
       scroll-zoomable stage. Image toggles between fit and natural size. ─── */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(11, 18, 32, 0.94);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	padding: 60px 20px 20px;
	gap: 12px;
}
.lightbox[hidden] { display: none; }
.lightbox-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background .15s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.lightbox-stage {
	flex: 1;
	min-height: 0;
	overflow: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-in;
	border-radius: 8px;
	/* Hide ugly scrollbars but keep scrolling functional. */
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.lightbox-stage::-webkit-scrollbar { width: 8px; height: 8px; }
.lightbox-stage::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 4px; }
.lightbox-stage img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
}
.lightbox-stage.is-zoomed {
	cursor: zoom-out;
	align-items: flex-start;
	justify-content: flex-start;
}
.lightbox-stage.is-zoomed img {
	max-width: none;
	max-height: none;
	width: auto;
	height: auto;
}
.lightbox-hint {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ─── About avatar — circular headshot above the About Aldo aside ─── */
.about-avatar {
	margin: 0 0 22px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--surface-2);
	border: 3px solid var(--white);
	box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08), 0 0 0 1px var(--border);
}
.about-avatar .about-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.map-side {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.map-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px 26px;
}
.map-card h3 {
	font-size: 18px;
	color: var(--navy);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.map-card h3 i { color: var(--red); font-size: 22px; }
.map-card p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-muted);
	margin: 0;
}
.map-card.numbers {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}
.map-card.numbers h3 { color: var(--white); }
.map-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 4px;
}
.map-stat .num {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--white);
	line-height: 1;
}
.map-stat .label {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES DIRECTORY
═══════════════════════════════════════════════════════════════════ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.service-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: all .2s;
	text-decoration: none;
	color: inherit;
}
.service-card:hover {
	border-color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -16px rgba(10, 37, 64, 0.25);
}
.service-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--blue-tint);
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	transition: all .2s;
}
.service-card:hover .service-icon {
	background: var(--navy);
	color: var(--white);
}
.service-card h4 {
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.015em;
}
.service-card p {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.5;
	margin: 0;
	flex: 1;
}
.service-card .arrow {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all .15s;
}
.service-card:hover .arrow {
	color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════════
   COUNCIL MEETINGS
═══════════════════════════════════════════════════════════════════ */
.council-wrap {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: start;
}
.meeting-list {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}
.meeting-row {
	padding: 22px 26px;
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: 24px;
	align-items: center;
	border-bottom: 1px solid var(--border-soft);
	transition: background .15s;
}
.meeting-row:last-child { border-bottom: 0; }
.meeting-row:hover { background: var(--surface); }
.meeting-date {
	text-align: center;
	border-right: 1px solid var(--border-soft);
	padding-right: 24px;
}
.meeting-date .month {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--red);
	font-weight: 500;
}
.meeting-date .day {
	font-size: 28px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-top: 4px;
}
.meeting-info h4 {
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.015em;
	margin-bottom: 4px;
}
.meeting-info .meta {
	font-size: 13px;
	color: var(--ink-muted);
	display: flex;
	gap: 14px;
	align-items: center;
}
.meeting-info .meta i { font-size: 14px; }
.meeting-tag {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--blue-tint);
	color: var(--navy);
}
.meeting-tag.live {
	background: rgba(200, 16, 46, 0.1);
	color: var(--red);
}
.speak-card {
	background: var(--navy);
	color: var(--white);
	padding: 32px 30px;
	border-radius: 12px;
}
.speak-card .eyebrow {
	color: rgba(255,255,255,0.65);
	margin-bottom: 14px;
}
.speak-card .eyebrow::before { background: rgba(255,255,255,0.4); }
.speak-card h3 {
	color: var(--white);
	font-size: 24px;
	margin-bottom: 18px;
}
.speak-card ol {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	counter-reset: speak;
}
.speak-card ol li {
	counter-increment: speak;
	padding: 10px 0 10px 38px;
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255,255,255,0.85);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.speak-card ol li:last-child { border-bottom: 0; }
.speak-card ol li::before {
	content: counter(speak, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 12px;
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--red);
	letter-spacing: 0.04em;
}
/* ═══════════════════════════════════════════════════════════════════
   BUDGET
═══════════════════════════════════════════════════════════════════ */
.budget-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.budget-head .section-head { margin-bottom: 0; }
.budget-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}
.budget-stat {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 22px 24px;
}
.budget-stat .label {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-bottom: 12px;
}
.budget-stat .num {
	font-size: 32px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -0.03em;
	line-height: 1;
}
.budget-stat .sub {
	font-size: 13px;
	color: var(--ink-muted);
	margin-top: 8px;
}
.budget-stat .sub .up { color: #16a34a; font-weight: 600; }
.budget-stat .sub .down { color: var(--red); font-weight: 600; }

/* Highlight stat — the all-in total. Inverted navy card so it reads as the headline number. */
.budget-stat.highlight {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}
.budget-stat.highlight .label { color: rgba(255, 255, 255, 0.7); }
.budget-stat.highlight .num   { color: var(--white); }
.budget-stat.highlight .sub   { color: rgba(255, 255, 255, 0.78); }
.budget-stat.highlight .sub .up { color: #6ee7b7; }

/* Source/citation tag — same chip as .demo-tag but navy-tinted instead of red,
   so it reads as informational provenance, not a warning. */
.demo-tag.source-tag {
	background: var(--blue-tint);
	color: var(--navy);
}

/* ─── Budget Story panel — a clean breakdown list under the headline stats ─── */
.budget-story {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 28px 24px;
	margin-bottom: 40px;
}
.budget-story-head {
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-soft);
}
.budget-story-head h3 {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0 0 4px;
}
.budget-story-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2px;
}
.budget-story-list li {
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: start;
	gap: 14px;
	padding: 14px 0;
}
.budget-story-list li:last-of-type { border-bottom: none; }
.budget-story-list li > i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--blue-tint);
	color: var(--navy);
	font-size: 18px;
	flex-shrink: 0;
}
.budget-story-list li > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.budget-story-list li strong {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.005em;
}
.budget-story-list li span {
	font-size: 14px;
	color: var(--ink-muted);
	line-height: 1.55;
}
/* Total row — emphasized, separated from preceding items. */
.budget-story-list li.total {
	margin-top: 6px;
	padding-top: 18px;
	border-top: 2px solid var(--navy);
	border-bottom: none;
}
.budget-story-list li.total > i {
	background: var(--navy);
	color: var(--white);
}
.budget-story-list li.total strong { color: var(--navy); font-size: 15px; }
.budget-story-list li.total span { color: var(--ink-soft); }
/* Footer note — the editorial takeaway under the breakdown. */
.budget-story-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 18px 0 0;
	padding: 14px 16px;
	background: var(--surface);
	border-radius: 8px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--ink-soft);
}
.budget-story-note i {
	flex-shrink: 0;
	font-size: 16px;
	color: var(--navy);
	margin-top: 2px;
}
@media (max-width: 720px) {
	.budget-story { padding: 22px 20px; }
	.budget-story-list li { grid-template-columns: 30px 1fr; gap: 12px; }
	.budget-story-list li > i { width: 30px; height: 30px; font-size: 15px; }
}

.charts-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 24px;
}

/* Chart.js canvas wrapper — Chart.js with maintainAspectRatio:false needs an
   explicit parent height, and the canvas can otherwise burst past the column
   width on smaller viewports. Force both. */
.chart-container {
	position: relative;
	width: 100%;
	height: 320px;
	max-width: 100%;
}
.chart-container canvas {
	max-width: 100% !important;
	height: 100% !important;
	width: 100% !important;
}
.chart-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 30px;
}
.chart-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
	gap: 16px;
}
.chart-card h3 {
	font-size: 20px;
	color: var(--navy);
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}
.chart-card p.chart-sub {
	font-size: 13px;
	color: var(--ink-muted);
	margin: 0;
}
/* ═══════════════════════════════════════════════════════════════════
   SENIOR / ACCESSIBILITY PAIR
═══════════════════════════════════════════════════════════════════ */
.pair-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.pair-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 36px 36px 32px;
}
.pair-card-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
}
.pair-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: var(--blue-tint);
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
}
.pair-card h3 {
	font-size: 24px;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.025em;
	margin: 0;
}
.pair-card .pair-sub {
	font-size: 13px;
	color: var(--ink-muted);
	margin: 2px 0 0;
}
.pair-list { list-style: none; padding: 0; margin: 0; }
.pair-list li {
	border-bottom: 1px solid var(--border-soft);
}
.pair-list li:last-child { border-bottom: 0; }
.pair-list li > a {
	padding: 16px 12px;
	margin: 0 -12px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: inherit;
	text-decoration: none;
	border-radius: 10px;
	transition: background .18s ease;
}
.pair-list li > a:hover,
.pair-list li > a:focus-visible {
	background: var(--surface);
}
.pair-list li i.lead {
	color: var(--navy);
	font-size: 20px;
	margin-top: 2px;
	flex-shrink: 0;
}
.pair-list .body { flex: 1; }
.pair-list .body strong {
	font-weight: 600;
	color: var(--ink);
	font-size: 15px;
	display: block;
	margin-bottom: 3px;
	transition: color .18s ease;
}
.pair-list li > a:hover .body strong,
.pair-list li > a:focus-visible .body strong {
	color: var(--navy-hover);
}
.pair-list .body span {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.45;
}
.pair-list .arrow {
	color: var(--navy);
	font-size: 18px;
	margin-top: 4px;
	opacity: 0.55;
	transition: opacity .18s ease, color .18s ease;
}
.pair-list li > a:hover .arrow,
.pair-list li > a:focus-visible .arrow {
	color: var(--navy-hover);
	opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA — dark
═══════════════════════════════════════════════════════════════════ */
.cta-section {
	padding: 100px 0;
	background: var(--navy);
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 30%, rgba(29, 78, 216, 0.4) 0%, transparent 55%),
		radial-gradient(circle at 15% 80%, rgba(29, 78, 216, 0.25) 0%, transparent 50%);
	pointer-events: none;
}
.cta-section .container {
	position: relative;
	text-align: center;
	max-width: 720px;
}
.cta-section .eyebrow {
	color: rgba(255,255,255,0.75);
	justify-content: center;
	margin: 0 auto 22px;
}
.cta-section .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-section h2 {
	color: var(--white);
	font-size: clamp(32px, 4.2vw, 52px);
	max-width: 20ch;
	margin: 0 auto 20px;
	font-weight: 600;
	letter-spacing: -0.035em;
}
.cta-section p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.75);
	max-width: 50ch;
	margin: 0 auto 36px;
	line-height: 1.55;
}
.cta-section .btn-primary {
	background: var(--white);
	color: var(--navy);
}
.cta-section .btn-primary:hover {
	background: var(--navy-hover);
	color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
	padding: 56px 0;
	background: var(--white);
	border-top: 1px solid var(--border);
}
.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.footer-brand .wordmark { font-size: 22px; }
.footer-brand p {
	margin: 14px 0 0;
	color: var(--ink-muted);
	font-size: 14px;
	max-width: 48ch;
	line-height: 1.6;
}
.footer-brand p.footer-legal {
	margin-top: 12px;
	font-size: 12px;
	color: var(--ink-muted);
	opacity: 0.75;
}
.socials {
	display: flex;
	gap: 8px;
}
.socials a {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--surface);
	color: var(--ink-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease, color .15s ease;
	font-size: 18px;
}
.socials a:hover,
.socials a:focus-visible {
	background: var(--navy-hover);
	color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   GENERIC PAGE
═══════════════════════════════════════════════════════════════════ */
.entry-content {
	max-width: 760px;
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-soft);
}
.entry-content h2 {
	font-size: 32px;
	color: var(--navy);
	margin: 36px 0 16px;
}
.entry-content h3 {
	font-size: 22px;
	color: var(--navy);
	margin: 28px 0 12px;
}
/* .entry-content a — handled by the unified inline-link rule near bottom of file. */

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
	.hero .container { grid-template-columns: 1fr; gap: 48px; }
	.hero { padding: 64px 0 56px; }
	.about .container, .pillar .container { grid-template-columns: 1fr; gap: 40px; }
	.about-aside, .pillar-marker { position: static; border-right: 0; padding-right: 0; }
}
@media (max-width: 1024px) {
	.services-grid { grid-template-columns: repeat(3, 1fr); }
	.budget-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.nav { display: none; }
	.nav-toggle { display: inline-flex; }

	/* Full-width drawer sliding out from under the sticky topbar. */
	.nav-mobile {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border-top: 1px solid var(--border);
		padding: 8px 20px 20px;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		box-shadow: 0 14px 28px rgba(11, 18, 32, 0.08);
		transition: max-height .28s ease, opacity .2s ease, visibility 0s linear .28s;
	}
	.nav-mobile.is-open {
		max-height: 80vh;
		opacity: 1;
		visibility: visible;
		transition: max-height .28s ease, opacity .2s ease, visibility 0s linear 0s;
		overflow-y: auto;
	}
	.nav-mobile a {
		padding: 16px 4px;
		font-family: 'Geist', system-ui, sans-serif;
		font-size: 16px;
		font-weight: 500;
		color: var(--ink-soft);
		border-bottom: 1px solid var(--border-soft);
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.nav-mobile a:hover { color: var(--navy); }
	.nav-mobile a.active { color: var(--navy); font-weight: 600; }
	.nav-mobile a.btn-cta {
		background: var(--navy);
		color: var(--white);
		margin-top: 14px;
		padding: 14px 18px;
		border-radius: 8px;
		justify-content: center;
		border-bottom: 0;
		font-size: 14px;
		font-weight: 600;
	}
	.nav-mobile a.btn-cta:hover { background: var(--navy-hover); color: var(--white); }

	/* Lock background scroll while the drawer is open. */
	body.nav-open { overflow: hidden; }

	.preview-grid { grid-template-columns: 1fr; }
	.map-wrap, .council-wrap, .charts-grid, .pair-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.map-side { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	section.block, .about, .platform { padding: 64px 0; }
	.chart-container { height: 320px; }
	.plank {
		grid-template-columns: 40px 1fr;
		gap: 14px;
	}
	.plank-num { grid-row: 1 / span 2; align-self: start; }
	.plank-icon { display: none; }
}
@media (max-width: 560px) {
	.container { padding: 0 20px; }
	.meeting-row {
		grid-template-columns: 70px 1fr;
		row-gap: 12px;
		padding: 18px 20px;
	}
	.meeting-row .meeting-tag { grid-column: 2; justify-self: start; }
	.meeting-date { padding-right: 18px; }
	.meeting-date .day { font-size: 24px; }
	.pair-card { padding: 28px 24px; }
	.budget-stat .num { font-size: 28px; }
	.hero h1 { font-size: clamp(40px, 12vw, 56px); }
}


/* ═══════════════════════════════════════════════════════════════════
   v1.1.0 — About lede + Platform display split
═══════════════════════════════════════════════════════════════════ */

/* Lede paragraph in about-body — bigger, navy, sets the tone for the bio. */
.about-body p.lede {
	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 500;
	color: var(--navy);
	line-height: 1.5;
	margin: 0 0 24px;
}

/* "3 Commitments. 12 Plans." display heading.
   The wrapper is still an <h2> for semantics; visual sizing comes from the spans. */
.platform-display {
	font-family: 'Geist', sans-serif;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: -0.04em;
	line-height: 1;
	margin: 0 0 18px;
}
.platform-display .display-lg,
.platform-display .display-md {
	display: block;
}
.platform-display .display-lg {
	font-size: clamp(40px, 6vw, 72px);
	white-space: nowrap;
}
.platform-display .display-md {
	font-size: clamp(28px, 4vw, 48px);
	color: var(--ink-muted);
	font-weight: 500;
	margin-top: 4px;
	white-space: nowrap;
}
.platform-display .num {
	color: var(--red);
	font-variant-numeric: tabular-nums;
}

/* Fluent Forms inside CTA section — render as a brand blue-grey surface card
   on the dark navy CTA background. Inputs stay white for clear field affordance. */
.cta-section .fluentform {
	max-width: 580px;
	margin: 36px auto 0;
	text-align: left;
	background: var(--surface-2);
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 30px 70px -36px rgba(0, 0, 0, 0.55);
	color: var(--ink);
}

/* Labels */
.cta-section .fluentform label,
.cta-section .fluentform .ff-el-input--label label {
	color: var(--navy);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	display: inline-block;
}

/* Text-like inputs + textarea + select */
.cta-section .fluentform input[type="text"],
.cta-section .fluentform input[type="email"],
.cta-section .fluentform input[type="tel"],
.cta-section .fluentform input[type="url"],
.cta-section .fluentform input[type="number"],
.cta-section .fluentform textarea,
.cta-section .fluentform select {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 11px 14px;
	font-size: 15px;
	font-family: 'Geist', system-ui, sans-serif;
	background: var(--white);
	color: var(--ink);
	transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
}
.cta-section .fluentform input:focus,
.cta-section .fluentform textarea:focus,
.cta-section .fluentform select:focus {
	border-color: var(--navy);
	outline: none;
	box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.10);
}
.cta-section .fluentform textarea { min-height: 110px; resize: vertical; }

/* Submit button — Fluent's default blue/styling is aggressive; use !important
   on all override properties to win cascade against the plugin's own CSS.
   The text label is often wrapped in a <span> child, so child colors are forced too. */
.cta-section .fluentform button[type="submit"],
.cta-section .fluentform input[type="submit"],
.cta-section .fluentform .ff-btn,
.cta-section .fluentform .ff-btn-submit,
.cta-section .fluentform .ff_btn_style,
.cta-section .fluentform button.ff_btn_style {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 14px 24px !important;
	border-radius: 8px !important;
	font-family: 'Geist', system-ui, sans-serif !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	background: var(--navy) !important;
	background-image: none !important;
	color: var(--white) !important;
	border: 1px solid transparent !important;
	cursor: pointer !important;
	line-height: 1 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	box-shadow: none !important;
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease !important;
}
/* Force white on EVERY descendant of the submit button — Fluent wraps the
   label in a <span class="ff_btn_text"> that takes its own color otherwise. */
.cta-section .fluentform button[type="submit"] *,
.cta-section .fluentform input[type="submit"] *,
.cta-section .fluentform .ff-btn *,
.cta-section .fluentform .ff-btn-submit *,
.cta-section .fluentform .ff_btn_style *,
.cta-section .fluentform button.ff_btn_style * {
	color: var(--white) !important;
	background: transparent !important;
}
.cta-section .fluentform button[type="submit"]:hover,
.cta-section .fluentform input[type="submit"]:hover,
.cta-section .fluentform .ff-btn:hover,
.cta-section .fluentform .ff-btn-submit:hover,
.cta-section .fluentform .ff_btn_style:hover,
.cta-section .fluentform button.ff_btn_style:hover {
	background: var(--navy-hover) !important;
	color: var(--white) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 10px 22px -14px rgba(10, 37, 64, 0.6) !important;
}
/* Kill the default arrow icon Fluent sometimes injects after the button text. */
.cta-section .fluentform button[type="submit"] svg,
.cta-section .fluentform .ff-btn svg,
.cta-section .fluentform .ff_btn_style svg {
	display: none !important;
}


/* ═══════════════════════════════════════════════════════════════════
   v1.4.0 — Email-eyebrow + council info block
═══════════════════════════════════════════════════════════════════ */

/* Contact line — email/phone shown as a small label above a CTA button.
   Uses the body font (no mono) and shares its link styling with map-card prose. */
.contact-line {
	font-size: 14px;
	color: var(--ink-muted);
	margin-bottom: 12px;
}
/* Unified inline text link — animated underline, navy → red on hover.
   Used everywhere a flowing text link appears: speak-card contact line,
   map-card prose, generic page content (.entry-content), and any future
   inline link via the .inline-link utility class. */
.contact-line a,
.map-card p a,
.entry-content a,
.inline-link {
	color: var(--navy);
	text-decoration: none;
	background-image: linear-gradient(var(--navy-hover), var(--navy-hover));
	background-size: 0% 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
	border-bottom: 1px solid var(--border);
	padding-bottom: 1px;
	transition: background-size 280ms cubic-bezier(0.65, 0, 0.35, 1), color 200ms ease;
}
.contact-line a:hover,
.contact-line a:focus-visible,
.map-card p a:hover,
.map-card p a:focus-visible,
.entry-content a:hover,
.entry-content a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
	color: var(--navy-hover);
	background-size: 100% 2px;
}

/* Dark-surface override — when .contact-line lives inside .speak-card
   (navy bg), invert the link colors so they're actually readable. */
.speak-card .contact-line {
	color: rgba(255, 255, 255, 0.75);
}
.speak-card .contact-line a {
	color: var(--white);
	border-bottom-color: rgba(255, 255, 255, 0.30);
	background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
}
.speak-card .contact-line a:hover,
.speak-card .contact-line a:focus-visible {
	color: var(--white);
}

/* Council info block — replaces the demo meeting-list. */
.council-info {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
}
.council-info .info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}
.council-info .info-list li {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-soft);
	align-items: flex-start;
}
.council-info .info-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.council-info .info-list li > i {
	color: var(--navy);
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}
.council-info .info-list li > div {
	flex: 1;
}
.council-info .info-list li strong {
	display: block;
	font-weight: 600;
	color: var(--ink);
	font-size: 15px;
	margin-bottom: 3px;
}
.council-info .info-list li span {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.45;
}
.council-info .info-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	padding-top: 18px;
	border-top: 1px solid var(--border-soft);
}
