/**
 * Hutch home template — layout parity with Next.js (no dependency on Tailwind JIT).
 * Loaded after main.css; scoped to body.page-template-templates-home-page-php.
 */

/* ── Drop Astra container padding for this template only ─────────────── */
body.page-template-templates-home-page-php #content .site-content > .ast-container {
	max-width: none;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

body.page-template-templates-home-page-php .hutch-home-template {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow-x: clip;
}

.hutch-home-template #interior-services {
	scroll-margin-top: 5rem;
}

/* ── Neutralise theme + main.css interference ─────────────────────────── */
.hutch-home-template h1,
.hutch-home-template h2,
.hutch-home-template h3 {
	clear: none;
}

/* main.css forces img height:auto — breaks absolute “cover” cards without utilities */
.hutch-home-template .hutch-img-cover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}

.hutch-home-template .hutch-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hutch-home-template .hutch-inner {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-inner {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hutch-home-template .hutch-hero {
	position: relative;
	min-height: 720px;
	overflow: hidden;
}

.hutch-home-template .hutch-hero-media {
	position: absolute;
	inset: 0;
}

.hutch-home-template .hutch-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(23, 23, 23, 0.5) 0%,
		rgba(23, 23, 23, 0.3) 50%,
		rgba(23, 23, 23, 0.7) 100%
	);
	pointer-events: none;
}

.hutch-home-template .hutch-hero-inner {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 7rem 1.5rem 3rem;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-hero-inner {
		padding-top: 8rem;
	}
}

@media (min-width: 768px) {
	.hutch-home-template .hutch-hero-inner {
		padding-top: 9rem;
		padding-bottom: 9rem;
	}
}

.hutch-home-template .hutch-hero-kicker {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: #ffedd5;
	margin-bottom: 1.25rem;
}

.hutch-home-template .hutch-hero-title {
	font-family: var(--font-serif);
	font-weight: 300;
	color: #fff;
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	line-height: 1.08;
	max-width: 56rem;
	margin-bottom: 1.5rem;
}

.hutch-home-template .hutch-hero-title em,
.hutch-home-template .hutch-hero-title .italic {
	font-style: italic;
	font-weight: 400;
}

.hutch-home-template .hutch-hero-lead {
	font-family: var(--font-sans);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 32rem;
	line-height: 1.625;
	margin-bottom: 2.5rem;
	font-weight: 300;
}

.hutch-home-template .hutch-hero-ctas {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 42rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-hero-ctas {
		flex-direction: row;
	}
}

.hutch-home-template .hutch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	box-sizing: border-box;
}

.hutch-home-template .hutch-btn-white {
	background: #fff;
	color: #171717;
	border: 1px solid #fff;
}

.hutch-home-template .hutch-btn-white:hover {
	background: #ffedd5;
	border-color: #ffedd5;
}

.hutch-home-template .hutch-btn-outline-white {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.hutch-home-template .hutch-btn-outline-white:hover {
	background: #fff;
	color: #171717;
}

.hutch-home-template .hutch-btn-ghost {
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	border: none;
	text-decoration: none;
	text-underline-offset: 4px;
}

.hutch-home-template .hutch-btn-ghost:hover {
	color: #ffedd5;
	text-decoration: underline;
}

.hutch-home-template .hutch-hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	color: rgba(255, 255, 255, 0.6);
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-sans);
}

.hutch-home-template .hutch-hero-scroll:hover {
	color: #fff;
}

