/* Janice Gordon 2026 — main stylesheet */

:root {
	--jg-navy: #123c69;
	--jg-gold: #f4b400;
	--jg-teal: #0b6b61;
	--jg-dark: #1f2933;
	--jg-light: #f7f9fb;
	--jg-white: #ffffff;
	--jg-border: #e3e8ef;
	--jg-text: #1f2933;
	--jg-muted: #5a6776;

	--font-body: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--font-display: 'DM Serif Display', Georgia, serif;

	--radius: 10px;
	--shadow: 0 8px 24px rgba(18, 60, 105, 0.08);
	--container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--jg-text);
	background: var(--jg-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--jg-navy); }
a:hover { color: var(--jg-teal); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--jg-navy); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--jg-gold); color: #111; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
	display: inline-block;
	padding: .85rem 1.4rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .15s ease, background .2s ease, color .2s ease;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: .98rem;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--jg-gold); color: #111; }
.btn--gold:hover { background: #ffc832; color: #111; }
.btn--navy { background: var(--jg-navy); color: #fff; }
.btn--navy:hover { background: #0d2a4a; color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--jg-navy); }

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--jg-navy);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: .9rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.site-brand { color: #fff; text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.site-brand:hover, .site-brand:focus { color: #fff; }
.site-brand__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: .01em; }
.site-brand__sub { font-size: .78rem; opacity: .8; letter-spacing: .03em; }
.primary-nav { margin-left: auto; }
.primary-nav__list {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: .25rem; flex-wrap: wrap;
}
.primary-nav__list a {
	display: inline-block;
	position: relative;
	color: #fff; text-decoration: none;
	padding: .55rem 0;
	margin: 0 .85rem;
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-weight: 500; font-size: .95rem;
	letter-spacing: .01em;
	transition: color .2s ease;
}
.primary-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: .35rem;
	height: 2px;
	background: var(--jg-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .25s ease;
}
.primary-nav__list a:hover, .primary-nav__list .current-menu-item a { color: var(--jg-gold); }
.primary-nav__list a:hover::after, .primary-nav__list .current-menu-item a::after { transform: scaleX(1); }

/* "Donate" nav item rendered as a small gold pill — always visible CTA. */
.primary-nav__list .menu-item--cta a {
	background: var(--jg-gold);
	color: #111 !important;
	border-radius: 999px;
	padding: .45rem 1rem;
	margin-left: .5rem;
	transition: background .2s ease;
}
.primary-nav__list .menu-item--cta a:hover { background: #ffc832; color: #111 !important; }
.primary-nav__list .menu-item--cta a::after { display: none; }
.nav-toggle {
	display: none;
	background: transparent; border: 0; cursor: pointer;
	width: 40px; height: 40px; padding: 0; margin-left: auto;
	flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer-only elements — hidden on desktop. */
.primary-nav__close,
.primary-nav__head,
.primary-nav__footer,
.primary-nav__backdrop {
	display: none;
}

@media (max-width: 900px) {
	.nav-toggle { display: flex; margin-left: auto; }

	/* Slide-out drawer from the right */
	.primary-nav {
		position: fixed;
		top: 0; right: 0; bottom: 0;
		width: 270px;
		max-width: 78vw;
		background: var(--jg-navy);
		transform: translateX(100%);
		transition: transform .3s cubic-bezier(.22,.61,.36,1);
		z-index: 100;
		box-shadow: -18px 0 48px rgba(0,0,0,.3);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.primary-nav.is-open { transform: translateX(0); }

	.primary-nav__inner {
		display: flex;
		flex-direction: column;
		min-height: 100%;
		padding: 1.25rem 1.25rem 1.5rem;
	}

	/* Close (X) button at top-right */
	.primary-nav__close {
		display: inline-flex; align-items: center; justify-content: center;
		position: absolute;
		top: .65rem; right: .65rem;
		width: 38px; height: 38px;
		border: 0;
		border-radius: 50%;
		background: rgba(255,255,255,.08);
		color: #fff;
		cursor: pointer;
		transition: background .2s ease;
	}
	.primary-nav__close:hover { background: rgba(255,255,255,.15); }

	/* Drawer head — small portrait + name */
	.primary-nav__head {
		display: flex;
		align-items: center;
		gap: .85rem;
		padding: 1.5rem 0 1.25rem;
		border-bottom: 1px solid rgba(255,255,255,.1);
		margin-bottom: .5rem;
	}
	.primary-nav__avatar {
		width: 56px; height: 56px;
		border-radius: 50%;
		object-fit: cover;
		object-position: center 25%;
		background: rgba(255,255,255,.08);
		flex-shrink: 0;
	}
	.primary-nav__id strong {
		display: block;
		color: #fff;
		font-family: var(--font-display);
		font-size: 1rem;
		line-height: 1.2;
	}
	.primary-nav__id span {
		display: block;
		color: rgba(255,255,255,.7);
		font-size: .78rem;
		margin-top: .15rem;
	}

	/* Mobile nav list — stacked, text-width underlines */
	.primary-nav__list {
		flex-direction: column;
		gap: 0;
		padding: .5rem 0;
		margin: 0;
	}
	.primary-nav__list li { padding: 0; }
	.primary-nav__list a {
		display: inline-block;
		margin: 0;
		padding: .65rem 0;
		font-size: 1.05rem;
	}
	.primary-nav__list a::after { left: 0; right: 0; bottom: .25rem; }

	/* Donate sits last in the menu — small left-aligned gold pill */
	.primary-nav__list .menu-item--cta {
		margin-top: 1rem;
		padding: 0;
		text-align: left;
	}
	.primary-nav__list .menu-item--cta a {
		display: inline-block;
		margin: 0;
		padding: .55rem 1.5rem;
		font-size: .95rem;
	}

	/* Drawer footer — contact + social + Donate */
	.primary-nav__footer {
		display: flex; flex-direction: column;
		gap: 1.25rem;
		margin-top: auto;
		padding-top: 1.5rem;
		border-top: 1px solid rgba(255,255,255,.1);
	}
	.primary-nav__label {
		font-family: 'Poppins', sans-serif;
		font-size: .7rem;
		letter-spacing: .14em;
		text-transform: uppercase;
		color: var(--jg-gold);
		margin: 0 0 .35rem;
	}
	.primary-nav__contact a {
		display: block;
		color: #fff;
		text-decoration: none;
		padding: .15rem 0;
		font-size: .92rem;
	}
	.primary-nav__contact a:hover { color: var(--jg-gold); }
	.primary-nav__social .social-links { display: flex; gap: .5rem; }
	.primary-nav__social .social-links a {
		width: 38px; height: 38px;
		background: rgba(255,255,255,.08);
		color: #fff;
	}
	.primary-nav__social .social-links a:hover { background: var(--jg-gold); color: #111; }
	.primary-nav__cta {
		text-align: center;
		display: block;
		padding: .85rem 1rem;
	}

	/* Backdrop overlay */
	.primary-nav__backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(18,60,105,.55);
		backdrop-filter: blur(2px);
		border: 0;
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s ease;
		z-index: 99;
	}
	.primary-nav__backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
	}

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

/* Hero */
.hero {
	position: relative;
	color: #fff;
	background:
		linear-gradient(rgba(18,60,105,.55), rgba(18,60,105,.65)),
		url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
	padding: 6rem 1.25rem;
	text-align: center;
}
.hero__inner { max-width: 900px; margin: 0 auto; }
.hero__eyebrow { letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; opacity: .9; margin-bottom: 1rem; }
.hero__title { color: #fff; margin-bottom: .25em; }
.hero__tagline { font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--jg-gold); margin-bottom: .6rem; }
.hero__sub { font-size: 1.1rem; opacity: .95; max-width: 700px; margin: 0 auto 1.8rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* Page hero */
.page-hero { color: #fff; padding: 4rem 0 3rem; }
.page-hero--navy { background: var(--jg-navy); }
.page-hero--teal { background: var(--jg-teal); }
.page-hero h1 { color: #fff; margin: 0 0 .25em; }
.page-hero__eyebrow { letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; opacity: .9; margin: 0 0 .5rem; }
.page-hero__sub { font-size: 1.1rem; opacity: .95; max-width: 760px; margin: 0; }

/* Sections */
.section { padding: 4.5rem 0; }
.section--light { background: var(--jg-light); }
.section--quote { background: var(--jg-white); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.section__cta { text-align: center; margin-top: 2rem; }
.container { max-width: var(--container); margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.container--narrow { max-width: calc(760px + 2.5rem); }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Cards */
.card {
	background: #fff;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
	border-top: 4px solid var(--jg-gold);
}
.card__title { margin-top: 0; }
.card__title a { text-decoration: none; }
.card__meta { color: var(--jg-muted); font-size: .9rem; margin-bottom: .5rem; }
.card__media img { border-radius: 8px; margin-bottom: 1rem; }
.card--t { border-top-color: var(--jg-teal); }

/* Highlighted priority for hyper-local pages */
.card--highlight {
	border-top-width: 6px;
	border-top-color: var(--jg-teal);
	background: linear-gradient(180deg, rgba(11,107,97,.06), #fff 60%);
	position: relative;
}
.card__flag {
	display: inline-block;
	background: var(--jg-teal);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .25rem .55rem;
	border-radius: 4px;
	margin-bottom: .6rem;
}

/* Bring-a-friend share card */
.share-card {
	background: var(--jg-light);
	border: 1px solid var(--jg-border);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	margin: 2rem auto;
	max-width: 640px;
	text-align: left;
}
.share-card__label {
	display: block;
	font-size: .85rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--jg-muted);
	margin-bottom: .5rem;
	font-weight: 700;
}
.share-card__copy {
	display: flex; gap: .5rem; align-items: stretch;
	margin-bottom: 1.25rem;
}
.share-card__copy input {
	flex: 1;
	font: inherit;
	padding: .75rem .9rem;
	border: 1px solid var(--jg-border);
	border-radius: 8px;
	background: #fff;
	font-size: .92rem;
	color: var(--jg-dark);
}
.share-card__copy .btn { flex: 0 0 auto; }
.share-card__buttons { display: flex; gap: .5rem; flex-wrap: wrap; }
.share-card__buttons .btn { font-size: .9rem; padding: .65rem 1.1rem; }
.btn--ghost-dark { background: transparent; color: var(--jg-navy); border-color: var(--jg-navy); }
.btn--ghost-dark:hover { background: var(--jg-navy); color: #fff; }
.thanks-extra { margin-top: 2.5rem; text-align: left; }

/* Get Involved — three-mode chooser at the top of the page */
.involvement-modes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1rem;
	margin: 0 0 2.5rem;
}
.mode-card {
	display: flex; flex-direction: column; align-items: flex-start; gap: .35rem;
	padding: 1.1rem 1.2rem;
	background: #fff;
	border: 1px solid var(--jg-border);
	border-radius: 12px;
	text-decoration: none;
	color: var(--jg-dark);
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.mode-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(18,60,105,.10);
	border-color: var(--jg-gold);
}
.mode-card__icon {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 10px;
	background: rgba(18,60,105,.06);
	color: var(--jg-navy);
	margin-bottom: .35rem;
}
.mode-card__title {
	font-family: var(--font-display);
	color: var(--jg-navy);
	font-size: 1.05rem;
	line-height: 1.2;
}
.mode-card__sub { color: var(--jg-muted); font-size: .85rem; }
.mode-card--primary { border-color: var(--jg-gold); background: linear-gradient(180deg, #fffaea 0%, #fff 100%); }
.mode-card--primary .mode-card__icon { background: var(--jg-gold); color: #111; }

/* Inline "callout" — used for the SMS opt-in nudge under the form */
.callout {
	display: flex; gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: 12px;
	margin: 2rem 0;
}
.callout h3 { margin: 0 0 .35rem; font-size: 1.1rem; }
.callout p  { margin: 0; }
.callout--teal {
	background: rgba(11,107,97,.07);
	border-left: 4px solid var(--jg-teal);
}
.callout--teal h3 { color: var(--jg-teal); }
.callout code { background: rgba(11,107,97,.15); padding: .1rem .4rem; border-radius: 4px; font-size: .9em; }
.share-card__note { font-size: .85rem; margin-top: 1rem; }

/* ===== About page ===== */
.about-page { background: #fff; }

.about-intro {
	padding: 4rem 0 1.5rem;
	background:
		radial-gradient(900px 400px at 95% -10%, rgba(244,180,0,.18), transparent 55%),
		radial-gradient(700px 300px at -10% 110%, rgba(11,107,97,.12), transparent 55%),
		linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
	text-align: center;
}
.about-intro__eyebrow {
	display: inline-block;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: 700;
	color: var(--jg-teal);
	margin: 0 0 .9rem;
}
.about-intro__title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	margin: 0 0 .65rem;
	line-height: 1.15;
}
.about-intro__sub { font-size: 1.1rem; color: var(--jg-text); margin: 0 auto; max-width: 580px; }

/* About body — two-column grid using full container width. */
.about-body { padding-top: 2.5rem; padding-bottom: 4.5rem; }
.about-body__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 3.5rem;
	align-items: start;
}
.about-body__copy.entry,
.about-body__copy {
	max-width: none;
	width: 100%;
	margin: 0;
}
.about-body__copy h2 {
	color: var(--jg-navy);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0 0 1.25rem;
	line-height: 1.2;
}
.about-body__copy p { margin-bottom: 1.15rem; }

/* Lead paragraph: bigger display font for "My name is Janice Gordon-Daniels..." */
.about-body__lead {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.45;
	color: var(--jg-dark);
	margin-bottom: 1.5rem !important;
}
.about-body__lead strong { color: var(--jg-navy); }

/* Track record card — fills the visual space below the body text. */
.track-record {
	margin: 2.5rem 0 0;
	padding: 1.75rem 1.75rem 1.5rem;
	background: linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
	border: 1px solid var(--jg-border);
	border-left: 3px solid var(--jg-teal);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(18,60,105,.06);
}
.track-record__label {
	display: inline-block;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .72rem;
	font-weight: 700;
	color: var(--jg-teal);
	margin: 0 0 .5rem;
}
.track-record h3 {
	margin: 0 0 1.25rem;
	font-size: 1.25rem;
	color: var(--jg-navy);
}
.track-record__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 1.25rem;
}
.track-record__list li {
	display: flex;
	gap: .75rem;
	align-items: flex-start;
	padding: 0;
}
.track-record__icon {
	flex-shrink: 0;
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(11,107,97,.08);
	color: var(--jg-teal);
	border-radius: 9px;
}
.track-record__list li > div { display: flex; flex-direction: column; line-height: 1.35; }
.track-record__list li strong {
	color: var(--jg-navy);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1rem;
	margin-bottom: .15rem;
}
.track-record__list li span { color: var(--jg-text); font-size: .88rem; }

@media (max-width: 760px) {
	.track-record__list { grid-template-columns: 1fr; }
}

/* Right column: photo top-aligned + promise card directly underneath. */
.about-body__aside {
	display: flex;
	flex-direction: column;
	align-self: start;
}
.about-body__photo {
	margin: 0;
}
.about-body__photo img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 22px 32px rgba(18,60,105,.18));
}
.about-body__promise {
	margin: -.5rem 0 0;
	background: var(--jg-navy);
	color: #fff;
	border-radius: 12px;
	padding: 1.5rem 1.5rem;
	box-shadow: 0 18px 36px rgba(18,60,105,.18);
	position: relative;
	z-index: 1;
}
.about-body__promise p {
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.4;
	color: #fff;
	margin: 0 0 .65rem;
}
.about-body__promise p strong { color: var(--jg-gold); }
.about-body__promise cite {
	display: block;
	color: rgba(255,255,255,.75);
	font-size: .85rem;
	font-style: normal;
	letter-spacing: .02em;
}

@media (max-width: 900px) {
	.about-body__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.about-body__aside {
		max-width: 380px;
		margin: 0 auto;
	}
}

/* Team section: warm cream gradient → flows from the white body into the gold CTA strip,
   gives the page tonal rhythm without breaking the smooth scroll. */
.about-team {
	padding-top: 4rem;
	padding-bottom: 0;
	background: linear-gradient(180deg, #fbf8f0 0%, #fdf3d6 100%);
	box-shadow: inset 0 1px 0 rgba(244,180,0,.18);
}
.about-team__photo {
	position: relative;
	margin: 2rem auto 0;
	max-width: 1100px;
}
/* Soft elliptical ground shadow — kept fully inside the photo container so it
   doesn't bleed onto the gold CTA strip directly below. */
.about-team__photo::after {
	content: "";
	position: absolute;
	left: 8%; right: 8%;
	bottom: 4px;
	height: 40px;
	background: radial-gradient(ellipse 55% 100% at center, rgba(18,60,105,.28) 0%, rgba(18,60,105,.08) 55%, transparent 75%);
	filter: blur(10px);
	pointer-events: none;
	z-index: 0;
}
.about-team__photo img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	z-index: 1;
}
@media (max-width: 600px) {
	.about-team__photo::after { height: 35px; }
}

/* ===== Home: campaign-vibe sections ===== */

.section__eyebrow {
	display: inline-block;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: 700;
	color: var(--jg-teal);
	margin: 0 0 .65rem;
}
.muted.small { font-size: .82rem; }

/* Manifesto / Why I'm running — now serves as the home hero */
.manifesto {
	padding: 5.5rem 0 5rem;
	background:
		radial-gradient(1100px 700px at 85% -10%, rgba(244,180,0,.18), transparent 55%),
		radial-gradient(800px 500px at -10% 110%, rgba(11,107,97,.15), transparent 60%),
		linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
	border-bottom: 1px solid var(--jg-border);
}
.manifesto__top-eyebrow {
	display: block;
	text-align: center;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .78rem;
	font-weight: 700;
	color: var(--jg-teal);
	margin: -1rem 0 2rem;
	line-height: 1.5;
}
.manifesto__top-eyebrow .sep { color: var(--jg-muted); margin: 0 .35rem; }
@media (max-width: 600px) {
	.manifesto__top-eyebrow .sep--mobile-break {
		display: block;
		visibility: hidden;
		font-size: 0;
		line-height: 0;
		margin: 0;
	}
}
.manifesto__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 3rem;
	align-items: center;
}
@media (max-width: 900px) {
	.manifesto__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.manifesto__eyebrow {
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .82rem;
	font-weight: 700;
	color: var(--jg-teal);
	margin: 0 0 .75rem;
}
.manifesto__copy h2 {
	font-size: clamp(1.7rem, 3.2vw, 2.5rem);
	line-height: 1.18;
	margin: 0 0 1.25rem;
}
.manifesto__highlight {
	background: linear-gradient(180deg, transparent 60%, rgba(244,180,0,.55) 60%);
	padding: 0 .15em;
}
.manifesto__copy .lead { font-size: 1.1rem; }
.manifesto__signature {
	margin: 1.75rem 0 1.25rem;
	padding-left: 1rem;
	border-left: 3px solid var(--jg-gold);
}
.manifesto__signature-name {
	display: block;
	font-family: 'Caveat', 'Brush Script MT', cursive;
	font-size: 2.2rem;
	color: var(--jg-navy);
	line-height: 1;
}
.manifesto__signature-role { color: var(--jg-muted); font-size: .92rem; }
.manifesto__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }

/* Hero portrait — Janice as a free-floating cutout on the page background.
   No panel, no border, no box. Just the photo + a soft gold halo + ward badge. */
.hero-portrait {
	position: relative;
	margin: 0;
	max-width: 480px;
	width: 100%;
	aspect-ratio: 5 / 6;
	isolation: isolate;
}
/* Soft gold halo behind her head — sits underneath the photo on the page */
.hero-portrait__halo {
	position: absolute;
	left: 50%; top: 8%;
	transform: translateX(-50%);
	width: 380px; height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(244,180,0,.40) 0%, rgba(244,180,0,.12) 45%, transparent 70%);
	filter: blur(6px);
	z-index: 0;
}
.hero-portrait__img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	/* Soft drop-shadow follows the silhouette so she's grounded, not levitating */
	filter: drop-shadow(0 22px 28px rgba(18,60,105,.18));
}
/* Wards 9 & 10 gold pill — bottom-right corner */
.hero-portrait__badge {
	position: absolute;
	right: 0; bottom: 0;
	z-index: 2;
	background: var(--jg-gold);
	color: #111;
	border-radius: 12px;
	padding: .55rem .85rem;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
	box-shadow: 0 12px 24px rgba(18,60,105,.22);
}
.hero-portrait__badge span {
	font-family: 'Poppins', sans-serif;
	font-size: .65rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: .25rem;
}
.hero-portrait__badge strong {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
}
/* Thin gold accent rule — bottom-left corner */
.hero-portrait__rule {
	position: absolute;
	left: 0;
	bottom: 0.75rem;
	width: 64px; height: 3px;
	background: var(--jg-gold);
	z-index: 2;
	border-radius: 2px;
	opacity: .9;
}

@media (max-width: 900px) {
	.hero-portrait { max-width: 360px; margin: 0 auto; }
	.hero-portrait__halo { width: 280px; height: 280px; }
}

/* Video placeholder */
.video-placeholder {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 18px 48px rgba(18,60,105,.18);
	background: var(--jg-navy);
	transition: transform .2s ease, box-shadow .2s ease;
}
.video-placeholder:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(18,60,105,.26); }
.video-placeholder img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: brightness(.75) saturate(1.05);
	transition: filter .25s ease;
}
.video-placeholder:hover img { filter: brightness(.6) saturate(1.1); }
.video-placeholder__play {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 86px; height: 86px;
	border-radius: 50%;
	border: 0;
	background: var(--jg-gold);
	color: #111;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	box-shadow: 0 0 0 0 rgba(244,180,0,.55);
	animation: jgPulse 2.4s ease-out infinite;
}
.video-placeholder__play svg { margin-left: 4px; }
@keyframes jgPulse {
	0%   { box-shadow: 0 0 0 0 rgba(244,180,0,.55); }
	70%  { box-shadow: 0 0 0 22px rgba(244,180,0,0); }
	100% { box-shadow: 0 0 0 0 rgba(244,180,0,0); }
}
.video-placeholder__caption {
	position: absolute;
	left: 1rem; bottom: 1rem;
	background: rgba(18,60,105,.85);
	color: #fff;
	padding: .35rem .7rem;
	border-radius: 6px;
	font-size: .82rem;
	letter-spacing: .04em;
}

/* The campaign promise — typographic 3 T's */
.promise {
	padding: 4.5rem 0;
	background: var(--jg-navy);
	color: #fff;
	background-image:
		radial-gradient(800px 400px at 100% 0%, rgba(244,180,0,.18), transparent 55%),
		radial-gradient(700px 350px at 0% 100%, rgba(11,107,97,.30), transparent 55%);
}
.promise__head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.promise__head .section__eyebrow { color: var(--jg-gold); }
.promise__head h2 { color: #fff; margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.promise__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 0;
	padding: 0;
}
.promise__item {
	position: relative;
	padding: 1rem 2rem;
	text-align: center;
}
.promise__item + .promise__item::before {
	content: "";
	position: absolute;
	left: 0; top: 25%; bottom: 25%;
	width: 1px;
	background: rgba(255,255,255,.15);
}
.promise__letter {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(4rem, 8vw, 6.5rem);
	line-height: 1;
	color: var(--jg-gold);
	margin-bottom: .25rem;
}
.promise__word {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.4vw, 2rem);
	color: #fff;
	margin: 0 0 .5rem;
	letter-spacing: .01em;
}
.promise__body {
	margin: 0;
	color: rgba(255,255,255,.82);
	font-size: 1rem;
	line-height: 1.55;
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 760px) {
	.promise__list { grid-template-columns: 1fr; gap: 1.5rem; }
	.promise__item { padding: 1.5rem 1rem; }
	.promise__item + .promise__item::before {
		left: 25%; right: 25%; top: 0; bottom: auto;
		width: auto; height: 1px;
	}
}

/* Brampton issues — navy band, white floating accordion card. */
.issues {
	padding: 5rem 0 4rem;
	background: var(--jg-navy);
	color: #fff;
	background-image:
		radial-gradient(900px 400px at 100% -10%, rgba(244,180,0,.16), transparent 55%),
		radial-gradient(700px 350px at 0% 110%, rgba(11,107,97,.30), transparent 55%);
}
.issues .section__head h2 { color: #fff; }
.issues .section__head p  { color: rgba(255,255,255,.85); }
.issues .section__eyebrow { color: var(--jg-gold); }
.issues__list {
	margin-top: 2.5rem;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	background: #fff;
	color: var(--jg-text);
	box-shadow: 0 24px 60px rgba(0,0,0,.25);
	overflow: hidden;
}
/* Make sure all content inside the white card uses dark text on white. */
.issues__list,
.issues__list p,
.issues__list strong,
.issues__list span:not(.issue-row__tag):not(.issue-row__pledge-label) {
	color: var(--jg-text);
}
.issues__list .issue-row__title { color: var(--jg-navy); }
.issues__list .issue-row__stat strong { color: var(--jg-teal); }
.issues__list .issue-row__stat span { color: var(--jg-muted); }
.issue-row {
	border-bottom: 1px solid var(--jg-border);
	transition: background .2s ease;
}
.issue-row:last-child { border-bottom: 0; }
.issue-row[open] { background: #fbfdff; }

.issue-row__summary {
	display: grid;
	grid-template-columns: 140px 1fr auto auto;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 1.4rem;
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.issue-row__summary::-webkit-details-marker { display: none; }
.issue-row__summary:hover { background: rgba(18,60,105,.03); }
.issue-row[open] > .issue-row__summary { border-bottom: 1px solid var(--jg-border); }

.issue-row__tag {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--jg-teal);
	white-space: nowrap;
}
.issue-row__title {
	font-family: var(--font-display);
	color: var(--jg-navy);
	font-size: 1.1rem;
	line-height: 1.25;
}
.issue-row__stat {
	text-align: right;
	white-space: nowrap;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1;
}
.issue-row__stat strong {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--jg-teal);
	line-height: 1;
}
.issue-row__stat span {
	font-size: .72rem;
	color: var(--jg-muted);
	margin-top: .25rem;
	max-width: 180px;
	white-space: normal;
	text-align: right;
}
.issue-row__toggle {
	flex-shrink: 0;
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(18,60,105,.06);
	color: var(--jg-navy);
	transition: transform .25s ease, background .2s ease;
}
.issue-row[open] .issue-row__toggle {
	background: var(--jg-gold);
	color: #111;
	transform: rotate(180deg);
}

.issue-row__body {
	padding: 1.5rem 1.6rem 1.6rem;
	color: var(--jg-text);
}
.issue-row__body > p {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--jg-text);
}
.issue-row__body > p strong { color: var(--jg-navy); }
.issue-row__pledge {
	background: rgba(244,180,0,.10);
	border-left: 3px solid var(--jg-gold);
	border-radius: 0 8px 8px 0;
	padding: .85rem 1rem;
	margin: 0 0 1rem;
}
.issue-row__pledge-label {
	display: block;
	font-size: .72rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 700;
	color: #8c6700;
	margin-bottom: .25rem;
}
.issue-row__pledge p { margin: 0; font-size: .94rem; line-height: 1.55; color: var(--jg-dark); }
.issue-row__cite { font-size: .8rem; color: var(--jg-muted); margin: 1rem 0 0; }
.issue-row__cite a { color: var(--jg-muted); text-decoration: underline; }
.issue-row__cite a:hover { color: var(--jg-navy); }

@media (max-width: 760px) {
	.issue-row__summary {
		grid-template-columns: 1fr auto;
		grid-template-areas: "tag toggle" "title title" "stat stat";
		gap: .35rem .75rem;
	}
	.issue-row__tag { grid-area: tag; }
	.issue-row__title { grid-area: title; font-size: 1rem; }
	.issue-row__stat { grid-area: stat; align-items: flex-start; text-align: left; flex-direction: row; align-items: baseline; gap: .5rem; }
	.issue-row__stat strong { font-size: 1.25rem; }
	.issue-row__stat span { text-align: left; }
	.issue-row__toggle { grid-area: toggle; }
}

.issues__cta {
	display: flex; flex-direction: column; align-items: center; gap: 1rem;
	margin-top: 3rem;
	padding: 2rem;
	border-radius: 14px;
	background: var(--jg-navy);
	color: #fff;
	text-align: center;
}
.issues__cta p {
	font-family: var(--font-display);
	font-size: 1.4rem;
	margin: 0;
	color: #fff;
}

/* Stats strip */
.stats-strip {
	background: var(--jg-navy);
	color: #fff;
	padding: 3rem 0;
	background-image:
		radial-gradient(900px 300px at 100% 100%, rgba(244,180,0,.18), transparent 60%),
		radial-gradient(700px 260px at 0% 0%, rgba(11,107,97,.30), transparent 60%);
}
.stats-strip__list {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
	text-align: center;
}
.stats-strip__item { padding: 0 .5rem; }
.stats-strip__num {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	color: var(--jg-gold);
	line-height: 1;
	margin-bottom: .35rem;
}
.stats-strip__num span { color: rgba(244,180,0,.7); margin-left: 2px; }
.stats-strip__label { color: rgba(255,255,255,.85); font-size: .92rem; }
.stats-strip__note { margin: 1.25rem 0 0; color: rgba(255,255,255,.6); text-align: center; }

/* Community photo grid */
.community { padding: 5rem 0 4rem; }
.community__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 180px;
	gap: 1rem;
}
.community__photo {
	position: relative;
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(18,60,105,.10);
}
.community__photo img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .5s ease, filter .3s ease;
}
.community__photo:hover img { transform: scale(1.05); }
.community__photo figcaption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: .75rem 1rem;
	background: linear-gradient(180deg, transparent 0%, rgba(18,60,105,.85) 100%);
	color: #fff;
	font-size: .9rem;
	font-weight: 600;
}
.community__photo--tall { grid-row: span 2; }
.community__photo--wide { grid-column: span 2; }
@media (max-width: 900px) {
	.community__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
	.community__photo--tall { grid-row: span 2; }
	.community__photo--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
	.community__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
	.community__photo--tall, .community__photo--wide { grid-row: auto; grid-column: auto; }
}

