:root {
	--pffa-primary: #004c97;
	--pffa-gold: #ffcd00;
	--pffa-gold-hot: #f2f200;
	--pffa-red: #da291c;
	--pffa-header: #262626;
	--pffa-topbar: #161616;
	--pffa-overlay: rgba(2, 64, 128, 0.95);
	--pffa-overlay-dark: rgba(38, 38, 38, 0.95);
	--pffa-motto: #badbf5;
	--pffa-text: #222;
	--pffa-muted: #666;
	--pffa-heading: #4b5263;
	--pffa-max: 1200px;
}

html { box-sizing: border-box; overflow-x: hidden; }
*, *::before, *::after { box-sizing: inherit; }

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: var(--pffa-text);
	background: #fff;
}

img { max-width: 100%; height: auto; }
a { color: var(--pffa-primary); }
a:hover { color: var(--pffa-red); }

h1, h2, h3, h4, .pffa-hero-title, .pffa-hero-auction {
	font-family: Lato, sans-serif;
}

.container { max-width: var(--pffa-max); margin: 0 auto; padding: 0 16px; }
.container.narrow { max-width: 860px; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Top bar */
.top-bar {
	background: var(--pffa-topbar);
	color: #fff;
	font-size: 0.875rem;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { color: var(--pffa-gold); }
.top-bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-sep { opacity: .6; }
.topbar-nav .topbar-menu {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Header */
.site-masthead {
	position: sticky;
	top: 0;
	z-index: 1002;
	background: var(--pffa-header);
	color: #fff;
}
.admin-bar .site-masthead { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .site-masthead { top: 46px; }
}
.site-header { background: transparent; }
.site-masthead-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	gap: 12px;
}
.site-branding { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.custom-logo { max-height: 62px; height: auto; width: auto; }
@media (max-width: 960px) { .custom-logo { max-height: 40px; } }

.primary-nav { margin-left: auto; }
.primary-nav-head { display: none; }

.primary-menu {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-menu > li { position: relative; }
.primary-menu > li > a {
	display: block;
	padding: 12px 10px;
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
}
.primary-menu > li > a:hover { color: var(--pffa-gold); }
.primary-menu .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: var(--pffa-topbar);
	border: 1px solid #2e2e2e;
	border-radius: 4px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .24);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
	z-index: 1003;
}
.primary-menu .sub-menu a {
	display: block;
	padding: 10px 14px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
.primary-menu .sub-menu a:hover {
	background: #1f1f1f;
	color: var(--pffa-gold);
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.submenu-toggle { display: none; }

.nav-toggle,
.nav-close {
	display: none;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 10px;
}
.nav-toggle-box { position: relative; width: 24px; height: 18px; display: inline-block; }
.nav-toggle-inner,
.nav-toggle-inner::before,
.nav-toggle-inner::after {
	position: absolute;
	width: 24px;
	height: 2px;
	background: #fff;
	left: 0;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-inner { top: 8px; }
.nav-toggle-inner::before { content: ""; top: -8px; }
.nav-toggle-inner::after { content: ""; top: 8px; }
.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 10040;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s ease, visibility .2s ease;
}

@media (max-width: 960px) {
	.topbar-left { display: none; }
	.topbar-nav { margin-left: auto; }
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin-left: auto;
		z-index: 1002;
	}
	.primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		width: min(100%, 360px);
		height: 100%;
		height: 100dvh;
		margin: 0;
		background: var(--pffa-header);
		transform: translateX(100%);
		transition: transform .25s ease, visibility .25s ease;
		z-index: 10050;
		display: flex;
		flex-direction: column;
		visibility: hidden;
		pointer-events: none;
		-webkit-overflow-scrolling: touch;
	}
	.primary-nav-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-shrink: 0;
		padding: 12px 12px 12px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		padding-top: max(12px, env(safe-area-inset-top));
	}
	.primary-nav-title {
		font-family: Lato, sans-serif;
		font-weight: 700;
		font-size: 1.125rem;
	}
	.nav-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		font-size: 2rem;
		line-height: 1;
	}
	.primary-nav .primary-menu {
		flex-direction: column;
		flex: 1;
		padding: 8px 0 32px;
		padding-bottom: max(32px, env(safe-area-inset-bottom));
		gap: 0;
		overflow-y: auto;
	}
	.primary-menu > li {
		width: 100%;
		position: static;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
	}
	.primary-menu > li > a {
		flex: 1;
		width: auto;
		padding: 16px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, .06);
		font-size: 1.0625rem;
	}
	.primary-menu .sub-menu {
		position: static;
		flex-basis: 100%;
		min-width: 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: #1a1a1a;
		padding: 0;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		display: none;
	}
	.primary-menu .sub-menu a {
		white-space: normal;
		padding: 14px 20px 14px 32px;
		border-bottom: 1px solid rgba(255, 255, 255, .05);
	}
	.primary-menu .submenu-open > .sub-menu { display: block; }
	.submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 52px;
		flex-shrink: 0;
		border: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .06);
		background: transparent;
		color: #fff;
		cursor: pointer;
	}
	.submenu-toggle::before {
		content: "+";
		font-size: 1.5rem;
		line-height: 1;
	}
	.submenu-open > .submenu-toggle::before { content: "−"; }
	.menu-open,
	.menu-open body { overflow: hidden; }
	.menu-open .nav-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.menu-open .primary-nav {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
	}
}

