:root {
	/* Colors */
	--navy: #071A33;
	--blue: #123C69;
	--deep: #050F1F;
	--gold: #C8A24A;
	--beige: #6B5524;
	--gold-soft: #F3E7C3;
	--light: #F6F8FB;
	--white: #fff;
	--gray: #5F6B7A;
	--border: #DDE3EC;
	--dark: #111827;

	/* Spacing Scale (Padding, Margin, Gap, Positioning) */
	--sp-xs: 0.5rem;
	--sp-sm: 0.625rem;
	--sp-md: 0.75rem;
	--sp-lg: 0.875rem;
	--sp-1: 1rem;
	--sp-2: 1.125rem;
	--sp-3: 1.25rem;
	--sp-4: 1.3125rem;
	--sp-5: 1.375rem;
	--sp-6: 1.5rem;
	--sp-7: 1.75rem;
	--sp-8: 1.875rem;
	--sp-9: 2rem;
	--sp-10: 2.125rem;
	--sp-11: 2.25rem;

	/* Typography Scale */
	--text-xs: 0.75rem;
	--text-sm: 0.8125rem;
	--text-base: 0.875rem;
	--text-md: 0.9375rem;
	--text-lg: 1.0625rem;
	--text-xl: 1.125rem;
	--text-2xl: 1.1875rem;
	--text-3xl: 1.3125rem;
	--text-4xl: 1.375rem;
	--text-5xl: 1.5rem;
	--text-6xl: 1.5625rem;
	--text-7xl: 1.625rem;
	--text-8xl: 1.875rem;
	--text-9xl: 2rem;
	--text-10xl: 2.25rem;
	--text-11xl: 2.375rem;

	/* Shared Properties */
	--border-w: 0.0625rem;
	--border-std: var(--border-w) solid var(--border);
	--radius-pill: 62.4375rem;
	--radius-card: var(--sp-2);
	--radius-lg: var(--sp-6);
	--transition-fast: 0.2s ease;
	--fw-black: 900;
}

* {
	box-sizing: border-box;
}

html, body {
	scroll-behavior: smooth !important;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--white);
	color: var(--dark);
	line-height: 1.6;
}

a {
	text-decoration: none;
}

/* ==========================================================================
   Typography & Base Elements
   ========================================================================== */

p {
	color: var(--gray);
	margin: 0;
}

h1, h2, h3 {
	color: var(--navy);
	margin: 0 0 var(--sp-lg);
}

h1 {
	font-size: 3.625rem; /* Kept explicit for hero impact */
	line-height: 1.05;
	margin-bottom: var(--sp-6);
	letter-spacing: -0.1rem;
	color: var(--white);
}

#intro h2{
	color: var(--white);
	font-size: var(--sp-3);
}

section {
	padding: var(--sp-9) 0;
	scroll-margin-top: 8.125rem;
}

/* ==========================================================================
   Layout Grids
   ========================================================================== */

header, 
main > section, 
footer, #map {
	display: grid;
	grid-template-columns: minmax(4%, 1fr) minmax(0, 77.5rem) minmax(4%, 1fr);
}

header > *, 
main > section > *, 
footer > *, #map > * {
	grid-column: 2;
}

.grid-3 {
	display: grid;
	gap: var(--sp-6);
	grid-template-columns: repeat(3, 1fr);
}

/* ==========================================================================
   Shared Components (Cards, Buttons, Tags)
   ========================================================================== */

.button-row {
	display: flex;
	gap: var(--sp-1);
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: var(--sp-lg) var(--sp-6);
	border-radius: var(--sp-sm);
	font-weight: var(--fw-black);
	transition: var(--transition-fast);
}

.btn:hover {
	transform: translateY(-0.125rem);
}

.btn-primary {
	background: var(--gold);
	color: var(--navy);
	box-shadow: 0 var(--sp-md) var(--sp-7) rgba(200, 162, 74, 0.22);
}

.btn-secondary {
	border: var(--border-w) solid rgba(255, 255, 255, 0.55);
	color: var(--white);
}

.eyebrow {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.09375rem;
	font-weight: 800;
	font-size: var(--text-sm);
	margin-bottom: var(--sp-md);
}

#portfolio div .eyebrow, #map .map-intro div .eyebrow, #leadership div div .eyebrow{
	color: var(--beige);
}

.section-title {
	max-width: 70rem;
	margin-bottom: 2.625rem;
	overflow: hidden;
	text-align: left;
}

.section-title img {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--sp-1);
	max-width: 100%;
	height: auto;
	text-align: center;
}

