/*
Theme Name: Fowler Campaign
Description: A custom WordPress campaign theme for Stephen Fowler for Larimer County Commissioner.
Version: 1.3.8
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: fowler-campaign
*/

:root {
	--fowler-navy: #082b57;
	--fowler-navy-dark: #041a35;
	--fowler-blue: #0d3d73;
	--fowler-green: #5d8d3b;
	--fowler-green-dark: #416b28;
	--fowler-cream: #f7f4ed;
	--fowler-cream-dark: #ebe5d8;
	--fowler-white: #ffffff;
	--fowler-body: #263442;
	--fowler-muted: #647282;
	--fowler-border: rgba(8, 43, 87, .14);
	--fowler-shadow: 0 20px 55px rgba(4, 26, 53, .14);
	--fowler-radius: 1.35rem;
	--fowler-font-body: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--fowler-font-heading: 'Libre Baskerville', Georgia, serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--fowler-font-body);
	color: var(--fowler-body);
	background: var(--fowler-white);
	font-size: 16px;
	line-height: 1.65;
}

body.logged-in.admin-bar .fowler-site-header.sticky-top {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.logged-in.admin-bar .fowler-site-header.sticky-top {
		top: 46px;
	}
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--fowler-green-dark);
}

a:hover,
a:focus {
	color: var(--fowler-navy);
}

h1,
h2,
h3,
h4,
h5,
h6,
.fowler-display,
.fowler-section-title {
	font-family: var(--fowler-font-heading);
	color: var(--fowler-navy);
	line-height: 1.12;
}

p:last-child {
	margin-bottom: 0;
}

strong {
	color: var(--fowler-navy);
	font-weight: 800;
}

.fowler-site-header {
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--fowler-border);
	transition: box-shadow .2s ease;
	z-index: 1030;
}

.fowler-navbar {
	padding: .85rem 0;
}

.fowler-brand-logo {
	width: min(245px, 58vw);
	max-height: 100px;
	object-fit: contain;
}

.fowler-navbar .navbar-nav {
	align-items: center;
	gap: .15rem;
}

.fowler-navbar .nav-link {
	color: var(--fowler-navy) !important;
	font-weight: 800;
	font-size: .88rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .75rem .9rem !important;
}

.fowler-navbar .nav-link:hover,
.fowler-navbar .nav-link:focus,
.fowler-navbar .current-menu-item > .nav-link {
	color: var(--fowler-green-dark) !important;
}

.fowler-navbar .dropdown-menu {
	border: 0;
	border-radius: .95rem;
	box-shadow: var(--fowler-shadow);
	padding: .65rem;
}

.fowler-navbar .dropdown-item {
	border-radius: .65rem;
	font-weight: 700;
}

.fowler-navbar .dropdown-item:hover,
.fowler-navbar .dropdown-item:focus {
	background: var(--fowler-cream);
	color: var(--fowler-green-dark);
}

.fowler-navbar-toggler {
	border: 1px solid var(--fowler-border);
	border-radius: .8rem;
	padding: .65rem .75rem;
}

.fowler-btn,
.btn.fowler-btn {
	border-radius: .75rem;
	font-weight: 900;
	letter-spacing: .055em;
	text-transform: uppercase;
	font-size: .82rem;
	padding: .85rem 1.15rem;
	box-shadow: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border .18s ease, color .18s ease;
}

.fowler-btn:hover,
.fowler-btn:focus {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(4, 26, 53, .14);
}

.fowler-btn-primary,
.btn.fowler-btn-primary {
	background: var(--fowler-green);
	border-color: var(--fowler-green);
	color: var(--fowler-white);
}

.fowler-btn-primary:hover,
.fowler-btn-primary:focus {
	background: var(--fowler-green-dark);
	border-color: var(--fowler-green-dark);
	color: var(--fowler-white);
}

.fowler-btn-navy,
.btn.fowler-btn-navy {
	background: var(--fowler-navy);
	border-color: var(--fowler-navy);
	color: var(--fowler-white);
}

.fowler-btn-navy:hover,
.fowler-btn-navy:focus {
	background: var(--fowler-navy-dark);
	border-color: var(--fowler-navy-dark);
	color: var(--fowler-white);
}

.fowler-btn-outline,
.btn.fowler-btn-outline {
	background: transparent;
	border: 2px solid rgba(8, 43, 87, .18);
	color: var(--fowler-navy);
}

.fowler-btn-outline:hover,
.fowler-btn-outline:focus {
	background: var(--fowler-navy);
	border-color: var(--fowler-navy);
	color: var(--fowler-white);
}

.fowler-eyebrow {
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--fowler-green-dark);
	margin-bottom: .9rem;
}

