/**
 * SA — Homepage (template-home.php).
 * Scoped to body.home-page so it never leaks into the rest of the theme.
 * Palette: black + bright yellow, matching the SEO landing page
 * (assets/css/lp-seo.css) for brand consistency — flat colour, no
 * gradients/glassmorphism. Yellow is only ever used as a decorative
 * accent (dashes, borders, badges, icons, buttons) or paired with black
 * text, never as body text on a light background — the same contrast
 * discipline the landing page follows.
 */

.home-page {
	--home-black: #191919;
	--home-black-soft: #161616;
	--home-yellow: #fdd201;
	--home-yellow-glow: rgba(253, 210, 1, 0.55);
	--home-ink: #17233d;
	--home-bg: #ffffff;
	--home-bg-alt: #f6f7f9;
	--home-border: #e2e8f0;
	--home-text-muted: #5b6b82;
	--home-white: #ffffff;

	background: var(--home-bg);
	color: var(--home-ink);
}

.home-page section {
	scroll-margin-top: 90px;
}

.home-page .site-content {
	min-height: 0;
}

/* :where() keeps this at plain-element specificity so any component's own
   heading colour (e.g. .home-hero__headline, white-on-black) always wins
   instead of being fought on specificity by this sitewide default. */
:where(.home-page) h1,
:where(.home-page) h2,
:where(.home-page) h3 {
	color: var(--home-ink);
}

:where(.home-page) a {
	color: inherit;
}

/* ==========================================================================
   Shared bits: eyebrow label, section head, buttons, reveal-on-scroll
   ========================================================================== */

.home-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #000;
}
.home-eyebrow::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 2px;
	background: var(--home-yellow);
}
/* On dark sections (hero, contact) the eyebrow text turns yellow too. */
.home-eyebrow--light {
	color: var(--home-yellow);
}

.home-section {
	padding-block: clamp(3.5rem, 6vw, 6rem);
}
.home-section--alt {
	background: var(--home-bg-alt);
}

.home-section__head {
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
	margin-bottom: 3rem;
}
.home-section__head h2 {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}
.home-section__head p {
	color: var(--home-text-muted);
	margin-bottom: 0;
}
.home-section__lead {
	color: var(--home-text-muted);
	font-size: 1.05rem;
}

.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.6rem;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 0.98rem;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.home-btn--primary {
	background: var(--home-yellow);
	color: #14110a;
	box-shadow: 0 0 12px 2px var(--home-yellow-glow), 0 0 0 0 rgba(253, 210, 1, 0);
	animation: home-pulse-glow 2.4s ease-in-out infinite;
}
.home-btn--primary:hover,
.home-btn--primary:focus {
	color: #14110a;
	transform: translateY(-1px);
	animation-play-state: paused;
	box-shadow: 0 0 24px 6px var(--home-yellow-glow), 0 0 45px 12px rgba(253, 210, 1, 0.35);
}
@keyframes home-pulse-glow {
	0%, 100% {
		box-shadow: 0 0 10px 1px var(--home-yellow-glow), 0 0 22px 4px rgba(253, 210, 1, 0.25);
	}
	50% {
		box-shadow: 0 0 18px 4px var(--home-yellow-glow), 0 0 38px 10px rgba(253, 210, 1, 0.45);
	}
}
@media (prefers-reduced-motion: reduce) {
	.home-btn--primary {
		animation: none;
		box-shadow: 0 0 16px 3px var(--home-yellow-glow);
	}
}

.home-btn--ghost {
	background: transparent;
	color: var(--home-ink);
	border-color: var(--home-border);
}
.home-btn--ghost:hover {
	border-color: var(--home-ink);
	color: var(--home-ink);
}
/* On the black hero, the ghost button needs light borders/text instead. */
.home-hero .home-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}
.home-hero .home-btn--ghost:hover {
	border-color: #fff;
	color: #fff;
}

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==========================================================================
   Hero — black, matching the landing page's hero/final-CTA "bookend" bands
   ========================================================================== */

.home-hero {
	position: relative;
	background: var(--home-black);
	color: #fff;
	padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
	overflow: hidden;
}