/* Smash Balloon Instagram feed — match the rest of the theme. */
.community #sb_instagram { padding: 0 !important; }
.community #sb_instagram .sbi_photo_wrap { border-radius: 12px; overflow: hidden; }
.community #sb_instagram .sbi_photo { transition: transform .4s ease; }
.community #sb_instagram .sbi_photo:hover { transform: scale(1.04); }
.community__cta { text-align: center; margin: 2rem 0 0; }

/* Inline Instagram link replacing the old wrapping button */
.ig-link {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	padding: .55rem 1rem .55rem .6rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--jg-border);
	color: var(--jg-navy);
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-size: .92rem;
	font-weight: 500;
	transition: background .2s ease, border-color .2s ease, transform .15s ease;
	max-width: 100%;
}
.ig-link:hover {
	background: var(--jg-navy);
	border-color: var(--jg-navy);
	color: #fff;
	transform: translateY(-1px);
}
.ig-link__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
	flex-shrink: 0;
}
.ig-link__icon svg { width: 16px; height: 16px; }
.ig-link__handle {
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;
}
.ig-link__action {
	color: var(--jg-muted);
	font-size: .85rem;
	border-left: 1px solid var(--jg-border);
	padding-left: .65rem;
	transition: color .2s ease, border-color .2s ease;
}
.ig-link:hover .ig-link__action { color: rgba(255,255,255,.85); border-left-color: rgba(255,255,255,.25); }

