/* Happy Plants — Footer */

.hp-footer {
	background: #1c3a28;
	padding: 48px 32px 0;
	box-sizing: border-box;
	width: 100%;
}

.hp-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand col */
.hp-footer__col--brand {
	padding-left: 0;
}

.hp-footer__logo-wrap {
	width: 280px;
	height: 42px;
	overflow: hidden;
	margin-bottom: 16px;
	margin-left: -20px;
}

.hp-footer__logo-img {
	width: 280px;
	height: auto;
	display: block;
	margin-top: -46%;
	filter: brightness(0) invert(1);
}

.hp-footer__tagline {
	font-size: 10px;
	color: rgba(255,255,255,0.4);
	line-height: 1.8;
	max-width: 200px;
	margin-bottom: 12px;
}

.hp-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hp-footer__contact span {
	font-size: 10px;
	color: rgba(255,255,255,0.3);
	line-height: 1.8;
}

/* Col titles */
.hp-footer__col-title {
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.3);
	margin-bottom: 14px;
	font-weight: 500;
}

/* Links */
.hp-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.hp-footer__links li {
	margin-bottom: 8px;
}
.hp-footer__links a {
	font-size: 10px;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	display: block;
	transition: color 0.15s;
}
.hp-footer__links a:hover {
	color: #ffffff;
}

/* Newsletter */
.hp-footer__newsletter-text {
	font-size: 10px;
	color: rgba(255,255,255,0.35);
	line-height: 1.7;
	margin-bottom: 12px;
}
.hp-footer__newsletter-form {
	display: flex;
}
.hp-footer__newsletter-input {
	flex: 1;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	padding: 9px 12px;
	font-size: 10px;
	color: #fff;
	outline: none;
	font-family: inherit;
}
.hp-footer__newsletter-input::placeholder {
	color: rgba(255,255,255,0.3);
}
.hp-footer__newsletter-btn {
	background: #b8975a;
	color: #fff;
	border: none;
	padding: 9px 16px;
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}
.hp-footer__newsletter-btn:hover {
	background: #a07848;
}

.hp-footer__socials {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

.hp-footer__social-link {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	font-size: 11px;
	transition: color 0.15s;
}

.hp-footer__social-link:hover {
	color: #ffffff;
}

.hp-footer__social-link img {
	filter: brightness(0) invert(1);
	opacity: 0.6;
	transition: opacity 0.15s;
}

.hp-footer__social-link:hover img {
	opacity: 1;
}

/* Bottom bar */
.hp-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	max-width: 1200px;
	margin: 0 auto;
	font-size: 9px;
	color: rgba(255,255,255,0.25);
}