.fowler-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 15%, rgba(93, 141, 59, .2), transparent 26rem),
		linear-gradient(135deg, #ffffff 0%, var(--fowler-cream) 50%, #eef3e8 100%);
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.fowler-hero::before,
.fowler-hero::after {
	content: '';
	position: absolute;
	pointer-events: none;
}

.fowler-hero::before {
	inset: auto -10vw -10rem -10vw;
	height: 18rem;
	background: linear-gradient(90deg, transparent 0%, rgba(8, 43, 87, .08) 50%, transparent 100%);
	clip-path: polygon(0 72%, 15% 55%, 28% 61%, 43% 38%, 56% 52%, 69% 24%, 82% 48%, 100% 28%, 100% 100%, 0 100%);
}

.fowler-hero::after {
	right: -7rem;
	top: 8rem;
	width: 22rem;
	height: 22rem;
	border: 3rem solid rgba(8, 43, 87, .055);
	border-radius: 999px;
}

.fowler-hero .container {
	position: relative;
	z-index: 2;
}

.fowler-hero-logo {
	width: min(520px, 100%);
	margin-bottom: 1.5rem;
}

.fowler-hero-title {
	font-size: clamp(2.65rem, 6.5vw, 5.7rem);
	letter-spacing: -.045em;
	margin-bottom: 1.25rem;
}

.fowler-hero-lede {
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	color: #314356;
	max-width: 760px;
}

.fowler-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	margin-top: 2rem;
}

.fowler-hero-card {
	position: relative;
	background: rgba(255, 255, 255, .74);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: var(--fowler-shadow);
	border-radius: 2rem;
	padding: 1rem;
	backdrop-filter: blur(12px);
}

.fowler-headshot-wrap {
	position: relative;
	border-radius: 1.65rem;
	overflow: hidden;
	background: var(--fowler-navy);
	isolation: isolate;
}

.fowler-headshot-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(4, 26, 53, .72) 100%);
	z-index: 1;
}

.fowler-headshot {
	width: 100%;
	min-height: 405px;
	max-height: 470px;
	object-fit: cover;
	object-position: center top;
	transform: scale(1.01);
}

.fowler-hero-card-caption {
	position: absolute;
	left: 1.75rem;
	right: 1.75rem;
	bottom: 1.65rem;
	z-index: 2;
	color: var(--fowler-white);
}

.fowler-hero-card-caption strong,
.fowler-hero-card-caption span {
	display: block;
	color: var(--fowler-white);
}

.fowler-hero-card-caption strong {
	font-size: 1.25rem;
	line-height: 1.2;
}

.fowler-hero-card-caption span {
	font-size: .86rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .86;
	margin-top: .35rem;
}

.fowler-quick-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .8rem;
	margin-top: 1rem;
}

.fowler-quick-card {
	background: var(--fowler-white);
	border: 1px solid var(--fowler-border);
	border-radius: 1rem;
	padding: 1rem;
	box-shadow: 0 12px 30px rgba(4, 26, 53, .07);
}

.fowler-quick-card span {
	display: block;
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--fowler-green-dark);
	margin-bottom: .35rem;
}

.fowler-quick-card strong {
	display: block;
	font-size: .95rem;
	line-height: 1.25;
}

.fowler-section {
	padding: clamp(4rem, 7vw, 6rem) 0;
}

.fowler-section-muted {
	background: var(--fowler-cream);
}

.fowler-section-navy {
	background:
		linear-gradient(135deg, rgba(4, 26, 53, .98), rgba(8, 43, 87, .94)),
		radial-gradient(circle at top right, rgba(93, 141, 59, .55), transparent 28rem);
	color: rgba(255, 255, 255, .84);
}

.fowler-section-navy h1,
.fowler-section-navy h2,
.fowler-section-navy h3,
.fowler-section-navy strong {
	color: var(--fowler-white);
}

.fowler-section-title {
	font-size: clamp(2rem, 4vw, 3.35rem);
	letter-spacing: -.035em;
	margin-bottom: 1rem;
}

.fowler-section-lede {
	font-size: 1.08rem;
	color: var(--fowler-muted);
	max-width: 780px;
}

.fowler-section-navy .fowler-section-lede {
	color: rgba(255, 255, 255, .78);
}

.fowler-card {
	background: var(--fowler-white);
	border: 1px solid var(--fowler-border);
	border-radius: var(--fowler-radius);
	box-shadow: 0 16px 45px rgba(4, 26, 53, .08);
	padding: clamp(1.25rem, 2vw, 1.75rem);
	height: 100%;
}

.fowler-card h3 {
	font-size: 1.3rem;
	margin-bottom: .75rem;
}

.fowler-card p {
	color: var(--fowler-muted);
}

.fowler-card-icon {
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: .9rem;
	background: rgba(93, 141, 59, .12);
	color: var(--fowler-green-dark);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.fowler-split-card {
	background: var(--fowler-white);
	border-radius: 2rem;
	box-shadow: var(--fowler-shadow);
	overflow: hidden;
	border: 1px solid var(--fowler-border);
}

.fowler-split-media {
	min-height: 100%;
	background: var(--fowler-navy);
}

.fowler-split-media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	object-position: center top;
}

.fowler-split-content {
	padding: clamp(2rem, 5vw, 4rem);
}


.fowler-inline-photo,
.fowler-photo-card {
	background: var(--fowler-white);
	border: 1px solid var(--fowler-border);
	border-radius: 1.45rem;
	box-shadow: 0 16px 45px rgba(4, 26, 53, .08);
	overflow: hidden;
	margin: 0;
}

.fowler-inline-photo img,
.fowler-photo-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.fowler-inline-photo figcaption,
.fowler-photo-card figcaption {
	padding: 1rem 1.1rem;
	font-size: .9rem;
	line-height: 1.5;
	color: var(--fowler-muted);
}

