/* Hat Bar homepage — HATbar editorial (scoped) */
.hb-home-v2 {
	--sand: #f5f0e8;
	--sand2: #ede6d6;
	--sand3: #d8ccb4;
	--sand4: #c4b898;
	--ink: #1c1712;
	--ink2: #3d3529;
	--ink3: #6b5f4e;
	--copper: #b8763a;
	--copper-dim: #8a5628;
	--copper-light: #f7ede0;
	--copper-mid: #e8c48a;
	--white: #ffffff;
	--serif: var(--hatbar-serif, "Playfair Display", Georgia, serif);
	--sans: var(--hatbar-sans, "DM Sans", system-ui, sans-serif);
	font-family: var(--sans);
	color: var(--ink2);
}

.hb-home-v2 *,
.hb-home-v2 *::before,
.hb-home-v2 *::after {
	box-sizing: border-box;
}

.hb-home-v2 .hero {
	min-height: calc(100vh - var(--hatbar-main-offset, 76px));
	min-height: calc(100dvh - var(--hatbar-main-offset, 76px));
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	overflow: hidden;
	background: var(--sand);
}

.hb-home-v2 .hero-visual {
	position: relative;
	overflow: hidden;
}

.hb-home-v2 .hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	min-height: 420px;
	transform: scale(1.05);
	transition: transform 8s ease;
}

@media (hover: hover) {
	.hb-home-v2 .hero-visual:hover img {
		transform: scale(1);
	}
}

.hb-home-v2 .hero-visual-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(28, 23, 18, 0.15) 0%, rgba(28, 23, 18, 0.05) 100%);
}

.hb-home-v2 .hero-visual::after {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	bottom: 0;
	width: 80px;
	background: var(--sand);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	z-index: 2;
}

.hb-home-v2 .hero-float-tag {
	position: absolute;
	bottom: 48px;
	left: 40px;
	z-index: 3;
	background: rgba(245, 240, 232, 0.92);
	backdrop-filter: blur(10px);
	padding: 14px 22px;
	border-left: 3px solid var(--copper);
}

.hb-home-v2 .hero-float-tag .hft-label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--copper);
	margin-bottom: 4px;
}

.hb-home-v2 .hero-float-tag .hft-val {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--ink);
	font-weight: 500;
}

.hb-home-v2 .hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 120px 80px 80px 60px;
	position: relative;
}

.hb-home-v2 .hero-copy::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--sand3) 30%, var(--sand3) 70%, transparent);
}

.hb-home-v2 .hero-kicker {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--copper);
	margin-bottom: 20px;
}

.hb-home-v2 .hero-h1 {
	font-family: var(--serif);
	font-size: clamp(40px, 6vw, 84px);
	line-height: 1;
	color: var(--ink);
	margin: 0 0 28px;
	font-weight: 500;
}

.hb-home-v2 .hero-h1 em {
	font-style: italic;
	color: var(--ink2);
}

.hb-home-v2 .hero-h1 .copper-word {
	color: var(--copper);
}

.hb-home-v2 .hero-body {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	color: var(--ink3);
	max-width: 380px;
	margin: 0 0 44px;
}

.hb-home-v2 .hero-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.hb-home-v2 .btn-primary-hero {
	background: var(--ink);
	color: var(--white);
	padding: 16px 36px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
	display: inline-block;
}

.hb-home-v2 .btn-primary-hero:hover {
	background: var(--copper);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(184, 118, 58, 0.35);
}

.hb-home-v2 .btn-ghost-hero {
	font-size: 12px;
	font-weight: 500;
	color: var(--ink3);
	text-decoration: none;
	letter-spacing: 0.06em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s;
}

.hb-home-v2 .btn-ghost-hero:hover {
	color: var(--copper);
}

.hb-home-v2 .btn-ghost-hero svg {
	width: 16px;
	height: 16px;
	transition: transform 0.2s;
}

.hb-home-v2 .btn-ghost-hero:hover svg {
	transform: translateX(4px);
}