.hutch-home-template .hutch-hero-scroll span {
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

/* ── Section spacing & dark / light bands ───────────────────────────── */
.hutch-home-template .hutch-section {
	padding: 6rem 0;
}

.hutch-home-template .hutch-section--dark {
	background: #171717;
	color: #fff;
}

.hutch-home-template .hutch-section--cream {
	background: #faf5f2;
}

.hutch-home-template .hutch-section--cream .hutch-heading-xl {
	color: #171717;
}

.hutch-home-template .hutch-section--cream .hutch-center-head > .hutch-body {
	color: #78716c;
}

.hutch-home-template .hutch-section--white {
	background: #fff;
}

.hutch-home-template .hutch-section--white .hutch-heading-xl {
	color: #171717;
}

.hutch-home-template .hutch-section-pad-x {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-section-pad-x {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* ── Two-column interior / custom blocks ────────────────────────────── */
.hutch-home-template .hutch-split {
	display: grid;
	gap: 3.5rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-split {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.hutch-home-template .hutch-media-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 520px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-split .hutch-media-frame {
		margin-left: 0;
	}

	.hutch-home-template .hutch-split .hutch-media-frame--square-lg {
		aspect-ratio: 1 / 1;
	}
}

.hutch-home-template .hutch-media-frame--tall {
	max-height: none;
	aspect-ratio: 4 / 5;
}

.hutch-home-template .hutch-media-gradient-tl {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top right, rgba(23, 23, 23, 0.6), transparent 50%);
	pointer-events: none;
}

.hutch-home-template .hutch-label-gold {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	font-weight: 600;
	color: #f47c00;
	margin-bottom: 1rem;
	display: block;
}

.hutch-home-template .hutch-heading-xl {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 1.25rem;
}

.hutch-home-template .hutch-section--dark .hutch-heading-xl {
	color: #fff;
}

.hutch-home-template .hutch-section--cream .hutch-heading-xl,
.hutch-home-template .hutch-section--white .hutch-heading-xl {
	color: #171717;
}

.hutch-home-template .hutch-body {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	line-height: 1.625;
	margin-bottom: 2.5rem;
	max-width: 32rem;
}

.hutch-home-template .hutch-section--dark .hutch-body {
	color: rgba(255, 255, 255, 0.65);
}

.hutch-home-template .hutch-highlight-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	list-style: none;
	padding: 0;
	margin-left: 0;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-highlight-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.hutch-home-template .hutch-highlight-grid li {
	display: flex;
	gap: 0.75rem;
}

.hutch-home-template .hutch-icon-box {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hutch-home-template .hutch-highlight-grid h3 {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
	margin-bottom: 0.25rem;
}

.hutch-home-template .hutch-highlight-grid p {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.625;
	margin: 0;
}

.hutch-home-template .hutch-row-btns {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-row-btns {
		flex-direction: row;
	}
}

.hutch-home-template .hutch-btn-orange {
	background: #f47c00;
	color: #fff;
	border: 1px solid #f47c00;
}

.hutch-home-template .hutch-btn-orange:hover {
	background: #d96d00;
	border-color: #d96d00;
}

.hutch-home-template .hutch-btn-outline-light {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.hutch-home-template .hutch-btn-outline-light:hover {
	background: #fff;
	color: #171717;
}

.hutch-home-template .hutch-btn-outline-gold {
	background: transparent;
	color: #f47c00;
	border: 1px solid #f47c00;
}

.hutch-home-template .hutch-btn-outline-gold:hover {
	background: #f47c00;
	color: #fff;
}

.hutch-home-template .hutch-mt-10 {
	margin-top: 2.5rem;
}

/* ── Category cards ─────────────────────────────────────────────────── */
.hutch-home-template .hutch-cat-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-cat-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hutch-home-template .hutch-cat-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: #e8e2db;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.hutch-home-template .hutch-cat-card:hover .hutch-img-cover {
	transform: scale(1.05);
}

.hutch-home-template .hutch-img-cover {
	transition: transform 0.7s ease;
}

.hutch-home-template .hutch-cat-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(23, 23, 23, 0.8) 0%,
		rgba(23, 23, 23, 0.2) 45%,
		transparent 100%
	);
	pointer-events: none;
	transition: opacity 0.3s;
}

.hutch-home-template .hutch-cat-card:hover .hutch-cat-overlay {
	opacity: 0.95;
}

.hutch-home-template .hutch-cat-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	z-index: 2;
}

.hutch-home-template .hutch-cat-body h3 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 0.25rem;
	line-height: 1.2;
}

.hutch-home-template .hutch-cat-body p {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.75rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hutch-home-template .hutch-cat-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	color: #ffedd5;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
}

.hutch-home-template .hutch-cat-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.75rem;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.05em;
}

/* ── Featured products ──────────────────────────────────────────────── */
.hutch-home-template .hutch-btn-viewall {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #171717;
	text-decoration: none;
	padding: 0.5rem 0;
	border: none;
	background: none;
	cursor: pointer;
}

.hutch-home-template .hutch-btn-viewall:hover {
	color: #f47c00;
}

.hutch-home-template .hutch-feat-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-feat-head {
		flex-direction: row;
		align-items: flex-end;
	}
}

.hutch-home-template .hutch-feat-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-feat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-feat-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1280px) {
	.hutch-home-template .hutch-feat-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.hutch-home-template .hutch-product-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hutch-home-template .hutch-product-media {
	position: relative;
	aspect-ratio: 3 / 4;
	background: #f5ede6;
	overflow: hidden;
	margin-bottom: 1rem;
}

.hutch-home-template .hutch-product-card:hover .hutch-img-cover {
	transform: scale(1.05);
}

.hutch-home-template .hutch-product-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	background: #171717;
	color: #fff;
	padding: 0.25rem 0.75rem;
	font-family: var(--font-sans);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
}

.hutch-home-template .hutch-product-hover-cap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #171717;
	color: #fff;
	padding: 0.75rem 1rem;
	transform: translateY(100%);
	transition: transform 0.3s;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
}

.hutch-home-template .hutch-product-card:hover .hutch-product-hover-cap {
	transform: translateY(0);
}

.hutch-home-template .hutch-product-meta-cat {
	font-family: var(--font-sans);
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #78716c;
	margin-bottom: 0.375rem;
}