.fowler-photo-grid {
	align-items: stretch;
}

.fowler-photo-grid .fowler-photo-card {
	height: 100%;
}

.fowler-photo-grid .fowler-photo-card img {
	height: 320px;
}

.fowler-object-center {
	object-position: center !important;
}

.fowler-list-check {
	list-style: none;
	padding-left: 0;
	margin: 1.5rem 0 0;
}

.fowler-list-check li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: .9rem;
	font-weight: 700;
}

.fowler-list-check li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--fowler-green-dark);
	font-weight: 900;
}

.fowler-issue-feature {
	position: relative;
	background: var(--fowler-white);
	border: 1px solid var(--fowler-border);
	border-radius: 1.6rem;
	padding: clamp(1.4rem, 3vw, 2rem);
	height: 100%;
	overflow: hidden;
}

.fowler-issue-feature::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: .35rem;
	background: var(--fowler-green);
}

.fowler-issue-feature h3 {
	font-size: 1.35rem;
	margin-bottom: .75rem;
}

.fowler-ethics-panel {
	background: linear-gradient(135deg, var(--fowler-navy) 0%, var(--fowler-blue) 62%, var(--fowler-green-dark) 100%);
	border-radius: 1.8rem;
	padding: clamp(1.6rem, 4vw, 3rem);
	color: var(--fowler-white);
	overflow: hidden;
	position: relative;
}

.fowler-ethics-panel::after {
	content: '';
	position: absolute;
	right: -5rem;
	bottom: -7rem;
	width: 18rem;
	height: 18rem;
	border-radius: 999px;
	border: 2.5rem solid rgba(255,255,255,.07);
}

.fowler-ethics-panel .row {
	position: relative;
	z-index: 2;
}

.fowler-ethics-panel h2,
.fowler-ethics-panel p,
.fowler-ethics-panel .fowler-eyebrow {
	color: var(--fowler-white);
}

.fowler-mini-principle {
	height: 100%;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 1.1rem;
	padding: 1.1rem;
}

.fowler-mini-principle strong {
	display: block;
	color: var(--fowler-white);
	font-weight: 900;
	margin-bottom: .35rem;
}

.fowler-mini-principle span {
	display: block;
	color: rgba(255,255,255,.84);
	font-size: .95rem;
	line-height: 1.55;
}

.fowler-kicker-band {
	background: var(--fowler-navy);
	color: var(--fowler-white);
	padding: .8rem 0;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.fowler-page-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--fowler-navy) 0%, var(--fowler-blue) 56%, var(--fowler-green-dark) 100%);
	color: var(--fowler-white);
	padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.fowler-page-hero::after {
	content: '';
	position: absolute;
	right: -6rem;
	bottom: -10rem;
	width: 28rem;
	height: 28rem;
	border-radius: 999px;
	border: 3rem solid rgba(255, 255, 255, .08);
}

.fowler-page-hero .container {
	position: relative;
	z-index: 2;
}

.fowler-page-hero h1,
.fowler-page-hero p {
	color: var(--fowler-white);
}

.fowler-page-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	letter-spacing: -.04em;
}

.fowler-content {
	font-size: 1.04rem;
}

.fowler-content h2,
.fowler-content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.fowler-contact-panel {
	background: var(--fowler-cream);
	border-radius: 1.6rem;
	padding: clamp(1.4rem, 3vw, 2rem);
	border: 1px solid var(--fowler-border);
}

.fowler-contact-item {
	display: flex;
	gap: 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--fowler-border);
}

.fowler-contact-item:last-child {
	border-bottom: 0;
}

.fowler-contact-item i {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: .8rem;
	background: rgba(93, 141, 59, .12);
	color: var(--fowler-green-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}


.fowler-form-wrap {
	background: var(--fowler-white);
	border: 1px solid var(--fowler-border);
	border-radius: 1.35rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--fowler-shadow);
}

.fowler-form-wrap .forminator-ui {
	margin: 0 !important;
}

.fowler-form-wrap .forminator-label {
	color: var(--fowler-navy) !important;
	font-weight: 800 !important;
}

.fowler-form-wrap .forminator-input,
.fowler-form-wrap .forminator-textarea,
.fowler-form-wrap .forminator-select2 + .select2-container .selection .select2-selection {
	border-color: var(--fowler-border) !important;
	border-radius: .8rem !important;
}

.fowler-form-wrap .forminator-button-submit {
	background: var(--fowler-green) !important;
	border-radius: .75rem !important;
	font-weight: 900 !important;
	letter-spacing: .055em !important;
	text-transform: uppercase !important;
	padding: .85rem 1.15rem !important;
}

.fowler-form-wrap .forminator-button-submit:hover,
.fowler-form-wrap .forminator-button-submit:focus {
	background: var(--fowler-green-dark) !important;
}

.fowler-footer {
	background: var(--fowler-navy-dark);
	color: rgba(255, 255, 255, .78);
	padding: 3rem 0 2rem;
}

.fowler-footer a {
	color: var(--fowler-white);
	text-decoration: none;
}

.fowler-footer-logo {
	max-width: 280px;
	opacity: 1;
	filter: none !important;
	-webkit-filter: none !important;
	mix-blend-mode: normal !important;
	background: var(--fowler-white);
	border-radius: .25rem;
	padding: .15rem;
}