.hb-home-v2 button.btn-ghost-hero {
	appearance: none;
	background: transparent;
	border: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

.hb-home-v2 button.embr-cta {
	cursor: pointer;
	font: inherit;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.hb-home-v2 .hero-scroll {
	position: absolute;
	bottom: 36px;
	right: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.hb-home-v2 .hero-scroll span {
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink3);
	writing-mode: vertical-rl;
}

.hb-home-v2 .hero-scroll-line {
	width: 1px;
	height: 48px;
	background: var(--sand3);
	position: relative;
	overflow: hidden;
}

.hb-home-v2 .hero-scroll-line::after {
	content: "";
	position: absolute;
	top: -48px;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--copper);
	animation: hb2-scrollLine 2s ease-in-out infinite;
}

@keyframes hb2-scrollLine {
	0% {
		top: -48px;
	}
	100% {
		top: 48px;
	}
}

.hb-home-v2 .marquee-strip {
	background: var(--ink);
	padding: 14px 0;
	overflow: hidden;
	white-space: nowrap;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-home-v2 .marquee-inner {
	display: inline-flex;
	animation: hb2-marquee 22s linear infinite;
}

.hb-home-v2 .marquee-inner > span {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	padding: 0 32px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.5);
}

.hb-home-v2 .marquee-inner em {
	color: var(--copper);
	font-style: normal;
	font-size: 16px;
	line-height: 1;
}

@keyframes hb2-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.hb-home-v2 .home-stats-strip {
	background: var(--sand2);
	border-top: 1px solid var(--sand3);
	border-bottom: 1px solid var(--sand3);
	padding: 28px 24px;
}

.hb-home-v2 .home-stats-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 16px;
	text-align: center;
}

@media (min-width: 720px) {
	.hb-home-v2 .home-stats-inner {
		grid-template-columns: repeat(4, 1fr);
		gap: 12px 24px;
	}
}

.hb-home-v2 .home-stat {
	padding: 8px 12px;
	min-width: 0;
}

.hb-home-v2 .home-stat-value {
	font-family: var(--serif);
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.hb-home-v2 .home-stat-label {
	margin-top: 6px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink3);
	line-height: 1.35;
}

.hb-home-v2 .step-note {
	margin: 12px 0 0;
	font-size: 12px;
	font-style: italic;
	font-weight: 400;
	color: var(--copper-dim);
	line-height: 1.5;
}

.hb-home-v2 .step-link {
	display: inline-block;
	margin-top: 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--copper);
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 118, 58, 0.35);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}

@media (hover: hover) {
	.hb-home-v2 .step-link:hover {
		color: var(--copper-dim);
		border-bottom-color: var(--copper-dim);
	}
}

.hb-home-v2 .products-grid--empty {
	display: block;
	max-width: 42rem;
	padding: 48px 24px;
	background: var(--sand2);
	border: 1px dashed var(--sand3);
}

.hb-home-v2 .cats-empty-msg {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink3);
	text-align: center;
}

.hb-home-v2 .how-section {
	padding: 120px 40px;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.hb-home-v2 .how-section::before {
	content: "HOW";
	position: absolute;
	top: -30px;
	right: -20px;
	font-family: var(--serif);
	font-size: clamp(120px, 18vw, 220px);
	font-weight: 700;
	color: rgba(28, 23, 18, 0.025);
	pointer-events: none;
	line-height: 1;
	user-select: none;
}

.hb-home-v2 .how-section-inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hb-home-v2 .section-kicker {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--copper);
	margin-bottom: 12px;
}

.hb-home-v2 .section-title {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 56px);
	color: var(--ink);
	font-weight: 500;
	margin: 0 0 16px;
	line-height: 1.1;
}

.hb-home-v2 .how-section-intro {
	margin: 8px auto 28px;
	max-width: 40rem;
	text-align: center;
	font-size: clamp(15px, 1.35vw, 17px);
	line-height: 1.65;
	color: var(--ink3);
}

.hb-home-v2 .section-rule {
	width: 40px;
	height: 2px;
	background: var(--copper);
	margin: 0 0 64px;
}

.hb-home-v2 .steps-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	position: relative;
}