@media (min-width: 961px) {
	.primary-menu .menu-item-has-children > a::after {
		content: "▾";
		margin-left: 6px;
		font-size: .75em;
	}
	.is-scrolled .site-masthead {
		background: rgba(38, 38, 38, 0.92);
	}
}

/* Footer */
.site-footer { background: var(--pffa-header); color: #fff; }
.site-footer .container { padding: 28px 16px; display: grid; gap: 16px; }
.footer-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px; }
.footer-nav a { color: #fff; text-decoration: none; opacity: .9; }
.footer-nav a:hover { color: var(--pffa-gold); opacity: 1; }
.site-footer p { margin: 0; opacity: .8; }

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 6px;
	background: #fff;
	color: #111;
	font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus {
	outline: none;
	border-color: var(--pffa-primary);
	box-shadow: 0 0 0 3px rgba(0, 76, 151, .25);
}

.pffa-btn,
button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 5px;
	border: 1px solid transparent;
	background: var(--pffa-primary);
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
	transition: background .2s linear, transform .05s ease;
}
.pffa-btn:hover,
button[type="submit"]:hover {
	color: #111;
	background: var(--pffa-gold);
}
.pffa-btn-gold {
	background: #ffd800;
	color: #024080;
	border-color: #f3cc00;
	width: 200px;
}
.pffa-btn-gold:hover { background: #ffd800; color: #024080; }
.pffa-btn-outline {
	background: transparent;
	color: #fff;
	border-color: var(--pffa-gold);
}
.pffa-btn-outline:hover { background: var(--pffa-gold); color: #024080; }
.pffa-btn-full { width: 100%; }
.pffa-center { text-align: center; }

/* Hero */
.pffa-hero,
.pffa-band,
.pffa-stats {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
}
.pffa-hero::before,
.pffa-band::before,
.pffa-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--pffa-overlay);
}
.pffa-hero-inner,
.pffa-hero > .container,
.pffa-band > .container,
.pffa-stats > .container {
	position: relative;
	z-index: 1;
}
.pffa-hero { padding: 72px 16px 80px; }
.pffa-hero-short { padding: 56px 16px 64px; }
.pffa-hero-title {
	margin: 0 0 8px;
	font-weight: 900;
	font-size: clamp(28px, 5vw, 60px);
	color: #fff;
	text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
	line-height: 1.05;
}
.pffa-hero-motto {
	margin: 0 0 28px;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 2.4vw, 30px);
	color: var(--pffa-motto);
	text-transform: lowercase;
}
.pffa-hero-auction {
	margin: 0 0 12px;
	font-size: clamp(32px, 6vw, 63px);
	color: #fcfc00;
	font-weight: 900;
}
.pffa-auction-when {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--pffa-gold);
}
.pffa-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.pffa-countdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}
.pffa-count { min-width: 90px; padding: 10px; }
.pffa-count-num {
	display: block;
	font-size: clamp(32px, 5vw, 51px);
	font-weight: 900;
	color: var(--pffa-gold-hot);
	line-height: 1;
}
.pffa-count-label {
	display: block;
	font-size: clamp(16px, 2.5vw, 22px);
	color: #fffa00;
	margin-top: 6px;
}

/* Sections */
.pffa-section { padding: 56px 0; }
.pffa-service h3 {
	font-size: 1.75rem;
	color: var(--pffa-heading);
	margin-top: 0;
}
.pffa-photo { margin: 28px 0 0; text-align: center; }
.pffa-kicker {
	color: var(--pffa-muted);
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	text-align: center;
}
.pffa-about-copy .pffa-kicker { margin-bottom: 1.5rem; }
.pffa-lead { font-size: 1.125rem; text-align: center; max-width: 720px; margin: 0 auto 32px; }

