.hero-grid {
	grid-template-columns: 1fr .58fr .9fr;
	gap: 24px;
}

.hero-copy {
	position: relative;
	z-index: 4;
}

.hero-button {
	margin-top: 8px;
}

.button-outline {
	border: 1px solid #cae4d1;
	background: rgba(255, 255, 255, .88);
	color: #245537;
	box-shadow: none;
}

.button-outline:hover {
	border-color: var(--primary);
	background: #fff;
}

.package-bottom a {
	display: grid;
	place-items: center;
	width: 39px;
	height: 39px;
	border-radius: 12px;
	background: #edf9ef;
	color: #268941;
	font-size: 18px;
}

.hero-mascot-wrap {
	position: relative;
	z-index: 3;
	align-self: end;
	height: 545px;
	margin: -35px -100px -65px -90px;
	pointer-events: none;
}

.hero-mascot {
	position: absolute;
	right: 50%;
	bottom: 0;
	width: 390px;
	max-width: none;
	height: 550px;
	object-fit: contain;
	filter: drop-shadow(0 30px 35px rgba(22, 66, 40, .18));
	transform: translateX(50%);
	animation: mascot-float 5s ease-in-out infinite;
}

.mascot-orbit {
	position: absolute;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 5px solid rgba(255, 255, 255, .82);
	border-radius: 20px;
	background: #fff;
	color: #2aa64a;
	font-size: 22px;
	box-shadow: 0 15px 35px rgba(27, 67, 43, .15);
	animation: orbit-float 4s ease-in-out infinite;
}

.orbit-one { top: 16%; left: 4%; background: #f1fff3; }
.orbit-two { right: 0; bottom: 25%; background: var(--primary); color: #163820; animation-delay: -1.8s; }

@keyframes mascot-float {
	0%, 100% { transform: translateX(50%) translateY(0); }
	50% { transform: translateX(50%) translateY(-12px); }
}

@keyframes orbit-float {
	0%, 100% { transform: rotate(-7deg) translateY(0); }
	50% { transform: rotate(5deg) translateY(-10px); }
}

@media (max-width: 1100px) {
	.hero-grid { grid-template-columns: 1fr .42fr .9fr; }
	.hero-mascot-wrap { margin-left: -120px; margin-right: -120px; opacity: .94; }
	.hero-mascot { width: 330px; }
}

@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr 1fr; }
	.hero-copy { grid-column: 1 / -1; text-align: center; }
	.hero-copy > p { margin-inline: auto; }
	.hero-trust { justify-content: center; }
	.hero-mascot-wrap { height: 450px; margin: -20px -80px -60px 0; }
	.hero-mascot { width: 320px; height: 460px; }
	.order-card { position: relative; z-index: 5; }
}

@media (max-width: 760px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-copy { grid-column: auto; }
	.hero-mascot-wrap { height: 390px; margin: -15px 0 -50px; }
	.hero-mascot { width: 300px; height: 410px; }
	.mascot-orbit { width: 48px; height: 48px; }
}