.hb-home-v2 .steps-grid::before {
	content: "";
	position: absolute;
	top: 36px;
	left: calc(16.66% + 20px);
	right: calc(16.66% + 20px);
	height: 1px;
	background: linear-gradient(to right, var(--sand3), var(--copper), var(--sand3));
}

.hb-home-v2 .step-item {
	padding: 0 24px;
	text-align: center;
	position: relative;
}

.hb-home-v2 .step-num-wrap {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1.5px solid var(--sand3);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 32px;
	position: relative;
	z-index: 1;
	transition: border-color 0.3s, background 0.3s;
}

@media (hover: hover) {
	.hb-home-v2 .step-item:hover .step-num-wrap {
		border-color: var(--copper);
		background: var(--copper-light);
	}
}

.hb-home-v2 .step-num {
	font-family: var(--serif);
	font-size: 26px;
	color: var(--ink3);
	font-weight: 400;
	transition: color 0.3s;
}

@media (hover: hover) {
	.hb-home-v2 .step-item:hover .step-num {
		color: var(--copper);
	}
}

.hb-home-v2 .step-h {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0 0 14px;
}

.hb-home-v2 .step-p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.75;
	color: var(--ink3);
	margin: 0;
}

.hb-home-v2 .bar-section {
	padding: 120px 40px;
	background: var(--sand);
	position: relative;
}

.hb-home-v2 .bar-section-head {
	max-width: 1280px;
	margin: 0 auto 64px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.hb-home-v2 .products-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	align-items: stretch;
}

.hb-home-v2 .product-card {
	background: var(--white);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	min-height: 0;
	min-width: 0;
}

.hb-home-v2 .product-card-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--sand2);
	flex-shrink: 0;
}

.hb-home-v2 .product-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) {
	.hb-home-v2 .product-card:hover .product-card-img img {
		transform: scale(1.07);
	}
}

.hb-home-v2 .product-card-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 50%, rgba(28, 23, 18, 0.5) 100%);
	opacity: 0;
	transition: opacity 0.4s;
}

@media (hover: hover) {
	.hb-home-v2 .product-card:hover .product-card-img-overlay {
		opacity: 1;
	}
}

.hb-home-v2 .product-img-actions {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	z-index: 3;
	width: calc(100% - 32px);
	max-width: 260px;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s;
	pointer-events: none;
}

.hb-home-v2 .product-img-actions .product-quick {
	position: static;
	transform: none;
	width: 100%;
	opacity: 1;
	pointer-events: auto;
}

.hb-home-v2 .product-quick {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: var(--white);
	color: var(--ink);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 11px 28px;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s;
	border: none;
	text-decoration: none;
	z-index: 3;
	text-align: center;
	cursor: pointer;
	font-family: inherit;
}

.hb-home-v2 button.product-quick {
	appearance: none;
}

.hb-home-v2 .product-card:hover .product-img-actions {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.hb-home-v2 .product-card:hover .product-card-img > .product-quick {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.hb-home-v2 .product-quick--premade {
	background: var(--ink);
	color: var(--white);
	white-space: normal;
	line-height: 1.25;
	padding: 10px 18px;
}

.hb-home-v2 .product-quick--premade:hover {
	background: var(--copper);
	color: var(--white);
}

@media (hover: none) {
	.hb-home-v2 .product-card--embroidery .product-img-actions {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
		pointer-events: auto;
	}
}

.hb-home-v2 .product-quick:hover {
	background: var(--copper);
	color: var(--white);
}

.hb-home-v2 .product-img-actions .product-quick:not(.product-quick--premade):hover {
	background: var(--copper);
	color: var(--white);
}

.hb-home-v2 .product-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(245, 240, 232, 0.92);
	backdrop-filter: blur(6px);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink2);
	padding: 5px 12px;
	border-radius: 2px;
	z-index: 2;
}

.hb-home-v2 .product-card-body {
	padding: 24px 28px 28px;
	border-top: 1px solid var(--sand2);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
}

.hb-home-v2 .product-name {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--ink);
	font-weight: 500;
	margin: 0 0 4px;
}

.hb-home-v2 .product-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.hb-home-v2 .product-price-prefix {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink3);
}