/* Slow-drifting glow blobs behind the hero content — purely decorative,
   so the black band doesn't sit completely flat/static. */
.home-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.home-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.5;
	animation: home-hero-drift 16s ease-in-out infinite;
}
.home-hero__glow--1 {
	top: -10%;
	left: 5%;
	width: 26rem;
	height: 26rem;
	background: radial-gradient(circle, var(--home-yellow-glow) 0%, transparent 70%);
	animation-duration: 18s;
}
.home-hero__glow--2 {
	bottom: -20%;
	right: 8%;
	width: 30rem;
	height: 30rem;
	background: radial-gradient(circle, rgba(253, 210, 1, 0.35) 0%, transparent 70%);
	animation-duration: 22s;
	animation-delay: -6s;
}
.home-hero__glow--3 {
	top: 30%;
	right: 30%;
	width: 18rem;
	height: 18rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
	animation-duration: 14s;
	animation-delay: -3s;
}

@keyframes home-hero-drift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(3%, 4%) scale(1.08);
	}
	66% {
		transform: translate(-4%, -2%) scale(0.96);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__glow {
		animation: none;
	}
}

/* SEO-related tags rising slowly through the hero band, like the "you" row
   climbing in the SERP demo — reinforces the ranking theme in the background
   without competing with the headline (kept low-opacity, behind the
   content). Each tag's position/size/timing is set via inline custom
   properties (--kw-*), see the loop in template-home.php. */
.home-hero__keyword {
	position: absolute;
	left: var(--kw-left, 10%);
	bottom: -3rem;
	white-space: nowrap;
	padding: 0.35rem 0.9rem;
	border: 1px solid rgba(253, 210, 1, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--home-yellow);
	font-size: var(--kw-size, 0.8rem);
	font-weight: 600;
	letter-spacing: 0.01em;
	opacity: 0;
	animation: home-hero-rise var(--kw-duration, 16s) linear infinite;
	animation-delay: var(--kw-delay, 0s);
}

@keyframes home-hero-rise {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: var(--kw-opacity, 0.28);
	}
	85% {
		opacity: var(--kw-opacity, 0.28);
	}
	100% {
		transform: translateY(-64rem) rotate(-3deg);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__keyword {
		display: none;
	}
}

.home-hero__container {
	position: relative;
	z-index: 1;
}

.home-hero__headline {
	margin-top: 0.9rem;
	margin-bottom: 1.1rem;
	font-weight: 700;
	line-height: 1.15;
	font-size: clamp(2rem, 4vw, 2.85rem);
	color: #fff;
}
.home-highlight {
	color: var(--home-yellow);
}

.home-hero__sub {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.1rem;
	max-width: 34rem;
	margin-bottom: 1.75rem;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2rem;
}

.home-trust-bar {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.75rem;
	max-width: 28rem;
	padding: 0;
	margin: 0;
}
.home-trust-bar li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}
.home-trust-bar svg {
	color: var(--home-yellow);
	flex-shrink: 0;
}

/* Browser mock-up card showing an illustrative ranking snapshot — a light
   card set against the black hero, same device as the landing page's SERP
   demo mock-up. */

.home-mock {
	background: var(--home-white);
	border-radius: 0.85rem;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 40px rgba(253, 210, 1, 0.08);
	overflow: hidden;
}

.home-mock__chrome {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.7rem 1rem;
	background: var(--home-bg-alt);
	border-bottom: 1px solid var(--home-border);
}
.home-mock__dots {
	display: inline-flex;
	gap: 0.35rem;
}
.home-mock__dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--home-border);
}
.home-mock__url {
	font-size: 0.8rem;
	color: var(--home-text-muted);
	background: var(--home-white);
	border: 1px solid var(--home-border);
	border-radius: 0.35rem;
	padding: 0.25rem 0.65rem;
	flex: 1;
}

/* Google-style SERP ranking animation, inside the hero's browser mock-up
   card — same technique as the landing page's demo (see lp-seo.css /
   lp-seo.js), scoped here as .home-serp* to avoid clashing with it. */