.pffa-stats { padding: 56px 16px; background-attachment: fixed; }
.pffa-stats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.pffa-stat-icon { color: #fff; margin-bottom: 8px; }
.pffa-stat-icon svg { display: inline-block; }
.pffa-stat-num {
	font-family: Lato, sans-serif;
	font-weight: 900;
	font-size: 2.5rem;
	line-height: 1;
	color: var(--pffa-gold);
}
.pffa-stat-label { margin-top: 8px; }

.pffa-touch { text-align: center; }
.pffa-touch h2,
.pffa-band h2 {
	font-weight: 900;
	font-size: 2rem;
	color: var(--pffa-heading);
	margin-bottom: 8px;
}
.pffa-band h2,
.pffa-band p { color: #f9fbff; }
.pffa-touch-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	text-align: left;
	margin-top: 32px;
}
.pffa-map {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.pffa-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pffa-touch-details {
	display: flex;
	align-items: center;
}
.pffa-contact-info {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.pffa-contact-info li {
	margin: 0 0 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.pffa-contact-info li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.pffa-contact-label {
	display: block;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pffa-muted);
	margin-bottom: 4px;
}
.pffa-contact-info a {
	color: var(--pffa-primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.125rem;
}
.pffa-contact-info a:hover { color: var(--pffa-red); }
.pffa-contact-info span:not(.pffa-contact-label) {
	font-weight: 700;
	font-size: 1.125rem;
}

.pffa-band { padding: 64px 16px; }
.pffa-band-dark::before { background: var(--pffa-overlay-dark); }
.pffa-band-blue { background: #024080; }
.pffa-band-blue::before { display: none; }
.pffa-page-hero { padding: 56px 16px; }
.pffa-page-hero h1 {
	margin: 0;
	font-weight: 900;
	font-size: clamp(28px, 4vw, 46px);
	color: #fff;
}

.pffa-upcoming { max-width: 720px; margin: 24px auto 0; text-align: left; }
.pffa-upcoming-list { list-style: none; margin: 0; padding: 0; }
.pffa-upcoming-list li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.pffa-section .pffa-upcoming-list li { border-bottom-color: rgba(0, 0, 0, .08); }
.pffa-upcoming-when { font-size: .875rem; color: var(--pffa-gold); }
.pffa-section .pffa-upcoming-when { color: var(--pffa-primary); }
.pffa-upcoming-list .pffa-event-title { color: inherit; font-weight: 700; text-decoration: none; }
.pffa-upcoming-list .pffa-event-title:hover { color: var(--pffa-gold); }
.pffa-empty { opacity: .85; }

/* Calendar */
.pffa-calendar { margin: 0 auto; }
.pffa-cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}
.pffa-cal-nav h2 { margin: 0; color: var(--pffa-primary); }
.pffa-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	border: 1px solid #e4e4e4;
}
.pffa-cal-dow {
	background: var(--pffa-primary);
	color: #fff;
	padding: 10px 6px;
	text-align: center;
	font-size: .8rem;
	font-weight: 700;
}
.pffa-cal-day {
	min-height: 110px;
	border: 1px solid #eee;
	padding: 8px;
	background: #fff;
}
.pffa-cal-day.is-empty { background: #fafafa; }
.pffa-cal-day.has-events { background: #f3f8ff; }
.pffa-cal-num { display: block; font-weight: 700; color: var(--pffa-primary); margin-bottom: 6px; }
.pffa-cal-day ul { list-style: none; margin: 0; padding: 0; }
.pffa-cal-day li { margin: 0 0 4px; font-size: .8rem; line-height: 1.3; }
.pffa-list-heading { margin-top: 48px; color: var(--pffa-primary); }
.pffa-event-meta { color: var(--pffa-muted); margin-bottom: 1.5rem; }

.pffa-cal-subscribe {
	margin: 28px 0 0;
	padding: 22px 20px;
	background: #f3f8ff;
	border: 1px solid #d6e6f8;
	border-radius: 12px;
	text-align: center;
}
.pffa-cal-subscribe h3 {
	margin: 0 0 6px;
	color: var(--pffa-primary);
	font-size: 1.25rem;
}
.pffa-cal-subscribe p {
	margin: 0 0 16px;
	color: var(--pffa-muted);
}
.pffa-cal-subscribe-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.pffa-sync-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	border-radius: 999px;
	font-family: Lato, sans-serif;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid transparent;
}
.pffa-sync-google {
	background: #fff;
	color: #1a73e8;
	border-color: #1a73e8;
}
.pffa-sync-google:hover { background: #e8f0fe; }
.pffa-sync-apple {
	background: #111;
	color: #fff;
	border-color: #111;
}
.pffa-sync-apple:hover { background: #333; color: #fff; }
.pffa-cal-subscribe-dark {
	background: rgba(0, 0, 0, .28);
	border-color: rgba(255, 255, 255, .18);
}
.pffa-cal-subscribe-dark h3,
.pffa-cal-subscribe-dark p { color: #fff; }
.pffa-cal-subscribe-dark p { color: #e8f2ff; }
.pffa-cal-subscribe-dark .pffa-sync-google {
	background: #fff;
	color: #1a73e8;
}
.pffa-add-cal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	margin-top: 4px;
	font-size: .8rem;
	font-weight: 700;
}
.pffa-add-cal-single {
	margin: 0 0 1.5rem;
	font-size: .95rem;
}
.pffa-add-cal-label {
	color: var(--pffa-muted);
	margin-right: 4px;
}
.pffa-add-cal a {
	color: var(--pffa-primary);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}
.pffa-add-cal a:hover { color: var(--pffa-red); }
.pffa-band-dark .pffa-add-cal a { color: var(--pffa-gold); }

/* Cards / tables */
.pffa-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}
.pffa-card {
	display: block;
	padding: 22px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
	transition: transform .15s ease, box-shadow .15s ease;
}
.pffa-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	color: inherit;
}
.pffa-card h3 { margin: 0 0 8px; color: var(--pffa-primary); }
.pffa-card p { margin: 0; color: var(--pffa-muted); }
.pffa-table-wrap { overflow-x: auto; }
.pffa-table { width: 100%; border-collapse: collapse; }
.pffa-table th,
.pffa-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #eee; }
.pffa-table th { background: var(--pffa-primary); color: #fff; }
.pffa-table tr:nth-child(even) td { background: #f7f9fc; }

.pffa-card-article { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid #eee; }

@media (max-width: 900px) {
	.pffa-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.pffa-touch-grid { grid-template-columns: 1fr; }
	.pffa-stats { background-attachment: scroll; }
	.pffa-cal-day { min-height: 72px; }
	.pffa-cal-nav { flex-direction: column; }
}
@media (max-width: 600px) {
	.pffa-stats-grid { grid-template-columns: 1fr; }
	.pffa-cal-day ul { display: none; }
}

/* Quick links (Linktree-style) */
.pffa-linktree {
	background: #024080;
	background-image: linear-gradient(180deg, #024080 0%, #00356d 100%);
	color: #fff;
	padding: 48px 16px 56px;
	text-align: center;
}
.pffa-linktree-inner { max-width: 540px; margin: 0 auto; }
.pffa-linktree-logo {
	display: block;
	max-height: 72px;
	width: auto;
	margin: 0 auto 16px;
}
.pffa-linktree h2 {
	margin: 0 0 8px;
	font-weight: 900;
	font-size: 1.75rem;
	color: #fff;
}
.pffa-linktree-lede {
	margin: 0 0 28px;
	color: var(--pffa-motto);
	font-weight: 700;
}
.pffa-linktree-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pffa-linktree-list .sub-menu { display: none; }
.pffa-linktree-list > li { margin: 0 0 12px; }
.pffa-linktree-list > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 22px;
	background: var(--pffa-gold);
	color: #024080;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 1.0625rem;
	text-decoration: none;
	border-radius: 999px;
	border: 2px solid #f3cc00;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
	transition: transform .12s ease, background .12s ease;
}
.pffa-linktree-list > li > a:hover {
	background: #fff;
	color: #024080;
	transform: translateY(-1px);
}
.pffa-homescreen-tip {
	margin: 28px 0 0;
	padding: 16px 18px;
	background: rgba(0, 0, 0, .22);
	border-radius: 12px;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #e8f2ff;
}
.pffa-homescreen-tip strong {
	display: block;
	margin-bottom: 6px;
	color: var(--pffa-gold);
}
.pffa-notify { margin-top: 16px; }
.pffa-notify-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 999px;
	border: 2px solid #fff;
	background: transparent;
	color: #fff;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
}
.pffa-notify-btn:hover:not(:disabled) {
	background: #fff;
	color: #024080;
}
.pffa-notify-btn:disabled {
	opacity: 0.85;
	cursor: default;
	border-color: var(--pffa-gold);
	color: var(--pffa-gold);
}
.pffa-notify-status {
	margin: 10px 0 0;
	font-size: 0.9rem;
	color: #e8f2ff;
}

/* Home screen / standalone app */
.site-masthead { padding-top: env(safe-area-inset-top); }
.site-footer { padding-bottom: env(safe-area-inset-bottom); }
@media (display-mode: standalone) {
	.top-bar { display: none; }
}
