:root {
	--cream: #f7f1e8;
	--tomato: #e4473b;
	--tomato-dark: #a4322a;
	--leaf: #2e7b52;
	--ink: #1f1c1a;
	--mist: #f0e6d8;
	--sand: #e2d3bf;
	--white: #ffffff;
	--shadow: 0 18px 40px rgba(31, 28, 26, 0.18);
}

/* Bootstrap Integration & Overrides */
.form-control {
	border: 1px solid rgba(31, 28, 26, 0.2);
	border-radius: 14px;
	padding: 12px 14px;
	font-family: "Space Grotesk", "Segoe UI", sans-serif;
	font-size: 0.95rem;
	background: var(--white);
}

.form-control:focus {
	border-color: var(--tomato);
	box-shadow: 0 0 0 0.2rem rgba(228, 71, 59, 0.15);
}

.form-label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.badge {
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--mist);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Space Grotesk", "Segoe UI", sans-serif;
	color: var(--ink);
	background: radial-gradient(circle at 10% 10%, #f6e4da, transparent 45%),
		radial-gradient(circle at 90% 5%, #f0edd9, transparent 40%),
		linear-gradient(180deg, #faf4ed 0%, #f2e7d7 100%);
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: inherit;
}

h1,
h2,
h3 {
	font-family: "Fraunces", "Georgia", serif;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 32px 6vw 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 70% 10%, #f3cfb9, transparent 45%),
		radial-gradient(circle at 20% 30%, #f5e9d6, transparent 50%);
	opacity: 0.9;
	z-index: 0;
}

.nav {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 70px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.brand-dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: var(--tomato);
	box-shadow: 0 0 0 6px rgba(228, 71, 59, 0.15);
}

.nav-links {
	display: flex;
	gap: 24px;
	font-weight: 500;
}

.nav-links a {
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--tomato);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
	transform: scaleX(1);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid transparent;
}

.button.primary {
	background: var(--tomato);
	color: var(--white);
	box-shadow: 0 12px 24px rgba(228, 71, 59, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(228, 71, 59, 0.32);
}

.button.ghost {
	border-color: rgba(31, 28, 26, 0.25);
	background: transparent;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
}

.hero-copy h1 {
	font-size: clamp(2.8rem, 3vw + 2rem, 4.2rem);
	line-height: 1.05;
	margin-bottom: 18px;
}

.lead {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(31, 28, 26, 0.8);
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--leaf);
	margin-bottom: 16px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin: 26px 0 36px;
	flex-wrap: wrap;
}

.hero-metrics {
	/* Bootstrap row/col handles layout */
}

.hero-metrics h3 {
	font-size: 1.6rem;
	margin-bottom: 6px;
}

.hero-metrics p {
	font-size: 0.9rem;
	color: rgba(31, 28, 26, 0.65);
}

.hero-art {
	position: relative;
	min-height: 380px;
}

.tomato-card {
	position: relative;
	background: var(--white);
	padding: 26px 28px;
	border-radius: 28px;
	box-shadow: var(--shadow);
	max-width: 280px;
	z-index: 2;
}

.tomato-card span {
	font-size: 0.7rem;
	letter-spacing: 2px;
	color: var(--leaf);
}

.tomato-card strong {
	display: block;
	font-size: 1.4rem;
	margin: 12px 0 6px;
}

.tomato-card p {
	color: rgba(31, 28, 26, 0.6);
}

.tomato-orb {
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #f57d6e, var(--tomato));
	top: 30px;
	right: 0;
	z-index: 1;
	box-shadow: 0 25px 40px rgba(228, 71, 59, 0.35);
}

.tomato-orb.small {
	width: 110px;
	height: 110px;
	right: 160px;
	top: 220px;
	background: radial-gradient(circle at 30% 30%, #ffb08d, #f1644b);
}

.tomato-leaf {
	position: absolute;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle at 30% 30%, #56a57a, var(--leaf));
	border-radius: 40% 60% 40% 60%;
	top: 180px;
	right: 40px;
	transform: rotate(-18deg);
	opacity: 0.9;
}

.section {
	padding: 80px 6vw;
}

.section-header {
	max-width: 640px;
	margin-bottom: 40px;
}

.section h2 {
	font-size: clamp(2rem, 2.2vw + 1.2rem, 3rem);
	line-height: 1.2;
}

.card-grid {
	/* Bootstrap grid handles layout */
}

.card {
	background: var(--white);
	padding: 26px;
	border-radius: 24px;
	box-shadow: 0 16px 30px rgba(31, 28, 26, 0.12);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(31, 28, 26, 0.18);
}

.card a {
	color: var(--tomato-dark);
	font-weight: 600;
}

.split {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 32px;
	margin: 0 4vw;
	padding: 60px;
	box-shadow: 0 18px 32px rgba(31, 28, 26, 0.1);
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.pill-list span {
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--mist);
	font-size: 0.85rem;
	font-weight: 600;
}

.benefit-grid {
	display: grid;
	gap: 16px;
}

.benefit {
	background: var(--white);
	border-radius: 18px;
	padding: 18px 20px;
	box-shadow: 0 10px 20px rgba(31, 28, 26, 0.1);
}

.contact {
	background: linear-gradient(120deg, #fff7ee 0%, #f5e5d8 100%);
}

.contact-grid {
	/* Bootstrap grid handles layout */
}

.contact-card {
	background: var(--white);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 10px;
}

.contact-form {
	/* Bootstrap handles spacing with mb-3 classes */
}

.contact-form label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
}

/* Bootstrap form-control handles input/textarea styling */

.footer {
	padding: 32px 6vw 48px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	font-size: 0.9rem;
	color: rgba(31, 28, 26, 0.7);
}

.footer a {
	color: var(--tomato-dark);
	font-weight: 600;
}

/* Animated Mascot */
.mascot {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	opacity: 0;
	transform: translateY(150px) scale(0.5);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.mascot-character {
	width: 100px;
	height: 120px;
	cursor: pointer;
	animation: bounce 2.5s ease-in-out infinite, tilt 3.5s ease-in-out infinite;
	filter: drop-shadow(0 8px 16px rgba(228, 71, 59, 0.3));
	transition: transform 0.3s ease;
}

.mascot-character:hover {
	animation-play-state: paused;
	transform: scale(1.1);
}

.mascot-character svg {
	width: 100%;
	height: 100%;
}

/* Bounce and tilt animations */
@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

@keyframes tilt {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-8deg);
	}
	75% {
		transform: rotate(8deg);
	}
}

/* Tooltip/message on hover */
.mascot-tooltip {
	position: absolute;
	bottom: 130px;
	right: 0;
	background: var(--white);
	padding: 16px 20px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(31, 28, 26, 0.15);
	min-width: 220px;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.mascot-tooltip::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: 30px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid var(--white);
}

.mascot:hover .mascot-tooltip {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.mascot-tooltip p {
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
	line-height: 1.4;
}

.mascot-tooltip a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--tomato);
	font-weight: 600;
	font-size: 0.9rem;
	transition: gap 0.2s ease;
}

.mascot-tooltip a:hover {
	gap: 8px;
}

/* Mobile-only floating CTA button */
.mobile-cta-fab {
	display: none;
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 64px;
	height: 64px;
	background: var(--tomato);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(228, 71, 59, 0.4);
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	z-index: 999;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-cta-fab:hover,
.mobile-cta-fab:focus {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(228, 71, 59, 0.5);
}

/* Mobile-only promo section */
.mobile-only-promo {
	display: none;
	padding: 0 6vw 60px;
}

.promo-content {
	background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
	color: var(--white);
	padding: 32px;
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 12px 32px rgba(228, 71, 59, 0.3);
}

.promo-content h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.promo-content p {
	opacity: 0.9;
	margin-bottom: 20px;
	line-height: 1.6;
}

.promo-content .button {
	background: var(--white);
	color: var(--tomato);
}

.promo-content .button:hover {
	background: var(--cream);
}

/* Tablet responsive adjustments */
@media (max-width: 860px) {
	.nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.nav-links {
		flex-wrap: wrap;
	}

	.nav .button.primary {
		width: 100%;
		text-align: center;
	}

	.split {
		margin: 0 6vw;
		padding: 40px;
	}

	.section {
		padding: 60px 6vw;
	}
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
	.hero {
		padding-bottom: 60px;
	}

	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-copy h1 {
		font-size: 2.2rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
		text-align: center;
	}

	.hero-metrics h3 {
		font-size: 1.3rem;
	}

	.hero-metrics p {
		font-size: 0.75rem;
	}

	.hero-art {
		min-height: 280px;
	}

	.tomato-card {
		max-width: 100%;
		padding: 20px 22px;
	}

	.tomato-orb {
		width: 160px;
		height: 160px;
		top: 50px;
		right: -20px;
	}

	.tomato-orb.small {
		width: 90px;
		height: 90px;
		right: 100px;
		top: 180px;
	}

	.tomato-leaf {
		width: 100px;
		height: 100px;
		top: 140px;
		right: 20px;
	}

	/* Show mobile-only elements */
	.mobile-cta-fab {
		display: flex;
	}

	.mobile-only-promo {
		display: block;
	}

	/* Hide desktop CTA in nav on mobile */
	.nav .button.primary {
		display: none;
	}

	.section {
		padding: 50px 6vw;
	}

	.section h2 {
		font-size: 1.8rem;
	}

	.split {
		margin: 0;
		padding: 32px 24px;
		border-radius: 24px;
	}

	.benefit-grid {
		gap: 12px;
	}

	.contact-form label {
		font-size: 0.85rem;
	}

	.footer {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
}

/* Extra small devices */
@media (max-width: 400px) {
	.hero-copy h1 {
		font-size: 1.9rem;
	}

	.hero-metrics {
		grid-template-columns: 1fr;
	}

	.promo-content {
		padding: 24px;
	}

	.promo-content h3 {
		font-size: 1.25rem;
	}

	/* Adjust mascot for small mobile */
	.mascot {
		bottom: 15px;
		right: 15px;
	}

	.mascot-character {
		width: 80px;
		height: 96px;
	}

	.mascot-tooltip {
		min-width: 180px;
		padding: 12px 16px;
		font-size: 0.9rem;
		right: -10px;
	}

	.mascot-tooltip::after {
		right: 25px;
	}
}
