/* Replace the Seese theme's legacy footer and black feature strip. */
.seese-footer,
.seese-bottomboxes { display: none !important; }

/* Jetpack's logged-in cookie-check iframe must remain functional but off-canvas. */
iframe.jetpack-notes-cookie-check {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border: 0 !important;
}

.pga-form__message:not(:empty) {
	display: block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.pga-form__message.is-error { color: #9d2f2f; }

.pga-form .pga-consent {
	display: flex !important;
	gap: 10px;
	align-items: flex-start;
	cursor: pointer;
}

.pga-form .pga-consent input[type="checkbox"] {
	position: static !important;
	left: auto !important;
	top: auto !important;
	display: inline-block !important;
	flex: 0 0 18px;
	width: 18px !important;
	height: 18px !important;
	margin: 1px 0 0 !important;
	padding: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	clip: auto !important;
	clip-path: none !important;
	appearance: auto !important;
	accent-color: #2f6847;
}

.planteful-site-footer,
.planteful-site-footer * { box-sizing: border-box; }

.planteful-site-footer {
	--planteful-green: #303b2b;
	--planteful-cream: #f7f2e9;
	--planteful-muted: #dcd9cd;
	--planteful-clay: #c69782;
	position: relative;
	overflow: hidden;
	clear: both;
	width: 100%;
	color: var(--planteful-cream);
	background: var(--planteful-green);
	font-family: Arial, Helvetica, sans-serif;
}

.planteful-site-footer::after {
	position: absolute;
	left: -160px;
	bottom: -300px;
	width: 430px;
	height: 430px;
	border-radius: 50%;
	background: rgba(170, 182, 155, .07);
	content: "";
}

.planteful-footer-inner {
	position: relative;
	z-index: 1;
	width: min(1440px, 100%);
	margin: 0 auto;
	padding: clamp(38px, 4vw, 56px) clamp(24px, 5vw, 72px) 0;
}

.planteful-footer-grid {
	display: grid;
	grid-template-columns: minmax(270px, 1.65fr) repeat(4, minmax(130px, 1fr));
	gap: clamp(24px, 3vw, 46px);
}

.planteful-footer-brand { max-width: 330px; }

.planteful-footer-logo {
	display: block;
	width: min(100%, 310px);
	height: 118px;
	overflow: hidden;
	transition: transform .2s ease;
}

.planteful-footer-logo:hover,
.planteful-footer-logo:focus-visible { transform: translateY(-2px); }

.planteful-footer-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.planteful-footer-socials {
	display: flex;
	justify-content: center;
	gap: 10px;
	width: min(100%, 310px);
	margin-top: 6px;
}

.planteful-footer-socials a {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--planteful-cream);
	border: 1px solid rgba(255, 255, 255, .23);
	border-radius: 50%;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.planteful-footer-socials a:hover,
.planteful-footer-socials a:focus-visible {
	color: #293324;
	background: var(--planteful-clay);
	border-color: var(--planteful-clay);
	transform: translateY(-2px);
}

.planteful-footer-socials svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.planteful-footer-socials .is-filled,
.planteful-footer-socials .is-facebook,
.planteful-footer-socials .is-tiktok,
.planteful-footer-socials .is-youtube { fill: currentColor; stroke: none; }

.planteful-footer-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.planteful-footer-column h2 {
	margin: 3px 0 12px;
	color: var(--planteful-cream) !important;
	font: 400 19px/1.2 Georgia, "Times New Roman", serif;
}

.planteful-footer-column > a,
.planteful-footer-contact > p {
	min-height: 34px;
	margin: 0;
	padding: 6px 0;
	color: var(--planteful-muted);
	font-size: 13px;
	line-height: 1.55;
	text-decoration: none;
	transition: color .2s ease, transform .2s ease;
}

.planteful-footer-column > a:hover,
.planteful-footer-column > a:focus-visible {
	color: var(--planteful-clay);
	transform: translateX(3px);
}

.planteful-footer-contact > a,
.planteful-footer-contact > p {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	width: 100%;
}

.planteful-footer-contact svg {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	fill: none;
	stroke: var(--planteful-clay);
	stroke-width: 1.6;
}

.planteful-footer-contact span { overflow-wrap: anywhere; }

.planteful-footer-bottom {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: clamp(30px, 4vw, 44px);
	padding: 18px 0 20px;
	color: rgba(247, 242, 233, .61);
	border-top: 1px solid rgba(247, 242, 233, .15);
	font-size: 11px;
	letter-spacing: .03em;
}

.planteful-footer-bottom p { margin: 0; }
.planteful-footer-bottom p:last-child { color: rgba(170, 182, 155, .8); }

.planteful-site-footer :focus-visible {
	outline: 2px solid var(--planteful-clay);
	outline-offset: 4px;
}

@media (max-width: 1080px) {
	.planteful-footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
	.planteful-footer-brand { grid-row: span 2; }
}

@media (max-width: 720px) {
	.planteful-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
	.planteful-footer-brand { grid-column: 1 / -1; grid-row: auto; }
	.planteful-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
	.planteful-footer-inner { padding-inline: 20px; }
	.planteful-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 20px; }
	.planteful-footer-brand { grid-column: 1 / -1; justify-self: center; width: 100%; }
	.planteful-footer-contact { grid-column: auto; }
	.planteful-footer-column > a,
	.planteful-footer-contact > p { min-height: 44px; padding-block: 11px; }
	.planteful-footer-bottom {
		margin-top: 22px;
		padding: 16px 0 calc(76px + env(safe-area-inset-bottom));
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.planteful-site-footer *,
	.planteful-site-footer *::before,
	.planteful-site-footer *::after { transition-duration: .01ms !important; }
}