.section-title h2 { font-size: 2.4375rem; line-height: 1.15; letter-spacing: -0.04375rem; }
.section-title h3 { font-size: var(--text-9xl); line-height: 1.15; letter-spacing: -0.04375rem; }
.section-title p { font-size: var(--text-xl); }

/* Tags and Pills */
.group > div > div > span, .count-pill, .tag-list span {
	display: inline-block;
	border-radius: var(--radius-pill);
	font-weight: var(--fw-black);
}

.group > div > div > span {
	background: var(--gold-soft);
	color: var(--navy);
	padding: 0.375rem var(--sp-sm);
	font-size: var(--text-sm);
}

.count-pill {
	background: var(--navy);
	color: var(--white);
	padding: 0.3125rem var(--sp-sm);
	font-size: var(--text-xs);
	margin-left: var(--sp-xs);
	vertical-align: middle;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-sm);
	margin-top: var(--sp-5);
}

.tag-list span {
	background: #EEF2F7;
	color: var(--navy);
	padding: var(--sp-xs) var(--sp-md);
	font-size: var(--text-base);
}

/* Common Card Styles */
#about .grid-3 > div, #pcfb > div > div:last-child > div, .group > div > div, #map > div, .stats-row > div, #map > div .layout > aside, .place-block > div > div {
	border: var(--border-std);
}

#info, #pcfb, #leadership {
	background: var(--light);
}

#about .grid-3 > div, #pcfb > div > div:last-child > div, .group > div > div, #map > div, #testimonials .grid-3 > div {
	background: var(--white);
}

.stats-row > div, .place-block > div > div {
	background: #FBFCFE;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
	background: rgba(7, 26, 51, 0.98);
	color: var(--white);
	padding: var(--sp-4) 0;
	position: sticky;
	top: 0;
	z-index: 20;
	box-shadow: 0 0.375rem var(--sp-6) rgba(0, 0, 0, 0.14);
	height: 8.125rem;
}

header > .header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--sp-5);
}

header .logo {
	font-size: var(--text-3xl);
	font-weight: var(--fw-black);
}

header nav a {
	color: var(--white);
	margin-left: var(--sp-5);
	font-size: var(--text-md);
	opacity: 0.9;
}

/* ==========================================================================
   Sections
   ========================================================================== */

#intro {
	background: radial-gradient(circle at top right, rgba(200, 162, 74, 0.22), transparent 34%), linear-gradient(135deg, var(--navy), var(--blue));
	color: var(--white);
	padding: 6.375rem 0 7rem;
}

#intro > div {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 3.375rem;
	align-items: center;
}

#intro p {
	color: var(--white);
	font-size: var(--text-3xl);
	max-width: 49.375rem;
	opacity: 0.95;
	margin-bottom: var(--sp-10);
}

#intro aside {
	background: rgba(255, 255, 255, 0.10);
	border: var(--border-w) solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-lg);
	padding: var(--sp-7);
	box-shadow: 0 var(--sp-6) 3.75rem rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(0.5rem);
}

#intro aside h3 {
	color: var(--white);
	margin-bottom: var(--sp-2);
	font-size: var(--text-3xl);
}

#intro aside ul {
	margin: 0;
	padding-left: var(--sp-2);
	color: rgba(255, 255, 255, 0.92);
}

#intro aside li {
	margin-bottom: var(--sp-md);
}

#about .grid-3 > div {
	border-radius: var(--radius-card);
	padding: var(--sp-7);
	box-shadow: 0 var(--sp-sm) var(--text-7xl) rgba(7, 26, 51, 0.06);
}

#about .grid-3 > div h3 {
	font-size: var(--text-4xl);
	margin-bottom: var(--sp-sm);
}

#data {
	background: radial-gradient(circle at top left, rgba(200, 162, 74, 0.15), transparent 30%), var(--navy);
	color: var(--white);
	padding: 3.875rem 0;
}

#data > div {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--text-7xl);
	text-align: center;
}

#data > div > div {
	padding: var(--sp-2);
	border-right: var(--border-w) solid rgba(255, 255, 255, 0.14);
}

#data > div > div:last-child {
	border-right: none;
}

#data strong {
	display: block;
	font-size: var(--text-10xl);
	line-height: 1;
	color: var(--gold);
	margin-bottom: var(--sp-sm);
}

#data span {
	color: rgba(255, 255, 255, 0.86);
	font-size: var(--text-md);
}

#pcfb > div {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: var(--sp-10);
	align-items: center;
}

#pcfb > div > div:first-child {
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius-lg);
	padding: var(--sp-10);
	box-shadow: 0 var(--sp-2) 2.875rem rgba(7, 26, 51, 0.18);
}

#pcfb > div > div:first-child h3 {
	color: var(--white);
	font-size: var(--text-8xl);
	line-height: 1.12;
}