@media (max-width: 480px) {
	.ig-link__action { display: none; }
	.ig-link__handle { font-size: .85rem; }
}

/* Voices / endorsements */
.voices__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.voice-card {
	background: #fff;
	border-radius: 14px;
	padding: 1.75rem;
	margin: 0;
	border: 1px solid var(--jg-border);
	box-shadow: 0 6px 20px rgba(18,60,105,.06);
	display: flex; flex-direction: column;
	transition: transform .15s ease, box-shadow .2s ease;
}
.voice-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(18,60,105,.10); }
.voice-card__quote { color: var(--jg-gold); margin-bottom: .5rem; }
.voice-card blockquote {
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--jg-dark);
	line-height: 1.4;
	margin: 0 0 1.25rem;
	border: 0;
	padding: 0;
}
.voice-card figcaption { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.voice-card__avatar {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--jg-teal);
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
	letter-spacing: .04em;
	flex-shrink: 0;
}
.voice-card__person { display: flex; flex-direction: column; line-height: 1.25; }
.voice-card__person strong { color: var(--jg-navy); font-family: var(--font-display); font-size: 1rem; font-weight: 400; }
.voice-card__person .muted { font-size: .82rem; }

@media (prefers-reduced-motion: reduce) {
	.video-placeholder__play { animation: none; }
	.community__photo:hover img { transform: none; }
}

