/**
 * Letters From Haven — front page sections only
 */

.lfh-home {
	margin: 0;
	padding: 0;
}

.lfh-home .hero {
	min-height: calc(100vh - var(--lfh-header-offset, 0px));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	position: relative;
	background: linear-gradient(180deg, var(--lfh-cream) 0%, var(--lfh-blush) 40%, var(--lfh-cream) 100%);
}

.lfh-home .hero::after {
	content: "✉ ♡ ✿ ☆ ✉ ♡ ✿ ☆";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	font-size: 1.4rem;
	letter-spacing: 2.5rem;
	padding: 1.5rem;
	color: var(--lfh-soft-pink);
	opacity: 0.5;
	animation: lfh-floatLetters 8s ease-in-out infinite;
	text-align: center;
}

@keyframes lfh-floatLetters {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}

.lfh-home .hero-envelope {
	width: 120px;
	height: 90px;
	margin-bottom: 1.5rem;
	animation: lfh-gentleBounce 3s ease-in-out infinite;
	filter: drop-shadow(0 8px 20px rgba(139, 111, 94, 0.15));
}

@keyframes lfh-gentleBounce {
	0%,
	100% {
		transform: translateY(0) rotate(-2deg);
	}
	50% {
		transform: translateY(-12px) rotate(2deg);
	}
}

.lfh-home .hero h1 {
	font-family: "Caveat", cursive;
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 700;
	color: var(--lfh-dark-brown);
	line-height: 1.1;
	margin-bottom: 0.3rem;
	letter-spacing: -1px;
}

.lfh-home .hero h1 span {
	display: block;
	font-size: 0.45em;
	font-family: "Patrick Hand", cursive;
	color: var(--lfh-coral);
	letter-spacing: 3px;
	margin-top: 0.2rem;
}

.lfh-home .hero-tagline {
	font-family: "Patrick Hand", cursive;
	font-size: clamp(1.15rem, 3vw, 1.5rem);
	color: var(--lfh-text-soft);
	max-width: 500px;
	margin: 1rem auto 2rem;
	line-height: 1.6;
}

.lfh-home .hero-cta {
	display: inline-block;
	background: var(--lfh-coral);
	color: #fff !important;
	font-family: "Quicksand", sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(232, 131, 107, 0.35);
	letter-spacing: 0.5px;
}

.lfh-home .hero-cta:hover {
	background: var(--lfh-deep-coral);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(232, 131, 107, 0.45);
	color: #fff !important;
}

.lfh-home .limited-badge {
	display: inline-block;
	margin-top: 1rem;
	font-family: "Patrick Hand", cursive;
	font-size: 1rem;
	color: var(--lfh-coral);
	background: var(--lfh-soft-yellow);
	padding: 0.4rem 1.2rem;
	border-radius: 20px;
	border: 2px dashed var(--lfh-coral);
	animation: lfh-pulse 2.5s ease-in-out infinite;
}

@keyframes lfh-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.lfh-home .doodle-divider {
	text-align: center;
	padding: 1rem 0;
	font-size: 1.5rem;
	color: var(--lfh-soft-pink);
	letter-spacing: 1rem;
	opacity: 0.6;
}

.lfh-home .story-section {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 2rem;
	text-align: center;
}

.lfh-home .section-label {
	font-family: "Patrick Hand", cursive;
	font-size: 1rem;
	color: var(--lfh-coral);
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 0.5rem;
}

.lfh-home .story-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--lfh-dark-brown);
	margin-bottom: 1.5rem;
}

.lfh-home .story-section p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--lfh-text-soft);
	max-width: 600px;
	margin: 0 auto 1rem;
}

.lfh-home .story-section p strong {
	color: var(--lfh-dark-brown);
	font-weight: 600;
}