.home-serp__searchbar {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 1.25rem auto 0.5rem;
	max-width: 26rem;
	border: 1px solid var(--home-border);
	border-radius: 50rem;
	padding: 0.55rem 1.1rem;
	color: #3c4043;
	font-size: 0.9rem;
}
.home-serp__searchbar svg {
	color: #9aa0a6;
	flex-shrink: 0;
}

.home-serp__caption {
	text-align: center;
	font-size: 0.72rem;
	color: #9aa0a6;
	margin-bottom: 1rem;
}

.home-serp__results {
	position: relative;
	margin: 0 1.25rem 1.25rem;
	--home-row-h: 4.4rem;
	height: calc(var(--home-row-h) * 4);
}

.home-serp-row {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--home-row-h);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.15rem;
	padding: 0.5rem 0.85rem;
	border-radius: 0.5rem;
	transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.4s ease, box-shadow 0.4s ease;
	will-change: transform;
}

/* Rows animate between fixed-height slots, so their text must stay on one
   line — otherwise a wrapped title/description on a narrow phone would
   spill into the row below it. */
.home-serp-row__url,
.home-serp-row__title,
.home-serp-row__desc {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.home-serp-row__url {
	font-size: 0.75rem;
	color: #006621;
}
.home-serp-row__title {
	font-size: 0.95rem;
	color: #1a0dab;
	font-weight: 500;
}
.home-serp-row__desc {
	font-size: 0.78rem;
	color: #4d5156;
}

.home-serp-row--you {
	background: rgba(253, 210, 1, 0.1);
	box-shadow: inset 0 0 0 1px rgba(253, 210, 1, 0.4);
}
.home-serp-row--you .home-serp-row__title {
	color: var(--home-ink);
	font-weight: 700;
}
.home-serp-row__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: var(--home-yellow);
	color: #14110a;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 0.15rem 0.55rem;
	border-radius: 50rem;
	margin-left: 0.5rem;
}
.home-serp-row--you.is-top {
	box-shadow: inset 0 0 0 1.5px rgba(253, 210, 1, 0.7), 0 8px 20px rgba(253, 210, 1, 0.25);
}

.home-serp__status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1rem 1.5rem;
	font-weight: 600;
	color: var(--home-ink);
	font-size: 0.9rem;
}
.home-serp__status strong {
	color: #b8860b;
	font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
	.home-serp-row {
		transition: none;
	}
}

/* ==========================================================================
   Service / feature cards
   ========================================================================== */

.home-card {
	height: 100%;
	background: var(--home-white);
	border: 1px solid var(--home-border);
	border-radius: 0.75rem;
	padding: 1.75rem;
}
.home-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 0.6rem;
	background: var(--home-black);
	color: var(--home-yellow);
	margin-bottom: 1rem;
}
.home-card h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.home-card p {
	color: var(--home-text-muted);
	font-size: 0.94rem;
	margin-bottom: 1rem;
}
.home-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--home-ink);
	text-decoration: none;
}
.home-card__link svg {
	color: var(--home-yellow);
}
.home-card__link:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Why Us
   ========================================================================== */

.home-why-item {
	display: flex;
	gap: 0.9rem;
}
.home-why-item__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--home-yellow);
	color: #14110a;
}
.home-why-item h3 {
	font-size: 1rem;
	margin-bottom: 0.3rem;
}
.home-why-item p {
	color: var(--home-text-muted);
	font-size: 0.92rem;
	margin-bottom: 0;
}

/* ==========================================================================
   Case studies — alternating text/image rows
   ========================================================================== */

.home-case-studies {
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 6vw, 5rem);
}

.home-case-study__client {
	margin-top: 0.75rem;
	margin-bottom: 1rem;
	font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}
.home-case-study__summary {
	color: var(--home-text-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.home-case-study__results {
	list-style: none;
	padding: 0;
	margin: -0.5rem 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.home-case-study__results li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.95rem;
	color: var(--home-ink);
}
.home-case-study__results svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
	color: var(--home-yellow);
	background: var(--home-black);
	border-radius: 50%;
	padding: 2px;
	box-sizing: content-box;
}

.home-case-study__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--home-ink);
	text-decoration: none;
}
.home-case-study__link svg {
	color: var(--home-yellow);
}
.home-case-study__link:hover {
	color: var(--home-ink);
	text-decoration: underline;
}