/* 404 page */
.page-404 {
	padding: 5rem 0 6rem;
	background: linear-gradient(180deg, #fffaea 0%, #f7f9fb 60%);
	overflow: hidden;
}
.page-404__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.page-404__num {
	display: inline-flex;
	font-family: var(--font-display);
	font-size: clamp(5rem, 16vw, 11rem);
	line-height: .9;
	color: var(--jg-navy);
	margin-bottom: 1rem;
	letter-spacing: -.04em;
}
.page-404__digit {
	display: inline-block;
	background: linear-gradient(180deg, #123c69 0%, #0b6b61 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.page-404__digit--mid {
	background: linear-gradient(180deg, #f4b400 0%, #cf9a00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: jg404Wobble 4s ease-in-out infinite;
	transform-origin: center;
}
@keyframes jg404Wobble {
	0%, 100% { transform: rotate(-6deg) translateY(0); }
	50%      { transform: rotate(6deg)  translateY(-8px); }
}
.page-404__title {
	font-size: clamp(1.6rem, 3.2vw, 2.4rem);
	margin: 0 0 .5em;
}
.page-404__sub { font-size: 1.05rem; color: var(--jg-text); margin: 0; }
.page-404__sub strong { color: var(--jg-teal); }

.page-404__search {
	display: flex; gap: .5rem;
	max-width: 600px; margin: 0 auto 3rem;
	background: #fff;
	padding: .5rem;
	border-radius: 999px;
	border: 1px solid var(--jg-border);
	box-shadow: 0 8px 28px rgba(18,60,105,.08);
}
.page-404__search input {
	flex: 1; min-width: 0;
	font: inherit; font-size: 1rem;
	border: 0; background: transparent;
	padding: .65rem 1rem;
	color: var(--jg-dark);
}
.page-404__search input:focus { outline: none; }
.page-404__search .btn { flex: 0 0 auto; padding: .65rem 1.4rem; }

.page-404__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	max-width: 1100px; margin: 0 auto 2.5rem;
}
.quick-card {
	display: flex; flex-direction: column; align-items: flex-start; gap: .35rem;
	padding: 1.25rem 1.25rem 1.1rem;
	background: #fff;
	border: 1px solid var(--jg-border);
	border-radius: 14px;
	color: var(--jg-dark);
	text-decoration: none;
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(18,60,105,.12);
	border-color: var(--jg-gold);
}
.quick-card__icon {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 11px;
	background: rgba(18,60,105,.06);
	color: var(--jg-navy);
	margin-bottom: .35rem;
	transition: background .2s ease, color .2s ease;
}
.quick-card:hover .quick-card__icon { background: var(--jg-navy); color: #fff; }
.quick-card__title { font-family: var(--font-display); color: var(--jg-navy); font-size: 1.05rem; line-height: 1.2; }
.quick-card__sub { color: var(--jg-muted); font-size: .85rem; }
.quick-card--feature { border-color: var(--jg-gold); background: linear-gradient(180deg, #fffaea 0%, #fff 100%); }
.quick-card--feature .quick-card__icon { background: var(--jg-gold); color: #111; }

.page-404__hint { text-align: center; color: var(--jg-muted); margin: 2rem 0 0; }

@media (prefers-reduced-motion: reduce) {
	.page-404__digit--mid { animation: none; }
}

/* Home intro section — sits between hero and priorities */
.section--intro { padding: 4rem 0 3.5rem; }
.section--intro .entry { text-align: center; }
.section--intro .entry .wp-block-quote {
	max-width: 680px; margin-left: auto; margin-right: auto;
	border-left: 0; border-top: 3px solid var(--jg-gold);
	padding: 1.25rem 0 0; text-align: center;
}
.section--intro .entry .wp-block-quote cite { color: var(--jg-muted); }

/* Get Involved — "ways to help" cards */
.section--ways { padding-top: 5rem; padding-bottom: 5rem; }
.card--way {
	text-align: left;
	padding: 2rem 1.75rem;
	transition: transform .2s ease, box-shadow .2s ease;
}
.card--way:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(18,60,105,.12); }
.card--way .card__icon {
	width: 56px; height: 56px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 14px;
	background: rgba(18,60,105,.06);
	color: var(--jg-navy);
	margin-bottom: 1rem;
}
.card--way h3 { margin: 0 0 .5rem; }
.card--way p { margin: 0; color: var(--jg-text); }

/* Pull quote */
.pullquote {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	color: var(--jg-teal);
	border-left: 5px solid var(--jg-gold);
	padding: .25rem 0 .25rem 1.25rem;
	margin: 2rem 0;
	line-height: 1.4;
}
.pullquote cite { display: block; font-family: var(--font-body); font-size: .95rem; color: var(--jg-muted); font-style: normal; margin-top: .75rem; }

/* Priority tabs — left list, right content. CSS-only via radio inputs. */
.priority-tabs {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 2rem;
	background: #fff;
	border: 1px solid var(--jg-border);
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(18,60,105,.06);
	overflow: hidden;
}
.priority-tabs__radio { position: absolute; opacity: 0; pointer-events: none; }
.priority-tabs__nav {
	display: flex;
	flex-direction: column;
	background: #f7f9fb;
	padding: 0;
	border-right: 1px solid var(--jg-border);
}
.priority-tabs__label {
	display: grid;
	grid-template-columns: 36px 1fr 16px;
	align-items: center;
	gap: .85rem;
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	border-bottom: 1px solid var(--jg-border);
	color: var(--jg-text);
	transition: background .2s ease, color .2s ease;
	user-select: none;
}
.priority-tabs__nav .priority-tabs__label:last-of-type { border-bottom: 0; }
.priority-tabs__label:hover { background: rgba(18,60,105,.04); }
.priority-tabs__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--jg-navy);
	color: #fff;
	font-family: var(--font-display);
	font-size: .9rem;
	line-height: 1;
	font-weight: 400;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.priority-tabs__label:hover .priority-tabs__num {
	background: var(--jg-teal);
}
.priority-tabs__name {
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--jg-navy);
	line-height: 1.25;
}
.priority-tabs__chev {
	color: var(--jg-muted);
	transition: transform .2s ease, color .2s ease;
}

.priority-tabs__panels {
	position: relative;
	padding: 2rem 2.25rem;
	min-height: 280px;
}
.priority-tabs__panel {
	display: none;
}
.priority-tabs__panel-num {
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jg-teal);
	font-weight: 700;
	margin: 0 0 .65rem;
}
.priority-tabs__panel h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	color: var(--jg-navy);
}
.priority-tabs__panel-body {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--jg-text);
	margin: 0;
}