.lfh-home .collage-section {
	padding: 3rem 2rem 5rem;
	background: linear-gradient(180deg, var(--lfh-cream) 0%, var(--lfh-sky) 30%, var(--lfh-lavender) 70%, var(--lfh-cream) 100%);
	position: relative;
}

.lfh-home .collage-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--lfh-dark-brown);
	text-align: center;
	margin-bottom: 0.5rem;
}

.lfh-home .collage-subtitle {
	text-align: center;
	font-family: "Patrick Hand", cursive;
	font-size: 1.15rem;
	color: var(--lfh-text-soft);
	margin-bottom: 2.5rem;
}

.lfh-home .collage-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding: 0 1rem;
}

.lfh-home .collage-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(93, 64, 55, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	position: relative;
}

.lfh-home .collage-item:hover {
	transform: rotate(-1deg) scale(1.03);
	box-shadow: 0 8px 30px rgba(93, 64, 55, 0.18);
}

.lfh-home .collage-item:nth-child(2) {
	transform: rotate(1.5deg);
}
.lfh-home .collage-item:nth-child(2):hover {
	transform: rotate(2.5deg) scale(1.03);
}
.lfh-home .collage-item:nth-child(4) {
	transform: rotate(-2deg);
}
.lfh-home .collage-item:nth-child(4):hover {
	transform: rotate(-3deg) scale(1.03);
}
.lfh-home .collage-item:nth-child(5) {
	transform: rotate(1deg);
}
.lfh-home .collage-item:nth-child(5):hover {
	transform: rotate(0deg) scale(1.03);
}
.lfh-home .collage-item:nth-child(6) {
	transform: rotate(-1.5deg);
}
.lfh-home .collage-item:nth-child(6):hover {
	transform: rotate(-0.5deg) scale(1.03);
}

.lfh-home .collage-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Patrick Hand", cursive;
	font-size: 0.95rem;
	color: var(--lfh-text-soft);
	position: relative;
}

.lfh-home .collage-placeholder .emoji-art {
	font-size: 3rem;
	position: absolute;
	opacity: 0.15;
}

/* No white fill — each .cp-* background shows through transparent PNGs */
.lfh-home .collage-placeholder.is-photo {
	padding: 0.65rem;
	box-sizing: border-box;
}

.lfh-home .collage-placeholder .collage-photo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	position: relative;
	z-index: 1;
}

.lfh-home .cp-1 {
	background: var(--lfh-blush);
}
.lfh-home .cp-2 {
	background: var(--lfh-soft-yellow);
}
.lfh-home .cp-3 {
	background: var(--lfh-mint);
}
.lfh-home .cp-4 {
	background: var(--lfh-lavender);
}
.lfh-home .cp-5 {
	background: var(--lfh-sky);
}
.lfh-home .cp-6 {
	background: var(--lfh-blush);
}

.lfh-home .collage-caption {
	padding: 0.75rem 1rem;
	font-family: "Patrick Hand", cursive;
	font-size: 0.9rem;
	color: var(--lfh-text-soft);
	text-align: center;
	border-top: 1px dashed var(--lfh-soft-pink);
}

.lfh-home .tape {
	position: absolute;
	width: 60px;
	height: 20px;
	background: rgba(255, 243, 205, 0.7);
	top: -8px;
	left: 50%;
	transform: translateX(-50%) rotate(-3deg);
	border-radius: 2px;
	z-index: 2;
}

.lfh-home .who-section {
	padding: 5rem 2rem 6.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.lfh-home .who-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--lfh-dark-brown);
	text-align: center;
	margin-bottom: 0.5rem;
}

.lfh-home .who-subtitle {
	text-align: center;
	font-family: "Patrick Hand", cursive;
	font-size: 1.15rem;
	color: var(--lfh-text-soft);
	margin-bottom: 3rem;
}

.lfh-home .who-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.lfh-home .who-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 3px 15px rgba(93, 64, 55, 0.08);
	border: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.lfh-home .who-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 16px 16px 0 0;
}