.home-case-study__media {
	display: block;
	width: 100%;
	height: auto;
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.home-step {
	height: 100%;
	padding: 0.25rem;
}
.home-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--home-yellow);
	color: #14110a;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1rem;
}
.home-step h3 {
	font-size: 1.02rem;
	margin-bottom: 0.4rem;
}
.home-step p {
	color: var(--home-text-muted);
	font-size: 0.9rem;
	margin-bottom: 0;
}

/* ==========================================================================
   Testimonials — reuses assets/js/slider.js (targets .lp-reviews-slider,
   the classes below match what that script expects to find/toggle).
   ========================================================================== */

.home-page .home-reviews__summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}
.home-page .home-reviews__avg {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--home-ink);
}
.home-page .home-star {
	fill: var(--home-border);
}
.home-page .home-star.is-filled {
	fill: var(--home-yellow);
}
.home-page .home-reviews__count {
	font-size: 0.85rem;
	color: var(--home-text-muted);
}

.home-page .lp-reviews-slider__track {
	position: relative;
}
.home-page .lp-reviews-slider__slide {
	display: none;
}
.home-page .lp-reviews-slider__slide.is-active {
	display: block;
	animation: home-fade-in 0.35s ease;
}
@keyframes home-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.home-review-card {
	width: 100%;
	background: var(--home-white);
	border: 1px solid var(--home-border);
	border-radius: 0.75rem;
	padding: 1.75rem;
}
.home-review-card__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}
.home-review-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--home-black);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
}
.home-review-card__avatar--photo {
	object-fit: cover;
	background: transparent;
}
.home-review-card__who {
	display: flex;
	flex-direction: column;
}
.home-review-card__name {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--home-ink);
}
.home-review-card__role {
	font-size: 0.82rem;
	color: var(--home-text-muted);
}
.home-review-card__stars {
	display: flex;
	gap: 0.15rem;
	margin-bottom: 0.75rem;
}
.home-review-card__stars svg {
	fill: var(--home-border);
}
.home-review-card__stars svg.is-filled {
	fill: var(--home-yellow);
}
.home-review-card__text {
	color: var(--home-text-muted);
	font-size: 0.94rem;
	margin-bottom: 0;
}

.home-reviews__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}
.home-reviews__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	border: none;
	background: var(--home-black);
	color: var(--home-yellow);
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}
.home-reviews__nav:hover {
	background: var(--home-black-soft);
	transform: translateY(-1px);
}
.home-reviews__dots {
	display: inline-flex;
	gap: 0.5rem;
}
.home-reviews__dots button {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	border: 2px solid var(--home-border);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.home-reviews__dots button.active {
	background: var(--home-yellow);
	border-color: var(--home-yellow);
	transform: scale(1.15);
}

/* ==========================================================================
   FAQ (Bootstrap accordion, restyled)
   ========================================================================== */

.home-faq {
	border: 1px solid var(--home-border);
	border-radius: 0.85rem;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(23, 35, 61, 0.07);
}
.home-faq .accordion-item {
	background: var(--home-white);
	border: none;
	border-bottom: 1px solid var(--home-border);
}
.home-faq .accordion-item:last-child {
	border-bottom: none;
}
.home-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
	box-shadow: inset 3px 0 0 var(--home-yellow);
}
.home-faq .accordion-button {
	font-weight: 600;
	color: var(--home-ink);
	background: var(--home-white);
}
.home-faq .accordion-button:not(.collapsed) {
	color: var(--home-ink);
	background: rgba(253, 210, 1, 0.08);
	font-weight: 700;
	box-shadow: none;
}
.home-faq .accordion-button:hover {
	background: rgba(253, 210, 1, 0.05);
}
.home-faq .accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(253, 210, 1, 0.25);
	border-color: var(--home-yellow);
}
.home-faq .accordion-body {
	color: var(--home-text-muted);
}