.fowler-footer-menu {
	list-style: none;
	padding-left: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .65rem 1rem;
	justify-content: flex-end;
}

.fowler-footer-menu a {
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.fowler-disclaimer {
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding-top: 1.25rem;
	margin-top: 2rem;
	font-size: .78rem;
	color: rgba(255, 255, 255, .66);
}

.fowler-admin-note {
	background: #fff8e1;
	border: 1px solid #f2d27a;
	border-radius: .85rem;
	padding: 1rem;
	font-size: .92rem;
}

@media (max-width: 991.98px) {
	.fowler-headshot {
		min-height: 410px;
		max-height: 460px;
	}

	.fowler-quick-grid {
		grid-template-columns: 1fr;
	}

	.fowler-footer-menu {
		justify-content: flex-start;
		margin-top: 1.25rem;
	}
}

@media (max-width: 767.98px) {
	.fowler-navbar .navbar-nav {
		align-items: stretch;
		padding-top: 1rem;
	}

	.fowler-navbar .nav-link {
		padding: .85rem 0 !important;
		border-top: 1px solid var(--fowler-border);
	}

	.fowler-hero-actions .fowler-btn {
		width: 100%;
	}

	.fowler-headshot {
		min-height: 350px;
		max-height: 410px;
	}

	.fowler-split-media img {
		min-height: 340px;
	}
}


/* v1.2.0 campaign expansion */
.fowler-mobile-actions{display:none;background:var(--fowler-navy);padding:.75rem 0}.fowler-mobile-actions .container{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}.fowler-strategy-map{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:1.15rem;align-items:start}.fowler-strategy-card{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;aspect-ratio:1;min-height:0;padding:1.15rem;border-radius:50%;background:var(--fowler-green);color:#fff;text-decoration:none;text-align:center;box-shadow:var(--fowler-shadow);transition:.2s}.fowler-strategy-card:hover,.fowler-strategy-card:focus{transform:translateY(-4px);background:var(--fowler-green-dark);color:#fff}.fowler-strategy-card strong{color:#fff;font-family:var(--fowler-font-heading);font-size:clamp(.95rem,1.15vw,1.08rem);line-height:1.2}.fowler-strategy-card span{display:block;font-size:clamp(.69rem,.78vw,.78rem);line-height:1.34;margin-top:.5rem;max-width:95%}.fowler-proof-card,.fowler-issue-card,.fowler-ethics-card{height:100%;background:#fff;border:1px solid var(--fowler-border);border-radius:var(--fowler-radius);padding:1.5rem;box-shadow:0 12px 28px rgba(4,26,53,.08)}.fowler-proof-card{display:flex;flex-direction:column}.fowler-proof-card h3{min-height:2.35em;margin-bottom:.8rem}.fowler-proof-card p{margin-bottom:0}.fowler-service-item{height:100%;padding:1rem 1.1rem;border:1px solid var(--fowler-border);border-radius:.9rem;background:var(--fowler-cream);font-weight:700;color:var(--fowler-navy)}.fowler-details{border:1px solid var(--fowler-border);border-radius:1rem;padding:1rem 1.15rem;background:#fff}.fowler-details summary{cursor:pointer;font-weight:800;color:var(--fowler-navy)}.fowler-tag{display:inline-block;padding:.35rem .65rem;border-radius:999px;background:#e9f1e3;color:var(--fowler-green-dark);font-weight:800;font-size:.72rem;text-transform:uppercase;letter-spacing:.05em}.fowler-global-cta{background:linear-gradient(135deg,var(--fowler-navy),var(--fowler-blue));color:#fff;padding:clamp(3rem,6vw,5rem) 0}.fowler-global-cta h2,.fowler-global-cta p{color:#fff}.fowler-signup{background:var(--fowler-cream);padding:2.5rem;border-radius:var(--fowler-radius)}.fowler-signup-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr auto;gap:.75rem}.fowler-signup input,.fowler-contact-form input,.fowler-contact-form select,.fowler-contact-form textarea{width:100%;border:1px solid var(--fowler-border);border-radius:.65rem;padding:.8rem;background:#fff}.fowler-footer-ethics{margin-top:1.25rem;padding-top:1.25rem;border-top:1px solid rgba(255,255,255,.18)}.fowler-story-gallery{display:grid;grid-template-columns:2fr 1fr 1fr;gap:1rem}.fowler-story-gallery img{width:100%;height:260px;object-fit:cover;border-radius:1rem}.fowler-story-gallery img:first-child{height:100%;min-height:540px}.fowler-page-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:2rem}
@media(max-width:1199px){.fowler-strategy-map{grid-template-columns:repeat(2,minmax(0,1fr))}.fowler-strategy-card{aspect-ratio:auto;border-radius:1.5rem;min-height:165px;padding:1.4rem}.fowler-strategy-card span{font-size:.82rem;max-width:36rem}}
@media(max-width:991px){.fowler-mobile-actions{display:block}.fowler-navbar .ms-lg-3{display:none}.fowler-signup-grid{grid-template-columns:1fr 1fr}.fowler-story-gallery{grid-template-columns:1fr 1fr}.fowler-story-gallery img:first-child{grid-column:1/-1;min-height:360px}}
@media(max-width:575px){.fowler-strategy-map,.fowler-signup-grid,.fowler-story-gallery{grid-template-columns:1fr}.fowler-strategy-card{border-radius:1.25rem}.fowler-story-gallery img:first-child{grid-column:auto;min-height:300px}.fowler-story-gallery img{height:240px}}


/* v1.2.1 hero refinement: follows the approved blueprint without adding new homepage sections. */
.fowler-hero-card{max-width:370px;margin-inline:auto}
@media(max-width:991.98px){.fowler-hero-card{max-width:400px}}

/* v1.2.3 blueprint-aligned final polish */
.fowler-policy-content {
	font-size: 1.03rem;
}

.fowler-policy-content h2 {
	margin-top: 2.25rem;
	margin-bottom: .85rem;
}

.fowler-policy-content ul {
	padding-left: 1.25rem;
}

.fowler-policy-content li + li {
	margin-top: .45rem;
}

.fowler-issue-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.fowler-issue-link:hover,
.fowler-issue-link:focus {
	color: inherit;
}

.fowler-issue-link .fowler-issue-card {
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.fowler-issue-link:hover .fowler-issue-card,
.fowler-issue-link:focus .fowler-issue-card {
	transform: translateY(-4px);
	box-shadow: var(--fowler-shadow);
	border-color: rgba(93, 141, 59, .42);
}

.fowler-card-link {
	display: inline-block;
	margin-top: 1rem;
	color: var(--fowler-green-dark);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.page-template-page-my-story .fowler-story-gallery {
	margin-bottom: 2rem;
}

.page-template-page-ethics-in-action .fowler-ethics-card {
	margin-bottom: .5rem;
}

.page-template-page-ethics-in-action .fowler-section .row + .row {
	margin-top: 1rem;
}

.home .fowler-proof-card {
	min-height: 100%;
}

.fowler-disclaimer {
	font-size: .84rem;
	line-height: 1.55;
}


/* v1.3.0 revision delta */
.fowler-site-header{z-index:1040}.fowler-kicker-band{background:var(--fowler-navy);color:#fff;padding:.42rem 0;font-size:.68rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.fowler-kicker-band span{color:#fff}.fowler-header-actions{display:flex;gap:.55rem;align-items:center}.fowler-header-actions .fowler-btn{padding:.72rem .95rem}.fowler-footer-compact{padding:1.6rem 0;background:var(--fowler-navy);color:#fff}.fowler-footer-compact a,.fowler-footer-compact span,.fowler-footer-compact div{color:#fff}.fowler-footer-compact a{text-decoration:none}.fowler-footer-compact a:hover{text-decoration:underline}.fowler-footer-dot{opacity:.55;margin:0 .45rem}.fowler-disclaimer-compact{font-size:.78rem;line-height:1.5}.fowler-fourway-link{font-weight:800}.fowler-page-hero-compact{padding:clamp(2.75rem,5vw,4.5rem) 0}.fowler-page-hero-small{padding:clamp(2.2rem,4vw,3.5rem) 0}.fowler-page-hero-small h1,.fowler-page-hero-compact h1{max-width:1050px}.fowler-hero-augie{padding-top:clamp(3rem,6vw,5.5rem)}.fowler-augie-figure{margin:0}.fowler-augie-figure img{display:block;width:100%;max-height:560px;object-fit:cover;object-position:center;border-radius:var(--fowler-radius);box-shadow:var(--fowler-shadow)}.fowler-home-why{padding-top:clamp(3rem,5vw,4.5rem);padding-bottom:clamp(3rem,5vw,4.5rem)}
.fowler-focus-six{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));grid-template-areas:"a b c" "d center e";gap:1.25rem;align-items:center;max-width:1050px;margin:0 auto}.fowler-focus-circle{aspect-ratio:1/1;border-radius:50%;background:var(--fowler-green);color:#fff!important;text-decoration:none;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:1.2rem;box-shadow:0 15px 30px rgba(4,26,53,.12);transition:transform .2s ease,box-shadow .2s ease}.fowler-focus-circle:nth-child(2){grid-area:a}.fowler-focus-circle:nth-child(3){grid-area:b}.fowler-focus-circle:nth-child(4){grid-area:c}.fowler-focus-circle:nth-child(5){grid-area:d}.fowler-focus-circle:nth-child(6){grid-area:e}.fowler-focus-center{grid-area:center;background:var(--fowler-navy)}.fowler-focus-circle:hover,.fowler-focus-circle:focus{transform:translateY(-3px);box-shadow:0 20px 40px rgba(4,26,53,.18);color:#fff}.fowler-focus-circle strong{color:#fff;font-family:var(--fowler-font-heading);font-size:clamp(1rem,1.5vw,1.35rem)}.fowler-focus-circle span{color:#fff;font-size:.8rem;margin-top:.25rem}.fowler-focus-card{height:100%;display:block;padding:1.35rem;border:1px solid var(--fowler-border);border-radius:var(--fowler-radius);text-decoration:none;background:#fff}.fowler-focus-card h2{font-size:1.2rem}.fowler-focus-card span{font-weight:800;text-transform:uppercase;font-size:.78rem}.fowler-focus-subnav{display:flex;gap:.55rem;overflow-x:auto;padding:.65rem 0 1rem;scrollbar-width:thin}.fowler-focus-subnav a{white-space:nowrap;text-decoration:none;border:1px solid var(--fowler-border);border-radius:999px;padding:.6rem .85rem;font-size:.76rem;font-weight:800}.fowler-focus-subnav a.is-active{background:var(--fowler-navy);border-color:var(--fowler-navy);color:#fff}.fowler-content-note{border-left:4px solid var(--fowler-cream-dark);padding-left:1rem;color:var(--fowler-muted)}.fowler-related-issues{display:flex;flex-wrap:wrap;gap:.65rem}.fowler-related-issues span{background:var(--fowler-cream);border-radius:999px;padding:.55rem .8rem;font-weight:700;font-size:.82rem}
.fowler-story-carousel{max-width:1100px;margin-inline:auto;border-radius:var(--fowler-radius);overflow:hidden;box-shadow:var(--fowler-shadow);background:var(--fowler-cream)}.fowler-story-carousel .carousel-item img{height:clamp(360px,48vw,560px);object-fit:cover;object-position:center}.fowler-story-carousel .carousel-item:first-child img{object-fit:contain;object-position:center;background:var(--fowler-cream);padding:1.25rem}.fowler-story-image img{width:100%;max-height:460px;object-fit:cover}.fowler-service-preview{display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem}.fowler-service-preview span{background:var(--fowler-cream-dark);padding:.65rem .9rem;border-radius:.65rem;font-weight:800;color:var(--fowler-navy)}.fowler-full-record summary{list-style:none;width:max-content;margin:0 auto;cursor:pointer}.fowler-full-record summary::-webkit-details-marker{display:none}.fowler-record-group{height:100%;background:#fff;border:1px solid var(--fowler-border);border-radius:var(--fowler-radius);padding:1.25rem}.fowler-record-group h3{font-size:1.15rem}.fowler-record-group ul{margin-bottom:0;padding-left:1.2rem}
.fowler-trust-framework{height:100%;padding:1.75rem;border:1px solid var(--fowler-border);border-radius:var(--fowler-radius);background:#fff}.fowler-trust-fourway{background:var(--fowler-cream)}.fowler-trust-fourway ol{margin:1.2rem 0 0;padding-left:1.35rem}.fowler-trust-fourway li{margin-bottom:.75rem;font-family:var(--fowler-font-heading);font-size:1.1rem;color:var(--fowler-navy)}.fowler-issue-static{height:100%}.fowler-issue-static:hover{transform:none;box-shadow:var(--fowler-shadow)}
.fowler-action-selector{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;margin-bottom:2rem}.fowler-action-choice{appearance:none;border:1px solid var(--fowler-border);background:#fff;color:var(--fowler-navy);border-radius:.85rem;padding:1rem;font-weight:800;text-align:center;min-height:64px}.fowler-action-choice:hover,.fowler-action-choice:focus,.fowler-action-choice.is-active{background:var(--fowler-navy);border-color:var(--fowler-navy);color:#fff}.fowler-conditional-form{max-width:1050px;margin:0 auto;background:#fff;border:1px solid var(--fowler-border);border-radius:var(--fowler-radius);padding:clamp(1.25rem,3vw,2rem);box-shadow:var(--fowler-shadow)}.fowler-conditional-form label,.fowler-conditional-form legend{display:block;font-weight:800;color:var(--fowler-navy);margin-bottom:.35rem}.fowler-conditional-form input:not([type=checkbox]),.fowler-conditional-form select,.fowler-conditional-form textarea{width:100%;border:1px solid var(--fowler-border);border-radius:.65rem;padding:.8rem .9rem;background:#fff}.fowler-volunteer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}.fowler-check{display:flex!important;gap:.55rem;align-items:flex-start;font-weight:600!important;color:var(--fowler-body)!important}.fowler-check input{margin-top:.25rem}.fowler-form-privacy{font-size:.86rem;color:var(--fowler-muted)}.fowler-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}.fowler-form-status{max-width:1050px;margin:0 auto 1rem}.fowler-stay-connected .fowler-signup{padding-top:.5rem;padding-bottom:.5rem}
@media(max-width:991.98px){.fowler-header-actions{margin-left:0!important}.fowler-kicker-band{display:none}.fowler-focus-six{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-areas:"center center" "a b" "c d" "e e"}.fowler-focus-circle{aspect-ratio:auto;min-height:160px;border-radius:2rem}.fowler-focus-center{min-height:140px}.fowler-action-selector{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:575.98px){.fowler-action-selector,.fowler-volunteer-grid{grid-template-columns:1fr}.fowler-focus-six{grid-template-columns:1fr;grid-template-areas:"center" "a" "b" "c" "d" "e"}.fowler-focus-circle,.fowler-focus-center{min-height:120px;border-radius:1.35rem;aspect-ratio:auto}.fowler-conditional-form{border-radius:1rem}.fowler-footer-compact{text-align:center}.fowler-footer-compact .text-lg-end{text-align:center!important}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}.fowler-focus-circle,.fowler-btn{transition:none!important}.aos-animate{transition:none!important;transform:none!important}}

/* v1.3.1 clickable dropdown parent */
.fowler-navbar .menu-item-has-children {
	position: relative;
}

.fowler-navbar .menu-item-has-children > .fowler-parent-link {
	display: inline-flex;
	align-items: center;
	padding-right: .35rem !important;
}

.fowler-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 2.4rem;
	margin-left: -.15rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--fowler-navy);
	vertical-align: middle;
}

.fowler-submenu-toggle span {
	display: block;
	width: .5rem;
	height: .5rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.fowler-submenu-toggle:hover,
.fowler-submenu-toggle:focus-visible {
	color: var(--fowler-green-dark);
}

.fowler-submenu-toggle:focus-visible {
	outline: 2px solid var(--fowler-green);
	outline-offset: 2px;
	border-radius: .35rem;
}

@media (min-width: 992px) {
	.fowler-navbar .dropdown:hover > .dropdown-menu,
	.fowler-navbar .dropdown:focus-within > .dropdown-menu {
		display: block;
		margin-top: 0;
	}
}

@media (max-width: 991.98px) {
	.fowler-navbar .menu-item-has-children > .fowler-parent-link {
		width: calc(100% - 3rem);
	}

	.fowler-submenu-toggle {
		width: 3rem;
		height: 3rem;
	}

	.fowler-navbar .dropdown-menu {
		position: static !important;
		transform: none !important;
		box-shadow: none;
		margin-left: 1rem;
	}
}

@media(max-width:575px){.fowler-story-carousel .carousel-item:first-child img{padding:.5rem}.fowler-story-carousel .carousel-item img{height:420px}}

/* v1.3.4 mobile My Focus navigation QA */
@media (max-width: 575.98px) {
	/* The overview already presents all five Focus cards immediately below the hero. */
	.fowler-focus-subnav.is-overview {
		display: none !important;
	}

	/* Detail pages keep persistent navigation in a compact, readable two-column grid. */
	.fowler-focus-subnav.is-detail {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: .55rem !important;
		overflow: visible !important;
		width: 100%;
		padding: 0 0 1rem !important;
	}

	.fowler-focus-subnav.is-detail a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		min-height: 44px;
		white-space: normal !important;
		text-align: center;
		line-height: 1.2;
		padding: .6rem .5rem;
		font-size: .68rem;
		border-radius: .75rem;
	}
}



/* v1.3.5 final-completion round */
.fowler-btn-donate,.btn.fowler-btn-donate{background:var(--fowler-donate-accent,var(--fowler-green));border-color:var(--fowler-donate-accent,var(--fowler-green));color:#fff}
.fowler-btn-donate:hover,.fowler-btn-donate:focus{filter:brightness(.88);color:#fff}
.fowler-btn-outline,.btn.fowler-btn-outline{background:#fff;border-color:var(--fowler-navy);color:var(--fowler-navy)}
.fowler-btn-outline:hover,.fowler-btn-outline:focus{background:var(--fowler-navy);border-color:var(--fowler-navy);color:#fff}
.fowler-footer-compact{padding:1.8rem 0;background:var(--fowler-navy);color:#fff}
.fowler-footer-legal{font-size:.82rem;line-height:1.45}.fowler-footer-legal p{margin:0 0 .65rem;color:#fff}.fowler-footer-legal a{font-weight:800;color:#fff;text-decoration:underline;text-underline-offset:2px}
.fowler-fourway-box{border:1px solid rgba(255,255,255,.4);border-radius:.8rem;padding:1rem 1.15rem;background:rgba(255,255,255,.06)}
.fowler-fourway-box h2{font-family:var(--fowler-font-body);font-size:.9rem;line-height:1.35;margin:0 0 .7rem;color:#fff;font-weight:800}
.fowler-fourway-box ol{margin:0;padding-left:1.25rem;display:grid;grid-template-columns:1fr 1fr;gap:.35rem 1.25rem;font-size:.78rem;line-height:1.35}.fowler-fourway-box li{color:#fff;padding-left:.1rem}
/* true five-around-one desktop composition; deliberately not a two-row grid */
.fowler-focus-six{position:relative;display:block;max-width:960px;height:700px;margin:0 auto}
.fowler-focus-circle{position:absolute;width:220px;height:220px;aspect-ratio:1/1;border-radius:50%;padding:1.1rem}
.fowler-focus-center{left:50%;top:50%;transform:translate(-50%,-50%)}
.fowler-focus-center:hover,.fowler-focus-center:focus{transform:translate(-50%,-50%) translateY(-3px)}
.fowler-focus-circle:nth-child(2){left:50%;top:0;transform:translateX(-50%)}
.fowler-focus-circle:nth-child(3){right:4%;top:25%;transform:none}
.fowler-focus-circle:nth-child(4){right:20%;bottom:0;transform:none}
.fowler-focus-circle:nth-child(5){left:20%;bottom:0;transform:none}
.fowler-focus-circle:nth-child(6){left:4%;top:25%;transform:none}
.fowler-focus-circle:not(.fowler-focus-center):hover,.fowler-focus-circle:not(.fowler-focus-center):focus{transform:translateY(-3px)}
.fowler-story-carousel-slot:empty{display:none}
.fowler-story-service-photo{width:100%;max-height:560px;object-fit:cover}.fowler-story-hand img{max-height:260px;width:100%;object-fit:cover;border-radius:1rem}
@media(max-width:991.98px){.fowler-focus-six{display:grid;height:auto;grid-template-columns:repeat(2,minmax(0,1fr));grid-template-areas:"center center" "a b" "c d" "e e";gap:1rem}.fowler-focus-circle,.fowler-focus-center{position:static;width:auto;height:auto;min-height:150px;transform:none!important;border-radius:1.5rem;aspect-ratio:auto}.fowler-focus-center{grid-area:center}.fowler-focus-circle:nth-child(2){grid-area:a}.fowler-focus-circle:nth-child(3){grid-area:b}.fowler-focus-circle:nth-child(4){grid-area:c}.fowler-focus-circle:nth-child(5){grid-area:d}.fowler-focus-circle:nth-child(6){grid-area:e}.fowler-fourway-box ol{grid-template-columns:1fr}}
@media(max-width:575.98px){.fowler-focus-six{grid-template-columns:1fr;grid-template-areas:"center" "a" "b" "c" "d" "e"}.fowler-focus-circle,.fowler-focus-center{min-height:115px}.fowler-footer-compact{text-align:left}.fowler-fourway-box{margin-top:.25rem}}

/* v1.3.8 — My Story narrative rebuild */
.page-template-page-my-story .fowler-story-opening{padding-top:clamp(4rem,7vw,6.5rem)}
.fowler-story-facts{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1.5rem}.fowler-story-facts span{display:inline-flex;padding:.55rem .8rem;border-radius:999px;background:var(--fowler-cream-dark);color:var(--fowler-navy);font-weight:800;font-size:.82rem}
.fowler-story-mosaic{display:grid;grid-template-columns:1.35fr .85fr;grid-template-rows:1fr 1fr;gap:1rem;min-height:520px}.fowler-story-mosaic figure{margin:0;overflow:hidden;border-radius:1.2rem;box-shadow:var(--fowler-shadow);background:var(--fowler-cream)}.fowler-story-mosaic-main{grid-row:1/-1}.fowler-story-mosaic img{width:100%;height:100%;object-fit:cover;display:block}.fowler-story-mosaic-main img{object-position:center 28%}
.fowler-story-work-grid{display:grid;grid-template-columns:1.1fr .9fr;grid-template-rows:220px 220px;gap:1rem}.fowler-story-work-grid img{width:100%;height:100%;object-fit:cover;border-radius:1rem;box-shadow:0 12px 28px rgba(4,26,53,.08)}.fowler-story-work-grid img:first-child{grid-row:1/-1}
.fowler-story-service-photo{min-height:390px;object-position:center}
.fowler-story-land-grid{display:grid;grid-template-columns:1.4fr .8fr;gap:1rem;align-items:stretch}.fowler-story-land-grid img{width:100%;height:430px;object-fit:cover;border-radius:1.2rem;box-shadow:var(--fowler-shadow)}.fowler-story-land-grid img:last-child{object-position:center 32%}
.fowler-story-closing-gallery{padding-bottom:clamp(4rem,7vw,6rem)}
@media(max-width:991px){.fowler-story-mosaic{min-height:430px}.fowler-story-work-grid{grid-template-rows:190px 190px}.fowler-story-land-grid img{height:360px}}
@media(max-width:767px){.fowler-story-mosaic{grid-template-columns:1fr 1fr;grid-template-rows:310px 190px;min-height:0}.fowler-story-mosaic-main{grid-column:1/-1;grid-row:auto}.fowler-story-work-grid{grid-template-columns:1fr 1fr;grid-template-rows:260px 180px}.fowler-story-work-grid img:first-child{grid-column:1/-1;grid-row:auto}.fowler-story-land-grid{grid-template-columns:1fr 1fr}.fowler-story-land-grid img{height:300px}.fowler-story-service-photo{min-height:0}}
@media(max-width:575px){.fowler-story-mosaic{grid-template-columns:1fr;grid-template-rows:320px 220px 220px}.fowler-story-mosaic-main{grid-column:auto}.fowler-story-work-grid{grid-template-columns:1fr;grid-template-rows:260px 220px 220px}.fowler-story-work-grid img:first-child{grid-column:auto}.fowler-story-land-grid{grid-template-columns:1fr}.fowler-story-land-grid img{height:300px}.fowler-story-facts span{font-size:.76rem}}


/* v1.3.8 — mobile CTA visibility + Related Issue destinations */
.fowler-mobile-actions .fowler-btn-outline{background:#fff;border-color:#fff;color:var(--fowler-navy)!important}
.fowler-mobile-actions .fowler-btn-outline:hover,.fowler-mobile-actions .fowler-btn-outline:focus{background:var(--fowler-cream);border-color:var(--fowler-cream);color:var(--fowler-navy)!important}
.fowler-related-issues a{display:inline-flex;align-items:center;padding:.55rem .8rem;border-radius:999px;background:var(--fowler-cream);color:var(--fowler-navy);font-weight:800;font-size:.82rem;text-decoration:none;border:1px solid transparent;transition:background .18s ease,border-color .18s ease,transform .18s ease}
.fowler-related-issues a:hover,.fowler-related-issues a:focus{background:#fff;border-color:var(--fowler-navy);color:var(--fowler-navy);transform:translateY(-1px)}
.fowler-issue-card[id]{scroll-margin-top:9rem}