.lfh-home .who-card:nth-child(1)::before {
	background: var(--lfh-soft-pink);
}
.lfh-home .who-card:nth-child(2)::before {
	background: var(--lfh-lavender);
}
.lfh-home .who-card:nth-child(3)::before {
	background: var(--lfh-mint);
}
.lfh-home .who-card:nth-child(4)::before {
	background: var(--lfh-soft-yellow);
}

.lfh-home .who-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(93, 64, 55, 0.12);
}

.lfh-home .who-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.lfh-home .who-card h3 {
	font-family: "Caveat", cursive;
	font-size: 1.5rem;
	color: var(--lfh-dark-brown);
	margin-bottom: 0.5rem;
}

.lfh-home .who-card p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--lfh-text-soft);
}

/* ----- Why Letters Matter (research) ----- */
.lfh-home .science-section {
	padding: 5rem 2rem;
	background: linear-gradient(
		180deg,
		var(--lfh-cream) 0%,
		var(--lfh-soft-yellow) 25%,
		var(--lfh-cream) 100%
	);
}

.lfh-home .science-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--lfh-dark-brown);
	text-align: center;
	margin-bottom: 0.5rem;
	line-height: 1.15;
}

.lfh-home .science-subtitle {
	text-align: center;
	font-family: "Patrick Hand", cursive;
	font-size: 1.15rem;
	color: var(--lfh-text-soft);
	margin: 0 auto 2.5rem;
	max-width: 640px;
	line-height: 1.5;
}

.lfh-home .science-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 950px;
	margin: 0 auto;
}

.lfh-home .science-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 3px 15px rgba(93, 64, 55, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.lfh-home .science-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 16px 16px 0 0;
}

.lfh-home .science-card:nth-child(1)::before {
	background: var(--lfh-soft-pink);
}

.lfh-home .science-card:nth-child(2)::before {
	background: var(--lfh-lavender);
}

.lfh-home .science-card:nth-child(3)::before {
	background: var(--lfh-mint);
}

.lfh-home .science-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(93, 64, 55, 0.12);
}

.lfh-home .science-icon {
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 0.75rem;
}

.lfh-home .science-card h3 {
	font-family: "Caveat", cursive;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--lfh-dark-brown);
	margin-bottom: 0.6rem;
	line-height: 1.2;
}

.lfh-home .science-card p {
	font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--lfh-text-soft);
	margin: 0;
}

.lfh-home .science-source {
	display: block;
	margin-top: 0.75rem;
	font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 0.72rem;
	color: var(--lfh-warm-brown);
	font-style: italic;
	opacity: 0.7;
}

.lfh-home .science-footnote {
	text-align: center;
	max-width: 600px;
	margin: 2.5rem auto 0;
	font-family: "Patrick Hand", cursive;
	font-size: 1.05rem;
	color: var(--lfh-text-soft);
	line-height: 1.6;
}

.lfh-home .science-footnote strong {
	color: var(--lfh-dark-brown);
	font-weight: 700;
}

.lfh-home .whats-inside {
	padding: 5rem 2rem;
	background: linear-gradient(180deg, var(--lfh-cream), var(--lfh-blush), var(--lfh-cream));
	text-align: center;
	overflow: visible;
}

.lfh-home .whats-inside h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--lfh-dark-brown);
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 1;
}

.lfh-home .envelope-reveal {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	overflow: visible;
	/*
	 * Flap (::before) uses translateY(-96%) of ~38% envelope height — reserve enough
	 * space so the tip is not clipped and does not overlap the heading (esp. tall letters on mobile).
	 */
	padding-top: clamp(6.5rem, 16vw, 17rem);
}

.lfh-home .envelope-body {
	background: var(--lfh-envelope-tan);
	border-radius: 12px;
	padding: 3rem 2.5rem;
	position: relative;
	box-shadow: 0 6px 30px rgba(93, 64, 55, 0.15);
}