#pcfb > div > div:first-child p {
	color: rgba(255, 255, 255, 0.86);
}

#pcfb > div > div:last-child {
	display: grid;
	gap: var(--sp-lg);
}

#pcfb > div > div:last-child > div {
	border-radius: var(--sp-lg);
	padding: var(--sp-2) var(--sp-3);
	box-shadow: 0 var(--sp-xs) var(--sp-5) rgba(7, 26, 51, 0.045);
}

#pcfb > div > div:last-child > div strong {
	color: var(--navy);
	display: block;
	margin-bottom: 0.25rem;
}

#portfolio > div > p {
	font-size: var(--text-xl);
	max-width: 58.75rem;
	margin-bottom: 3.25rem;
	line-height: 1.65;
}

.group > div {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
	gap: var(--sp-2);
}

.group > div > div {
	border-radius: 1.0625rem;
	padding: var(--sp-4);
	box-shadow: 0 var(--sp-sm) var(--sp-6) rgba(7, 26, 51, 0.055);
	transition: var(--transition-fast);
	position: relative;
	overflow: hidden;
}

.group > div > div:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 0.3125rem;
	width: 100%;
	background: var(--beige);
}

.group > div > div:hover {
	transform: translateY(-0.25rem);
	border-color: var(--beige);
	box-shadow: 0 var(--sp-1) var(--sp-9) rgba(7, 26, 51, 0.10);
}

.group > div > div > div {
	font-size: var(--text-2xl);
	font-weight: var(--fw-black);
	color: var(--navy);
	margin: var(--sp-xs) 0 var(--sp-sm);
}

#map > div {
	border-radius: var(--sp-8);
	padding: 2.375rem;
	box-shadow: 0 var(--sp-2) 2.75rem rgba(7, 26, 51, 0.075);
	margin: 3.25rem 0 4.125rem;
}

#map > div .map-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-8);
	align-items: start;
	margin-bottom: var(--sp-9);
}

#map > div .map-intro h2 {
	font-size: var(--text-11xl);
	line-height: 1.1;
	margin-bottom: var(--sp-sm);
}

#map > div .map-intro p {
	font-size: var(--text-lg);
	line-height: 1.65;
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-1);
	margin-bottom: var(--sp-10);
}

.stats-row > div {
	border-radius: var(--radius-card);
	padding: var(--sp-3);
	text-align: center;
}

.stats-row > div strong {
	display: block;
	color: var(--beige);
	font-size: var(--text-9xl);
	line-height: 1;
	margin-bottom: var(--sp-xs);
}

.stats-row > div span {
	color: var(--navy);
	font-size: var(--text-base);
	font-weight: var(--fw-black);
}

#map > div .layout {
	display: grid;
	grid-template-columns: 26.875rem 1fr;
	gap: var(--sp-11);
	align-items: start;
}

#map > div .layout > aside {
	background: linear-gradient(180deg, #F8FAFD, #EEF2F7);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	min-height: 33.75rem;
	position: sticky;
	top: 6.25rem;
}

#map > div .layout > aside > div:first-child {
	color: var(--navy);
	font-weight: var(--fw-black);
	margin-bottom: var(--sp-1);
	font-size: var(--text-xl);
}

#map > div .layout svg {
	width: 100%;
	height: 23.75rem;
}

.region {
	fill: #D9E2EF;
	stroke: var(--white);
	stroke-width: 3;
}

.region.active {
	fill: #E6D49F;
}

.region-label, .pin-label, .pin-number {
	font-weight: var(--fw-black);
	pointer-events: none;
}

.region-label, .pin-label {
	fill: var(--navy);
}

.region-label { font-size: var(--text-sm); }
.pin-label { font-size: var(--text-xs); }

.pin {
	fill: var(--navy);
	stroke: var(--white);
	stroke-width: 3;
	transition: var(--transition-fast);
}

.pin:hover {
	fill: var(--gold);
}

.pin-number {
	fill: var(--white);
	font-size: var(--text-base);
	text-anchor: middle;
	dominant-baseline: middle;
}

.legend {
	font-size: var(--text-base);
	margin-top: var(--sp-2);
	line-height: 1.55;
}

.place-block {
	margin-bottom: var(--sp-8);
	padding-bottom: var(--text-7xl);
	border-bottom: var(--border-std);
}

.place-block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.place-block h3 {
	font-size: var(--text-6xl);
	margin-bottom: var(--sp-xs);
}

.place-block p {
	margin-bottom: var(--sp-2);
	font-size: var(--text-md);
	line-height: 1.55;
}

.place-block > div {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13.125rem, 1fr));
	gap: var(--sp-1);
}