/* ==========================================================================
   Blog teaser
   ========================================================================== */

.home-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--home-white);
	border: 1px solid var(--home-border);
	border-radius: 0.75rem;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.home-post-card:hover {
	border-color: var(--home-yellow);
	transform: translateY(-2px);
	color: inherit;
}
.home-post-card__media {
	display: block;
	line-height: 0;
}
.home-post-card__media img {
	width: 100%;
	height: 11rem;
	object-fit: cover;
}
.home-post-card {
	padding-bottom: 0;
}
.home-post-card__date,
.home-post-card h3,
.home-post-card p,
.home-post-card__link {
	padding-inline: 1.5rem;
}
.home-post-card__date {
	margin-top: 1.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--home-ink);
}
.home-post-card h3 {
	font-size: 1.05rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.home-post-card p {
	color: var(--home-text-muted);
	font-size: 0.9rem;
	flex: 1;
}
.home-post-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.86rem;
	color: var(--home-ink);
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}
.home-post-card__link svg {
	color: var(--home-yellow);
}

/* ==========================================================================
   Contact — black band, matching the landing page's hero/final-CTA bands
   ========================================================================== */

.home-contact {
	background: var(--home-black);
	color: rgba(255, 255, 255, 0.85);
	padding-block: clamp(3.5rem, 6vw, 6rem);
}
.home-contact__heading {
	color: #fff;
	font-weight: 700;
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	margin-top: 0.75rem;
	margin-bottom: 1rem;
}
.home-contact__sub {
	color: rgba(255, 255, 255, 0.68);
	font-size: 1.05rem;
	max-width: 30rem;
	margin-bottom: 1.75rem;
}
.home-contact__details {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.home-contact__details a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.home-contact__details a svg {
	color: var(--home-yellow);
	flex-shrink: 0;
}
.home-contact__details a:hover {
	color: var(--home-yellow);
}

.home-form-card {
	background: var(--home-white);
	border-radius: 0.85rem;
	padding: 2rem;
	color: var(--home-ink);
	box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6), 0 0 40px rgba(253, 210, 1, 0.06);
}
.home-form-card .wpcf7-form-control {
	width: 100%;
	border: 1px solid var(--home-border);
	border-radius: 0.5rem;
	padding: 0.7rem 0.9rem;
	font-family: inherit;
	font-size: 0.95rem;
	background: var(--home-white);
	color: var(--home-ink);
}
.home-form-card select.wpcf7-form-control {
	background: var(--home-white);
}
.home-form-card .wpcf7-form-control:focus {
	outline: none;
	border-color: var(--home-yellow);
	box-shadow: 0 0 0 3px rgba(253, 210, 1, 0.22);
}
.home-form-card textarea.wpcf7-form-control {
	min-height: 6.5rem;
	resize: vertical;
}
.home-form-card .wpcf7-submit {
	width: 100%;
	background: var(--home-yellow);
	color: #14110a;
	border: none;
	border-radius: 0.5rem;
	padding: 0.85rem 1.5rem;
	font-weight: 700;
	margin-top: 0.4rem;
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.home-form-card .wpcf7-submit:hover {
	box-shadow: 0 0 22px 5px var(--home-yellow-glow);
}
.home-form-card .wpcf7-spinner {
	display: block;
	margin: 0.6rem auto 0;
}
.home-form-card .wpcf7-not-valid-tip {
	font-size: 0.8rem;
	color: #dc2626;
	margin-top: 0.25rem;
}
.home-form-card .wpcf7-response-output {
	margin: 1rem 0 0;
	border-radius: 0.5rem;
	font-size: 0.88rem;
}
.home-form-card__note {
	text-align: center;
	font-size: 0.85rem;
	color: var(--home-text-muted);
	margin: 1rem 0 0;
}
.home-form-card__note a {
	color: var(--home-ink);
	font-weight: 700;
	text-decoration: none;
}
.home-form-card__note a:hover {
	text-decoration: underline;
}

@media (max-width: 575.98px) {
	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
}