.lfh-home .envelope-body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* Shorter flap than 50% = less upward extension over the section above */
	height: 38%;
	background:
		linear-gradient(135deg, transparent 48%, var(--lfh-envelope-tan) 48%),
		linear-gradient(-135deg, transparent 48%, var(--lfh-envelope-tan) 48%);
	background-size: 51% 100%;
	background-position: left, right;
	background-repeat: no-repeat;
	transform: translateY(-96%);
	filter: brightness(0.95);
}

.lfh-home .stamp {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	width: 55px;
	height: 65px;
	background: #fff;
	border: 3px dotted var(--lfh-stamp-red);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	transform: rotate(3deg);
}

.lfh-home .letter-contents {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	text-align: left;
	font-family: "Patrick Hand", cursive;
	font-size: 1.1rem;
	color: var(--lfh-text-dark);
	line-height: 2;
	position: relative;
	box-shadow: inset 0 0 20px rgba(93, 64, 55, 0.05);
	background-image: repeating-linear-gradient(transparent, transparent 31px, #e8ddd3 31px, #e8ddd3 32px);
	background-position: 0 1.6rem;
}

.lfh-home .letter-contents .heart-doodle {
	color: var(--lfh-coral);
	font-size: 1.4rem;
}

.lfh-home .includes-list {
	max-width: 500px;
	margin: 2.5rem auto 0;
	text-align: left;
}

.lfh-home .includes-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--lfh-text-soft);
}

.lfh-home .includes-item .check {
	color: var(--lfh-coral);
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.lfh-home .pricing-section {
	padding: 5rem 2rem;
	text-align: center;
}

.lfh-home .pricing-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--lfh-dark-brown);
	margin-bottom: 0.5rem;
}

.lfh-home .pricing-subtitle {
	font-family: "Patrick Hand", cursive;
	font-size: 1.15rem;
	color: var(--lfh-text-soft);
	margin-bottom: 3rem;
}

.lfh-home .pricing-cards {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	max-width: 750px;
	margin: 0 auto;
}

.lfh-home .price-card {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	width: 320px;
	box-shadow: 0 4px 20px rgba(93, 64, 55, 0.1);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lfh-home .price-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(93, 64, 55, 0.15);
}

.lfh-home .price-card.popular {
	border: 3px solid var(--lfh-coral);
}

.lfh-home .popular-tag {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lfh-coral);
	color: #fff;
	font-family: "Patrick Hand", cursive;
	font-size: 0.85rem;
	padding: 0.25rem 1.2rem;
	border-radius: 20px;
	letter-spacing: 1px;
}

.lfh-home .price-card h3 {
	font-family: "Caveat", cursive;
	font-size: 1.8rem;
	color: var(--lfh-dark-brown);
	margin-bottom: 0.5rem;
}

.lfh-home .price-amount {
	font-family: "Quicksand", sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--lfh-coral);
	margin-bottom: 0.25rem;
}

.lfh-home .price-amount sup {
	font-size: 1rem;
	vertical-align: super;
	margin-right: 2px;
}

.lfh-home .price-amount .cents {
	font-size: 1.2rem;
}

.lfh-home .price-period {
	font-size: 0.9rem;
	color: var(--lfh-text-soft);
	margin-bottom: 1.5rem;
}

.lfh-home .price-features {
	list-style: none;
	text-align: left;
	margin: 0 0 2rem;
	padding: 0;
}