.hutch-home-template .hutch-product-meta-title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 500;
	color: #171717;
	line-height: 1.25;
	transition: color 0.2s;
}

.hutch-home-template .hutch-product-card:hover .hutch-product-meta-title {
	color: #f47c00;
}

/* ── Trust stats & pillars ──────────────────────────────────────────── */
.hutch-home-template .hutch-stats-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: #e8e2db;
	margin-bottom: 5rem;
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-stats-row {
		grid-template-columns: repeat(4, 1fr);
	}
}

.hutch-home-template .hutch-stat-cell {
	background: #faf5f2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 1.5rem;
	text-align: center;
}

.hutch-home-template .hutch-stat-value {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: #171717;
	margin-bottom: 0.5rem;
	line-height: 1;
}

.hutch-home-template .hutch-stat-label {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #78716c;
	font-weight: 500;
}

.hutch-home-template .hutch-pillar-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-pillar-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-pillar-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.hutch-home-template .hutch-pillar-icon {
	width: 3rem;
	height: 3rem;
	border: 1px solid #f47c00;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: background 0.3s, color 0.3s;
}

.hutch-home-template .hutch-pillar-grid > div:hover .hutch-pillar-icon {
	background: #f47c00;
	color: #fff;
}

.hutch-home-template .hutch-pillar-icon svg {
	color: #f47c00;
	transition: color 0.3s;
}

.hutch-home-template .hutch-pillar-grid > div:hover .hutch-pillar-icon svg {
	color: #fff;
}

.hutch-home-template .hutch-pillar-title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 500;
	color: #171717;
	margin-bottom: 0.75rem;
}

.hutch-home-template .hutch-pillar-text {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	color: #78716c;
	line-height: 1.625;
	margin: 0;
}

/* ── Custom steps ───────────────────────────────────────────────────── */
.hutch-home-template .hutch-steps {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.hutch-home-template .hutch-step {
	display: flex;
	gap: 1.25rem;
}

.hutch-home-template .hutch-step-icon {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.3s, color 0.3s;
	color: rgba(255, 255, 255, 0.5);
}

.hutch-home-template .hutch-step:hover .hutch-step-icon {
	border-color: #f47c00;
	color: #f47c00;
}

.hutch-home-template .hutch-step-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

.hutch-home-template .hutch-step-num {
	font-family: var(--font-sans);
	font-size: 10px;
	letter-spacing: 0.25em;
	color: rgba(244, 124, 0, 0.6);
	font-weight: 600;
}

.hutch-home-template .hutch-step-title {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
	margin: 0;
}

.hutch-home-template .hutch-step-desc {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.625;
	margin: 0;
}

.hutch-home-template .hutch-float-badge {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	background: #f47c00;
	padding: 1.5rem;
	max-width: 200px;
}

@media (max-width: 640px) {
	.hutch-home-template .hutch-float-badge {
		right: 0;
		bottom: 0;
	}
}

.hutch-home-template .hutch-float-badge strong {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	font-weight: 300;
	color: #fff;
	line-height: 1;
	display: block;
}

.hutch-home-template .hutch-float-badge span {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 0.25rem;
	display: block;
}

/* ── Section header center ─────────────────────────────────────────── */
.hutch-home-template .hutch-center-head {
	text-align: center;
	margin-bottom: 4rem;
}

.hutch-home-template .hutch-center-head .hutch-body {
	margin-left: auto;
	margin-right: auto;
}

.hutch-home-template .hutch-muted {
	color: #78716c;
}

/* ── Final CTA band ─────────────────────────────────────────────────── */
.hutch-home-template .hutch-cta-final {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
}

.hutch-home-template .hutch-cta-final-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.hutch-home-template .hutch-cta-final-shade {
	position: absolute;
	inset: 0;
	background: rgba(23, 23, 23, 0.75);
}

.hutch-home-template .hutch-cta-final-inner {
	position: relative;
	z-index: 2;
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
	padding: 0 1.5rem;
}

.hutch-home-template .hutch-cta-final .hutch-heading-xl {
	color: #fff;
}

.hutch-home-template .hutch-cta-final .hutch-body {
	color: rgba(255, 255, 255, 0.65);
	margin-left: auto;
	margin-right: auto;
	max-width: 28rem;
}

.hutch-home-template .hutch-tnav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hutch-home-template .hutch-tdots {
	margin-top: 1.5rem;
}

.hutch-home-template .hutch-testimonials-wrap {
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
}

@media (min-width: 1024px) {
	.hutch-home-template .hutch-testimonials-wrap {
		padding: 0 2rem;
	}
}

.hutch-home-template .hutch-cta-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.hutch-home-template .hutch-cta-row {
		flex-direction: row;
	}
}

.hutch-home-template .hutch-btn-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	background: transparent;
	box-sizing: border-box;
	transition: border-color 0.3s, background 0.3s;
}

.hutch-home-template .hutch-btn-wa:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}