.hb-home-v2 .product-price-value {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink3);
}

.hb-home-v2 .product-cta {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid var(--sand3);
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink3);
	flex-shrink: 0;
	transition: all 0.2s;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	font: inherit;
}

.hb-home-v2 button.product-cta {
	appearance: none;
}

.hb-home-v2 .product-cta svg {
	width: 16px;
	height: 16px;
}

.hb-home-v2 .product-card:hover .product-cta {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

.hb-home-v2 .vibes-section {
	padding: 100px 40px;
	background: var(--white);
	overflow: hidden;
}

.hb-home-v2 .vibes-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.hb-home-v2 .vibes-header {
	margin-bottom: 52px;
}

.hb-home-v2 .vibes-intro {
	font-size: 14px;
	font-weight: 300;
	color: var(--ink3);
	max-width: 440px;
	line-height: 1.75;
	margin: 10px 0 0;
}

.hb-home-v2 .vibes-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 24px 0 28px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
}

.hb-home-v2 .vibes-scroll::-webkit-scrollbar {
	display: none;
}

.hb-home-v2 .vibe-chip {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.hb-home-v2 .vibe-chip-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1.5px solid var(--sand3);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--sand);
	transition: border-color 0.25s, background 0.25s, transform 0.25s, color 0.25s;
	color: var(--ink3);
}

.hb-home-v2 .vibe-icon-svg {
	width: 40px;
	height: 40px;
	display: block;
	flex-shrink: 0;
}

.hb-home-v2 .vibe-chip-circle i {
	font-size: 40px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.hb-home-v2 .vibe-chip:hover .vibe-chip-circle {
	border-color: var(--copper);
	background: var(--copper-light);
	transform: scale(1.06);
	color: var(--copper);
}

.hb-home-v2 .vibe-name {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--ink3);
	text-transform: uppercase;
	transition: color 0.2s;
}

.hb-home-v2 .vibe-chip:hover .vibe-name {
	color: var(--copper);
}

.hb-home-v2 .embroidery-section {
	background: var(--ink);
	position: relative;
	overflow: hidden;
}

.hb-home-v2 .embroidery-section::before {
	content: "EMBR";
	position: absolute;
	bottom: -60px;
	left: -30px;
	font-family: var(--serif);
	font-size: clamp(140px, 22vw, 260px);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.025);
	pointer-events: none;
	line-height: 1;
	user-select: none;
}

.hb-home-v2 .embroidery-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
}

.hb-home-v2 .embr-visual {
	position: relative;
	overflow: hidden;
	min-height: 320px;
}

.hb-home-v2 .embr-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 360px;
	filter: grayscale(20%) brightness(0.85);
	transition: filter 0.6s, transform 0.8s;
}

@media (hover: hover) {
	.hb-home-v2 .embr-visual:hover img {
		filter: grayscale(0%) brightness(0.95);
		transform: scale(1.03);
	}
}

.hb-home-v2 .embr-visual-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 40%, var(--ink) 100%);
}

.hb-home-v2 .embr-badge {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1.5px solid rgba(184, 118, 58, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--copper);
	animation: hb2-rotateBadge 20s linear infinite;
	z-index: 3;
}

.hb-home-v2 .embr-badge-inner {
	text-align: center;
	animation: hb2-rotateBadge 20s linear infinite reverse;
}

.hb-home-v2 .embr-badge-price {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 500;
	color: var(--white);
	line-height: 1;
}

.hb-home-v2 .embr-badge-label {
	font-size: 8px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--copper);
	display: block;
	margin-top: 3px;
}

@keyframes hb2-rotateBadge {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.hb-home-v2 .embr-copy {
	padding: 80px 80px 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--white);
	position: relative;
	z-index: 2;
}

.hb-home-v2 .embr-kicker {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--copper);
	margin-bottom: 20px;
}

.hb-home-v2 .embr-h2 {
	font-family: var(--serif);
	font-size: clamp(34px, 4vw, 62px);
	font-weight: 500;
	line-height: 1.1;
	color: var(--white);
	margin: 0 0 24px;
}