/* Show the selected panel + style its label as active.
   Position-based selectors so this works for any id_prefix
   (works for jg-home-pri-N, jg-page-pri-N, etc.). */
.priority-tabs__radio:nth-of-type(1):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(1),
.priority-tabs__radio:nth-of-type(2):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(2),
.priority-tabs__radio:nth-of-type(3):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(3),
.priority-tabs__radio:nth-of-type(4):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(4),
.priority-tabs__radio:nth-of-type(5):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(5),
.priority-tabs__radio:nth-of-type(6):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(6) {
	background: #fff;
	border-left: 3px solid var(--jg-gold);
	padding-left: calc(1.25rem - 3px);
}
.priority-tabs__radio:nth-of-type(1):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(1) .priority-tabs__chev,
.priority-tabs__radio:nth-of-type(2):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(2) .priority-tabs__chev,
.priority-tabs__radio:nth-of-type(3):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(3) .priority-tabs__chev,
.priority-tabs__radio:nth-of-type(4):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(4) .priority-tabs__chev,
.priority-tabs__radio:nth-of-type(5):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(5) .priority-tabs__chev,
.priority-tabs__radio:nth-of-type(6):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(6) .priority-tabs__chev {
	color: var(--jg-gold);
	transform: translateX(2px);
}
/* Active row: number badge flips to gold with dark text. */
.priority-tabs__radio:nth-of-type(1):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(1) .priority-tabs__num,
.priority-tabs__radio:nth-of-type(2):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(2) .priority-tabs__num,
.priority-tabs__radio:nth-of-type(3):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(3) .priority-tabs__num,
.priority-tabs__radio:nth-of-type(4):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(4) .priority-tabs__num,
.priority-tabs__radio:nth-of-type(5):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(5) .priority-tabs__num,
.priority-tabs__radio:nth-of-type(6):checked ~ .priority-tabs__nav .priority-tabs__label:nth-of-type(6) .priority-tabs__num {
	background: var(--jg-gold);
	color: #111;
}
.priority-tabs__radio:nth-of-type(1):checked ~ .priority-tabs__panels .priority-tabs__panel:nth-of-type(1),
.priority-tabs__radio:nth-of-type(2):checked ~ .priority-tabs__panels .priority-tabs__panel:nth-of-type(2),
.priority-tabs__radio:nth-of-type(3):checked ~ .priority-tabs__panels .priority-tabs__panel:nth-of-type(3),
.priority-tabs__radio:nth-of-type(4):checked ~ .priority-tabs__panels .priority-tabs__panel:nth-of-type(4),
.priority-tabs__radio:nth-of-type(5):checked ~ .priority-tabs__panels .priority-tabs__panel:nth-of-type(5),
.priority-tabs__radio:nth-of-type(6):checked ~ .priority-tabs__panels .priority-tabs__panel:nth-of-type(6) {
	display: block;
	animation: jgFade .25s ease;
}
@keyframes jgFade {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Mobile: collapse to a stacked accordion. */
@media (max-width: 760px) {
	.priority-tabs { grid-template-columns: 1fr; }
	.priority-tabs__nav { border-right: 0; border-bottom: 1px solid var(--jg-border); }
	.priority-tabs__panels { padding: 1.5rem 1.25rem; min-height: 0; }
	.priority-tabs__panel h2 { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
	.priority-tabs__panel { animation: none; }
}

/* Forms */
.form { display: grid; gap: 1rem; max-width: 640px; }
.form label { display: block; font-weight: 600; font-size: .92rem; color: var(--jg-dark); }
.form input, .form select, .form textarea, .search-field {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	padding: .8rem .9rem;
	border: 1px solid var(--jg-border);
	border-radius: 8px;
	margin-top: .35rem;
	background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--jg-gold); border-color: var(--jg-gold); }
.form-notice { color: var(--jg-muted); font-size: .9rem; margin-top: 1rem; }

/* Photo placeholder */
.photo-placeholder {
	background: repeating-linear-gradient(45deg, #eef2f7, #eef2f7 10px, #f7f9fb 10px, #f7f9fb 20px);
	border: 1px dashed var(--jg-border);
	border-radius: var(--radius);
	min-height: 240px;
	display: flex; align-items: center; justify-content: center;
	color: var(--jg-muted);
	margin: 2rem 0;
}

/* Value list */
.value-list { list-style: none; padding: 0; }
.value-list li { padding: .6rem 0; border-bottom: 1px solid var(--jg-border); }

/* Countdown */
.countdown { background: var(--jg-navy); color: #fff; padding: 4rem 1.25rem; text-align: center; }
.countdown h2 { color: #fff; }
.countdown__sub { opacity: .85; margin-bottom: 2rem; }
.countdown__grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.countdown__cell {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	min-width: 110px;
}
.countdown__cell strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--jg-gold); line-height: 1; }
.countdown__cell span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }

/* CTA strip */
.cta-strip { background: var(--jg-gold); color: #111; padding: 3rem 1.25rem; text-align: center; }
.cta-strip h2 { color: #111; margin-bottom: .25em; }
.cta-strip__inner { max-width: 700px; margin: 0 auto; }

/* Footer */
.site-footer { background: var(--jg-dark); color: #d8dee5; padding: 3rem 0 1.5rem; }
.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.25rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.site-footer__bottom { padding-left: 1.25rem; padding-right: 1.25rem; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.site-footer a { color: var(--jg-gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-nav, .social-links { list-style: none; padding: 0; margin: 0; }
.footer-nav li { padding: .25rem 0; }
.social-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-links li { padding: 0; }
.social-links a {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	transition: background .2s ease, color .2s ease, transform .15s ease;
}
.social-links a:hover {
	background: var(--jg-gold);
	color: #111;
	text-decoration: none;
	transform: translateY(-2px);
}
.social-links svg { display: block; }
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	margin-top: 2rem;
	padding-top: 1.25rem;
	text-align: center;
	font-size: .9rem;
	opacity: .85;
}
.site-credit { margin: .25rem 0 0; }
.recaptcha-notice { margin: .75rem 0 0; font-size: .75rem; opacity: .65; }
.recaptcha-notice a { color: inherit; text-decoration: underline; }

/* Legal links — inline, pipe-separated, in the footer bottom */
.legal-nav {
	list-style: none; padding: 0; margin: 0 0 .75rem;
	display: flex; flex-wrap: wrap; gap: .5rem 0; justify-content: center;
}
.legal-nav li { display: inline-flex; align-items: center; }
.legal-nav li + li::before {
	content: "|";
	color: rgba(255,255,255,.3);
	margin: 0 .75rem;
}
.legal-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; }
.legal-nav a:hover { color: var(--jg-gold); text-decoration: underline; }
.muted-light { color: rgba(255,255,255,.7); font-size: .9rem; }
.site-footer .widget { margin-bottom: 1.25rem; }
.site-footer .widget-title { color: #fff; font-family: var(--font-body); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.site-footer .widget ul { list-style: none; padding: 0; margin: 0; }
.site-footer .widget li { padding: .25rem 0; }

/* Back to top */
.back-to-top {
	position: fixed; right: 1.25rem; bottom: 1.25rem;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--jg-navy);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(18,60,105,.35);
	transition: background .2s ease, transform .15s ease, opacity .2s ease;
	z-index: 60;
}
.back-to-top:hover { background: var(--jg-gold); color: #111; transform: translateY(-2px); }
.back-to-top[hidden] { display: none; }

/* Entry */
.entry { max-width: 760px; margin: 0 auto; }
.entry--wide { max-width: 1100px; }
.entry > * + * { margin-top: 1.25rem; }
.entry h2 { margin-top: 2.25rem; }
.entry h3 { margin-top: 1.5rem; }
.entry img { border-radius: 8px; margin: 1rem 0; }
.entry .wp-block-columns { gap: 1.5rem; }
.entry .wp-block-column h3 { margin-top: 0; }
.entry blockquote, .entry .wp-block-quote {
	border-left: 4px solid var(--jg-gold);
	padding: .25rem 0 .25rem 1.25rem;
	margin: 1.5rem 0;
	color: var(--jg-teal);
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-style: normal;
}
.entry .wp-block-quote cite { display: block; font-family: var(--font-body); font-size: .95rem; color: var(--jg-muted); font-style: normal; margin-top: .5rem; }
.entry .wp-block-separator { border: 0; border-top: 1px solid var(--jg-border); margin: 2rem 0; }
.entry .wp-block-list { padding-left: 1.25rem; }
.entry .wp-block-list li { margin-bottom: .35rem; }

/* Donate page */
.donate { padding-top: 3.5rem; padding-bottom: 4rem; }
.donate__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 3rem;
	align-items: start;
}
.donate__main h2 { color: var(--jg-navy); margin-top: 0; }
.donate__steps {
	counter-reset: donate-step;
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}
.donate__steps li {
	counter-increment: donate-step;
	position: relative;
	padding: 1.1rem 1.25rem 1.1rem 4.25rem;
	background: #fff;
	border: 1px solid var(--jg-border);
	border-left: 3px solid var(--jg-gold);
	border-radius: 8px;
	margin-bottom: .85rem;
}
.donate__steps li::before {
	content: counter(donate-step);
	position: absolute;
	left: 1rem; top: 50%;
	transform: translateY(-50%);
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--jg-navy);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1rem;
}
.donate__email {
	display: inline-block;
	background: rgba(244,180,0,.12);
	color: var(--jg-navy);
	padding: .25rem .55rem;
	border-radius: 6px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: .95em;
}
.donate__email-pending { color: var(--jg-muted); font-style: italic; }
.donate__form { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--jg-border); }
.donate__form h3 { color: var(--jg-navy); margin-top: 0; }

.donate__rules {
	background: #fff;
	border: 1px solid var(--jg-border);
	border-top: 3px solid var(--jg-teal);
	border-radius: 12px;
	padding: 1.5rem 1.5rem 1.25rem;
	box-shadow: 0 8px 24px rgba(18,60,105,.06);
	position: sticky;
	top: 90px;
}
.donate__rules h3 {
	color: var(--jg-teal);
	margin: 0 0 .75rem;
	font-size: 1.1rem;
	letter-spacing: .03em;
}
.donate__rules p { margin: 0 0 1rem; font-size: .92rem; }
.donate__rules-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}
.donate__rules-list li {
	padding: .55rem 0 .55rem 1.5rem;
	position: relative;
	border-bottom: 1px solid var(--jg-border);
	font-size: .9rem;
}
.donate__rules-list li::before {
	content: "•";
	position: absolute;
	left: 0; top: .5rem;
	color: var(--jg-gold);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1;
}
.donate__rules-list li:last-child { border-bottom: 0; }
.donate__rules-list strong { color: var(--jg-navy); }
.donate__legal {
	font-size: .82rem !important;
	color: var(--jg-muted);
	padding-top: .5rem;
	border-top: 1px dashed var(--jg-border);
}
.donate__legal a { color: var(--jg-muted); text-decoration: underline; }
.donate__extra { margin-top: 3rem; }

@media (max-width: 900px) {
	.donate__grid { grid-template-columns: 1fr; gap: 2rem; }
	.donate__rules { position: static; }
}

/* CF7 form styling — inherit theme look */
.wpcf7 { max-width: 640px; }
.wpcf7-form p { margin: 0 0 1rem; }
.wpcf7-form label { display: block; font-weight: 600; font-size: .92rem; }
.wpcf7-form input[type=text], .wpcf7-form input[type=email], .wpcf7-form input[type=tel],
.wpcf7-form select, .wpcf7-form textarea {
	width: 100%; font: inherit;
	padding: .8rem .9rem;
	border: 1px solid var(--jg-border); border-radius: 8px;
	margin-top: .35rem; background: #fff;
}
.wpcf7-form input:focus, .wpcf7-form select:focus, .wpcf7-form textarea:focus { outline: 2px solid var(--jg-gold); border-color: var(--jg-gold); }
.wpcf7-form .wpcf7-submit, .wpcf7-form input[type=submit] {
	background: var(--jg-gold); color: #111;
	border: 0; border-radius: 999px;
	padding: .85rem 1.4rem; font-weight: 700; cursor: pointer;
}
.wpcf7-form .wpcf7-submit:hover { background: #ffc832; }
.wpcf7-not-valid-tip { color: #b3261e; font-size: .85rem; }
.wpcf7-response-output { border-radius: 8px; margin-top: 1rem !important; padding: 1rem !important; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

/* Pagination */
.pagination { margin-top: 2.5rem; text-align: center; }
.pagination .page-numbers {
	display: inline-block; padding: .5rem .85rem; border-radius: 6px;
	background: var(--jg-light); color: var(--jg-navy); text-decoration: none;
	margin: 0 .15rem;
}
.pagination .page-numbers.current { background: var(--jg-navy); color: #fff; }

.muted { color: var(--jg-muted); }
.lead { font-size: 1.15rem; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Mobile tuning */
@media (max-width: 768px) {
	.hero { padding: 4rem 1.25rem; }
	.hero__sub { font-size: 1rem; }
	.page-hero { padding: 3rem 0 2.25rem; }
	.section { padding: 3rem 0; }
	.section__head { margin-bottom: 1.75rem; }
	.priority { gap: 1rem; }
	.btn { width: 100%; max-width: 320px; text-align: center; }
	.hero__ctas .btn, .cta-strip .btn { width: auto; }
}
@media (max-width: 480px) {
	.hero { padding: 3rem 1rem; }
	.hero__title { font-size: 1.85rem; }
	.countdown__cell { min-width: 80px; padding: .9rem 1rem; }
	.countdown__cell strong { font-size: 1.8rem; }
}
/* Avoid iOS zoom on focus */
@supports (-webkit-touch-callout: none) {
	.form input, .form select, .form textarea, .search-field { font-size: 16px; }
}

/* Breadcrumbs */
.breadcrumbs {
	background: #fff;
	border-bottom: 1px solid var(--jg-border);
	font-size: .85rem;
	padding: .65rem 0;
	color: var(--jg-muted);
}
.breadcrumbs .container { padding-left: 1.25rem; padding-right: 1.25rem; }
.breadcrumbs ol,
.breadcrumbs__trail,
.breadcrumbs .rank-math-breadcrumb p,
.breadcrumbs .rank-math-breadcrumb {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	color: var(--jg-muted);
}
.breadcrumbs li, .breadcrumbs__trail li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before,
.breadcrumbs__trail li + li::before {
	content: "›";
	color: var(--jg-muted);
	margin: 0 .5rem;
	font-weight: 400;
}
.breadcrumbs a {
	color: var(--jg-muted);
	text-decoration: none;
	transition: color .15s ease;
}
.breadcrumbs a:hover { color: var(--jg-navy); }
.breadcrumbs [aria-current="page"],
.breadcrumbs .last,
.breadcrumbs strong { color: var(--jg-navy); font-weight: 600; }

@media (max-width: 600px) {
	.breadcrumbs { font-size: .8rem; padding: .5rem 0; }
}

/* Scroll-reveal: fade-up effect for elements marked [data-reveal]. */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
	will-change: opacity, transform;
}
[data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   Get Involved page — v2 (simplified)
   ============================================================ */

.section--involve-primary {
	padding: 4rem 0 3rem;
	background: linear-gradient(180deg, #fff 0%, var(--jg-light) 100%);
}
.section__head--centered { text-align: center; }

.involve-form {
	margin-top: 2rem;
	background: #fff;
	padding: 2rem 2rem 1.75rem;
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(22,33,58,.04), 0 12px 36px rgba(22,33,58,.08);
	border: 1px solid rgba(22,33,58,.06);
}
.involve-form .wpcf7-form { margin: 0; }

/* Ways-to-help grid: 4 across on wide, 2 on tablet, 1 on mobile. */
.ways-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-top: 1.5rem;
}
.way-card {
	background: #fff;
	border: 1px solid rgba(22,33,58,.08);
	border-radius: 14px;
	padding: 1.5rem 1.25rem 1.35rem;
	display: flex;
	flex-direction: column;
	gap: .65rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.way-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(22,33,58,.08);
	border-color: rgba(200,154,60,.4);
}
.way-card__icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: rgba(200,154,60,.12);
	color: var(--jg-gold);
	display: flex; align-items: center; justify-content: center;
}
.way-card h3 {
	font-size: 1.1rem;
	margin: 0;
	color: var(--jg-navy);
	line-height: 1.3;
}
.way-card p {
	font-size: .9rem;
	color: var(--jg-muted);
	margin: 0;
	line-height: 1.5;
	flex: 1;
}
.way-card__cta {
	font-size: .9rem;
	font-weight: 600;
	color: var(--jg-teal);
	text-decoration: none;
	margin-top: .25rem;
	align-self: flex-start;
}
.way-card__cta:hover { color: var(--jg-navy); }

@media (max-width: 1024px) {
	.ways-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.ways-grid { grid-template-columns: 1fr; }
}

/* Compact share block */
.section--share-compact {
	padding: 3.5rem 0 4.5rem;
	background: var(--jg-navy);
	color: #fff;
}
.section--share-compact h2 {
	color: #fff;
	font-size: clamp(1.4rem, 2.6vw, 1.85rem);
	margin: 0 0 .5rem;
}
.section--share-compact p { color: rgba(255,255,255,.85); margin: 0; }

.share-compact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.share-compact__eyebrow {
	font-size: .8rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jg-gold);
	margin: 0 0 .5rem;
	font-weight: 700;
}
.share-compact__url {
	display: flex;
	gap: .5rem;
	margin-bottom: .85rem;
}
.share-compact__url input {
	flex: 1;
	padding: .65rem .85rem;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-family: inherit;
	font-size: .9rem;
}
.share-compact__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}
.btn--gold-sm, .btn--ghost-sm {
	padding: .55rem 1rem;
	font-size: .85rem;
	border-radius: 6px;
	font-weight: 600;
}
.btn--gold-sm { background: var(--jg-gold); color: #111; }
.btn--gold-sm:hover { background: #ffc832; }
.btn--ghost-sm {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.3);
}
.btn--ghost-sm:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

@media (max-width: 768px) {
	.share-compact { grid-template-columns: 1fr; gap: 1.5rem; }
	.involve-form { padding: 1.5rem 1.25rem; }
}