.lfh-home .price-features li {
	padding: 0.5rem 0;
	font-size: 0.95rem;
	color: var(--lfh-text-soft);
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

.lfh-home .price-features li::before {
	content: "♡";
	color: var(--lfh-coral);
	flex-shrink: 0;
}

.lfh-home .price-btn {
	display: inline-block;
	width: 100%;
	padding: 0.9rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-family: "Quicksand", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
}

.lfh-home .price-btn.primary {
	background: var(--lfh-coral);
	color: #fff !important;
	box-shadow: 0 4px 15px rgba(232, 131, 107, 0.3);
}

.lfh-home .price-btn.primary:hover {
	background: var(--lfh-deep-coral);
	transform: translateY(-1px);
	color: #fff !important;
}

.lfh-home .price-btn.secondary {
	background: transparent;
	color: var(--lfh-coral) !important;
	border: 2px solid var(--lfh-coral);
}

.lfh-home .price-btn.secondary:hover {
	background: var(--lfh-coral);
	color: #fff !important;
}

.lfh-home .gift-section {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, var(--lfh-lavender) 0%, var(--lfh-blush) 50%, var(--lfh-soft-yellow) 100%);
	text-align: center;
}

.lfh-home .gift-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 2.8rem);
	color: var(--lfh-dark-brown);
	margin-bottom: 0.75rem;
}

.lfh-home .gift-section p {
	font-family: "Patrick Hand", cursive;
	font-size: 1.15rem;
	color: var(--lfh-text-soft);
	max-width: 550px;
	margin: 0 auto 1.5rem;
	line-height: 1.6;
}

.lfh-home .gift-btn {
	display: inline-block;
	background: var(--lfh-dark-brown);
	color: var(--lfh-cream) !important;
	font-family: "Quicksand", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.9rem 2.2rem;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2);
}

.lfh-home .gift-btn:hover {
	background: var(--lfh-text-dark);
	transform: translateY(-2px);
	color: var(--lfh-cream) !important;
}

.lfh-home .faq-section {
	padding: 5rem 2rem;
	max-width: 700px;
	margin: 0 auto;
}

.lfh-home .faq-section h2 {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--lfh-dark-brown);
	text-align: center;
	margin-bottom: 2.5rem;
}

.lfh-home .faq-item {
	margin-bottom: 1.5rem;
	border-bottom: 1px dashed var(--lfh-soft-pink);
	padding-bottom: 1.5rem;
}

.lfh-home .faq-item:last-child {
	border-bottom: none;
}

.lfh-home .faq-q {
	font-family: "Caveat", cursive;
	font-size: 1.4rem;
	color: var(--lfh-dark-brown);
	margin-bottom: 0.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lfh-home .faq-q::after {
	content: "+";
	font-family: "Quicksand", sans-serif;
	font-size: 1.5rem;
	color: var(--lfh-coral);
	transition: transform 0.3s;
}

.lfh-home .faq-item.lfh-open .faq-q::after {
	transform: rotate(45deg);
}

.lfh-home .faq-a {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--lfh-text-soft);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.lfh-home .faq-item.lfh-open .faq-a {
	max-height: 320px;
	padding-top: 0.5rem;
}

.lfh-home .fade-in {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.lfh-home .fade-in.lfh-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	/*
	 * Collage: single column on small viewports (high specificity + minmax avoids
	 * GP / grid quirks). body class matches lfh_body_class().
	 */
	body.lfh-letters-home-layout .lfh-home .collage-grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 1rem;
	}

	.lfh-home .science-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}

	.lfh-home .who-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	.lfh-home .pricing-cards {
		flex-direction: column;
		align-items: center;
	}
	.lfh-home .price-card {
		width: 100%;
		max-width: 360px;
	}
	.lfh-home .envelope-body {
		padding: 2rem 1.5rem;
	}

	/* Shorter flap + extra top room: avoids covering "What's Inside" on narrow viewports */
	.lfh-home .whats-inside h2 {
		margin-bottom: 3rem;
	}

	.lfh-home .envelope-reveal {
		padding-top: clamp(7rem, 42vw, 12rem);
	}

	.lfh-home .envelope-body::before {
		height: 34%;
		transform: translateY(-82%);
	}
}

@media (max-width: 480px) {
	.lfh-home .who-grid {
		grid-template-columns: 1fr;
	}
}