.hb-home-v2 .embr-h2 em {
	font-style: italic;
	color: rgba(245, 240, 232, 0.6);
}

.hb-home-v2 .embr-body {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	color: rgba(245, 240, 232, 0.55);
	max-width: 400px;
	margin: 0 0 40px;
}

.hb-home-v2 .embr-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 44px;
	padding: 0;
}

.hb-home-v2 .embr-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 300;
	color: rgba(245, 240, 232, 0.7);
}

.hb-home-v2 .embr-features li::before {
	content: "";
	width: 20px;
	height: 1px;
	background: var(--copper);
	flex-shrink: 0;
}

.hb-home-v2 .embr-cta {
	background: var(--copper);
	color: var(--white);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 17px 40px;
	border: none;
	align-self: flex-start;
	transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
	text-decoration: none;
	display: inline-block;
}

.hb-home-v2 .embr-cta:hover {
	background: var(--white);
	color: var(--ink);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hb-home-v2 .quote-section {
	padding: 100px 40px;
	background: var(--sand2);
	text-align: center;
}

.hb-home-v2 .quote-inner {
	max-width: 740px;
	margin: 0 auto;
}

.hb-home-v2 .quote-mark {
	font-family: var(--serif);
	font-size: 100px;
	line-height: 0.7;
	color: var(--copper-mid);
	display: block;
	margin-bottom: 16px;
	font-style: italic;
}

.hb-home-v2 .quote-text {
	font-family: var(--serif);
	font-size: clamp(20px, 3vw, 32px);
	font-weight: 400;
	font-style: italic;
	color: var(--ink);
	line-height: 1.5;
	margin: 0 0 28px;
}

.hb-home-v2 .quote-author {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink3);
}

.hb-home-v2 .quote-author span {
	color: var(--copper);
}

.hb-home-v2 .hb2-final-cta {
	padding: 80px 40px;
	background: var(--sand);
	text-align: center;
}

.hb-home-v2 .hb2-final-cta-inner {
	max-width: 640px;
	margin: 0 auto;
}

.hb-home-v2 .hb2-final-cta-title {
	font-family: var(--serif);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	margin: 0 0 0.75rem;
}

.hb-home-v2 .hb2-final-cta-sub {
	color: var(--ink3);
	margin: 0 0 1.25rem;
}

.hb-home-v2.js-reveal-prep .hatbar-observe .step-item,
.hb-home-v2.js-reveal-prep .hatbar-observe .product-card,
.hb-home-v2.js-reveal-prep .hatbar-observe .vibe-chip,
.hb-home-v2.js-reveal-prep .hatbar-observe .embr-copy > * {
	opacity: 0;
	transform: translateY(24px);
}

@media (max-width: 960px) {
	.hb-home-v2 .hero {
		grid-template-columns: 1fr;
	}

	.hb-home-v2 .hero-visual {
		order: -1;
		min-height: 45vh;
	}

	.hb-home-v2 .hero-visual::after {
		display: none;
	}

	.hb-home-v2 .hero-copy {
		padding: 48px 28px 100px;
	}

	.hb-home-v2 .hero-copy::before {
		display: none;
	}

	.hb-home-v2 .hero-scroll {
		right: 28px;
		bottom: 24px;
	}

	.hb-home-v2 .hero-float-tag {
		left: 20px;
		bottom: 24px;
	}

	.hb-home-v2 .steps-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hb-home-v2 .steps-grid::before {
		display: none;
	}

	.hb-home-v2 .products-grid {
		grid-template-columns: 1fr;
	}

	.hb-home-v2 .embroidery-inner {
		grid-template-columns: 1fr;
	}

	.hb-home-v2 .embr-copy {
		padding: 48px 28px 64px;
	}

	.hb-home-v2 .embr-visual-overlay {
		background: linear-gradient(to top, var(--ink) 0%, transparent 60%);
	}
}

@media (max-width: 900px) {
	.hb-home-v2 .how-section,
	.hb-home-v2 .bar-section,
	.hb-home-v2 .vibes-section {
		padding: 72px 24px;
	}
}