.place-block > div > div {
	border-radius: var(--sp-1);
	padding: var(--sp-2);
	transition: var(--transition-fast);
	min-height: 7.375rem;
}

.place-block > div > div:hover {
	border-color: var(--gold);
	transform: translateY(-0.125rem);
}

.place-block > div > div > div:nth-of-type(1) {
	color: var(--beige);
	font-size: var(--text-7xl);
	font-weight: var(--fw-black);
	line-height: 1;
	margin-bottom: var(--sp-md);
	letter-spacing: -0.025rem;
}

.place-block > div > div > div:nth-of-type(2) {
	color: var(--navy);
	font-size: var(--text-lg);
	font-weight: 850;
	line-height: 1.3;
}

/* Link State Overrides */
#map .place-block div div a, #map .place-block div div a:link, #map .place-block div div a:visited, #portfolio div .group div div a, #portfolio div .group div div a:link, #portfolio div .group div div a:visited, #campaigns div .group div div div a, #campaigns div .group div div div a:link, #campaigns div .group div div div a:visited {
	color: var(--navy);
	text-decoration: none;
}

#portfolio div .group div div a:hover, #portfolio div .group div div a:focus, #map .place-block div div a:hover, #map .place-block div div a:focus, #campaigns div .group div div div a:hover, #campaigns div .group div div div a:focus {
	text-decoration: underline;
}

#campaigns .group {
	margin-top: var(--sp-8);
}

#campaigns .group h3 {
	font-size: var(--text-5xl);
	margin-bottom: var(--sp-1);
}

#map > div:last-of-type > p {
	margin-top: var(--sp-10);
	font-size: var(--text-base);
	line-height: 1.6;
}

#leadership {
	margin-top: 3rem;
}

#leadership > div {
	display: grid;
	grid-template-columns: 20rem 1fr;
	gap: 2.875rem;
	align-items: center;
}

.photo-placeholder {
	height: 24.6875rem;
	border-radius: var(--sp-3);
	background: linear-gradient(135deg, rgba(7, 26, 51, 0.10), rgba(200, 162, 74, 0.14)), #DFE5EC;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: var(--fw-black);
	border: var(--border-w) solid #D5DDE8;
}

.photo-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--sp-3);
}

#leadership h2 {
	font-size: var(--text-10xl);
}

#leadership p {
	font-size: var(--text-lg);
}

#testimonials .grid-3 > div {
	border: var(--border-w) dashed #C9D2DF;
	border-radius: var(--sp-3);
	padding: var(--sp-7);
	color: var(--gray);
}

#contact {
	background: radial-gradient(circle at top right, rgba(200, 162, 74, 0.18), transparent 35%), linear-gradient(135deg, var(--blue), var(--navy));
	color: var(--white);
	text-align: center;
	padding: 5.375rem var(--sp-3);
}

#contact h2 {
	color: var(--white);
	font-size: 2.5625rem;
	line-height: 1.16;
	margin-bottom: var(--sp-1);
}

#contact p {
	color: var(--white);
	max-width: 44.375rem;
	margin: 0 auto var(--sp-8);
	font-size: var(--text-2xl);
	opacity: 0.95;
}

footer {
	background: var(--deep);
	color: var(--white);
	padding: var(--sp-10) 0;
	font-size: var(--text-base);
}

footer > div {
	display: flex;
	justify-content: space-between;
	gap: var(--sp-3);
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.80);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 48rem) {
	header {
		height: 4.75rem;
	}

	section {
		scroll-margin-top: 9rem;
	}

	.section-title {
		margin: var(--sp-1) auto var(--sp-9);
	}

	.section-title img {
		float: right;
		display: inline;
		margin-right: 0 !important;
		margin-left: var(--sp-6);
		margin-top: 0;
		margin-bottom: var(--sp-md);
	}
}

@media (max-width: 61.25rem) {
	#intro > div, .grid-3, #data > div, #pcfb > div, #leadership > div, #map > div .layout, #map > div .map-intro, .stats-row {
		grid-template-columns: 1fr;
	}

	#map > div .layout > aside {
		position: relative;
		top: auto;
		min-height: auto;
	}

	#data > div > div {
		border-right: none;
		border-bottom: var(--border-w) solid rgba(255, 255, 255, 0.14);
	}

	h1 {
		font-size: var(--text-11xl);
	}

	#map > div .map-intro h2 {
		font-size: var(--text-8xl);
	}

	header > .header-content {
		align-items: flex-start;
		flex-direction: column;
	}

	header nav a {
		margin: var(--sp-xs) var(--sp-1) 0 0;
		display: inline-block;
	}

	section {
		padding: 3.875rem 0;
	}
}
