/* ============================================================
   Головна сторінка: hero, story, formats, blends, cta, stats.
   ============================================================ */

/* ─────────────── HERO ─────────────── */

.h-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	overflow: hidden;
	background: var(--pc-espresso);
}

.h-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 25% 45%, rgba(200, 164, 94, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse at 75% 75%, rgba(184, 87, 58, 0.06) 0%, transparent 45%),
		linear-gradient(175deg, var(--pc-black) 0%, #1e120c 40%, var(--pc-espresso) 100%);
}

.h-hero__noise {
	position: absolute;
	inset: 0;
	opacity: 0.6;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.h-hero__steam {
	position: absolute;
	bottom: 25%;
	left: 50%;
	width: 260px;
	height: 360px;
	transform: translateX(-50%);
	pointer-events: none;
}

.h-steam-p {
	position: absolute;
	bottom: 0;
	left: var(--x);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 234, 214, 0.25), transparent);
	animation: hSteamUp var(--d) ease-out infinite;
	animation-delay: var(--del);
}

@keyframes hSteamUp {
	0% {
		opacity: 0;
		transform: translateY(0) scale(1);
	}

	10% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
		transform: translateY(-320px) translateX(var(--dx)) scale(3.5);
	}
}

.h-hero__content {
	position: relative;
	z-index: 5;
	max-width: 860px;
	padding: 140px 24px 100px;
	text-align: center;
}

.h-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
	padding: 10px 22px;
	border: 1px solid rgba(200, 164, 94, 0.2);
	border-radius: 100px;
	background: rgba(200, 164, 94, 0.08);
	opacity: 0;
	animation: hFadeUp 0.8s 0.3s var(--ease) forwards;
}

.h-hero__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pc-gold);
	animation: hPulse 2s ease-in-out infinite;
}

@keyframes hPulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(0.85);
	}
}

.h-hero__badge span {
	color: var(--pc-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.h-hero__title {
	margin-bottom: 28px;
	color: var(--pc-crema);
	font-family: var(--font-display);
	font-size: clamp(50px, 8.5vw, 100px);
	font-weight: 700;
	line-height: 1.02;
	opacity: 0;
	animation: hFadeUp 1s 0.5s var(--ease) forwards;
}

.h-hero__title em {
	position: relative;
	color: var(--pc-gold);
	font-style: italic;
}

.h-hero__sub {
	max-width: 520px;
	margin: 0 auto 44px;
	color: var(--pc-stone);
	font-size: clamp(16px, 2vw, 19px);
	font-weight: 300;
	line-height: 1.75;
	opacity: 0;
	animation: hFadeUp 1s 0.7s var(--ease) forwards;
}

.h-hero__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	opacity: 0;
	animation: hFadeUp 1s 0.9s var(--ease) forwards;
}

.h-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 34px;
	border: none;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s var(--ease);
}

.h-hero__btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s;
}

.h-hero__btn:hover svg {
	transform: translateX(3px);
}

.h-hero__btn--gold {
	background: var(--pc-gold);
	color: var(--pc-espresso);
	box-shadow: 0 8px 28px rgba(200, 164, 94, 0.3);
}

.h-hero__btn--gold:hover {
	background: var(--pc-gold-light);
	color: var(--pc-espresso);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(200, 164, 94, 0.4);
}

.h-hero__btn--outline {
	border: 1.5px solid rgba(245, 234, 214, 0.2);
	background: transparent;
	color: var(--pc-crema);
}

.h-hero__btn--outline:hover {
	border-color: var(--pc-gold);
	color: var(--pc-gold);
	transform: translateY(-2px);
}

.h-hero__line {
	position: absolute;
	top: 50%;
	width: 1px;
	height: 180px;
	transform: translateY(-50%);
	background: linear-gradient(to bottom, transparent, rgba(200, 164, 94, 0.15), transparent);
}

.h-hero__line--l {
	left: 56px;
}

.h-hero__line--r {
	right: 56px;
}

@keyframes hFadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.h-hero__content {
		padding: 130px 20px 100px;
	}

	.h-hero__line {
		display: none;
	}

	.h-hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.h-hero__btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

/* ─────────────── STORY ─────────────── */

.h-story {
	padding: 140px 0;
	background: var(--pc-latte);
}

.h-story__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: var(--pc-shell);
	margin: 0 auto;
	padding: 0 var(--pc-gutter);
}

.h-story__visual {
	position: relative;
	height: 500px;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--pc-smoke), var(--pc-espresso));
}

.h-story__visual-img {
	position: absolute;
	top: 20px;
	right: 0;
	width: auto;
	max-width: 50%;
	height: 10%;
	object-fit: contain;
	object-position: right center;
	transition: transform 0.8s var(--ease);
}

.h-story__visual:hover .h-story__visual-img {
	transform: scale(1.04);
}

.h-story__visual-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 30% 60%, rgba(200, 164, 94, 0.15), transparent 55%),
		radial-gradient(circle at 70% 20%, rgba(184, 87, 58, 0.08), transparent 50%);
}

.h-story__visual-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 3;
	padding: 12px 20px;
	border-radius: 100px;
	background: rgba(245, 234, 214, 0.08);
	backdrop-filter: blur(12px);
	color: var(--pc-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.h-story__visual-text {
	position: absolute;
	bottom: 32px;
	left: 32px;
	color: rgb(255 255 255 / 87%);
	font-family: var(--font-display);
	font-size: 80px;
	font-weight: 700;
	line-height: 0.95;
	pointer-events: none;
}

.h-story__text {
	max-width: 500px;
}

.h-story__label {
	display: block;
	margin-bottom: 20px;
	color: var(--pc-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.h-story__title {
	margin-bottom: 24px;
	color: var(--pc-espresso);
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.15;
}

.h-story__title em {
	color: var(--pc-terracotta);
	font-style: italic;
}

.h-story__p {
	margin-bottom: 16px;
	color: var(--pc-stone);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8;
}

.h-story__divider {
	width: 48px;
	height: 2px;
	margin: 28px 0;
	border-radius: 1px;
	background: var(--pc-gold);
}

.h-story__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
	padding: 15px 34px;
	border-radius: 100px;
	background: var(--pc-espresso);
	color: var(--pc-crema);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.4s var(--ease);
}

.h-story__cta:hover {
	background: var(--pc-smoke);
	color: var(--pc-crema);
	transform: translateY(-2px);
}

.h-story__cta svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s;
}

.h-story__cta:hover svg {
	transform: translateX(3px);
}

@media (max-width: 900px) {
	.h-story {
		padding: 100px 0;
	}

	.h-story__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 var(--pc-gutter-sm);
	}

	.h-story__visual {
		height: 340px;
	}
}

/* ─────────────── FORMATS ─────────────── */

.h-formats {
	padding: 140px 0;
	background: var(--pc-white);
}

.h-formats__inner {
	max-width: var(--pc-shell);
	margin: 0 auto;
	padding: 0 var(--pc-gutter);
}

.h-formats__header {
	margin-bottom: 72px;
	text-align: center;
}

.h-formats__label {
	display: block;
	margin-bottom: 20px;
	color: var(--pc-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.h-formats__title {
	margin-bottom: 20px;
	color: var(--pc-espresso);
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.1;
}

.h-formats__desc {
	max-width: 560px;
	margin: 0 auto;
	color: var(--pc-stone);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.75;
}

.h-formats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.hf-card {
	position: relative;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 0 28px;
	align-items: start;
	padding: 44px 36px;
	border: 1.5px solid transparent;
	border-radius: 28px;
	overflow: hidden;
	background: var(--pc-latte);
	transition: all 0.5s var(--ease);
}

.hf-card:hover {
	border-color: rgba(200, 164, 94, 0.18);
	background: var(--pc-white);
	transform: translateY(-6px);
	box-shadow: 0 20px 56px rgba(13, 9, 6, 0.12);
}

.hf-card::before {
	content: '';
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 0;
	width: 3px;
	border-radius: 2px;
	background: linear-gradient(180deg, transparent, var(--pc-gold), transparent);
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}

.hf-card:hover::before {
	opacity: 1;
}

.hf-card__num {
	position: absolute;
	right: 22px;
	bottom: 12px;
	color: rgba(200, 164, 94, 0.05);
	font-family: var(--font-display);
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
	transition: color 0.4s;
}

.hf-card:hover .hf-card__num {
	color: rgba(200, 164, 94, 0.09);
}

.hf-card__icon-wrap {
	grid-column: 1;
	grid-row: 1 / 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding-top: 4px;
}

.hf-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: var(--pc-white);
	font-size: 28px;
	box-shadow: 0 4px 16px rgba(13, 9, 6, 0.07);
	transition: transform 0.5s var(--spring), box-shadow 0.4s;
}

.hf-card:hover .hf-card__icon {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 8px 24px rgba(200, 164, 94, 0.2);
}

.hf-card__badge {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 100px;
	background: var(--pc-gold-dim);
	color: var(--pc-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.hf-card__name {
	grid-column: 2;
	margin-bottom: 6px;
	color: var(--pc-espresso);
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
}

.hf-card__sub {
	grid-column: 2;
	margin-bottom: 10px;
	color: var(--pc-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hf-card__desc {
	grid-column: 2;
	margin-bottom: 16px;
	color: var(--pc-stone);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.75;
}

.hf-card__features {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hf-feat {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--pc-stone);
	font-size: 12px;
	font-weight: 400;
}

.hf-feat::before {
	content: '';
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pc-gold);
	opacity: 0.6;
}

.hf-card__price-row {
	grid-column: 2;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(200, 164, 94, 0.1);
}

.hf-card__price {
	color: var(--pc-espresso);
	font-size: 18px;
	font-weight: 600;
}

.hf-card__price span {
	margin-left: 4px;
	color: var(--pc-stone);
	font-size: 12px;
	font-weight: 400;
}

.hf-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	color: var(--pc-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.3s;
}

.hf-card:hover .hf-card__link {
	opacity: 1;
}

.hf-card__link svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: var(--pc-gold);
	stroke-width: 2.5;
	transition: transform 0.3s var(--ease);
}

.hf-card__link:hover svg {
	transform: translateX(3px);
}

.h-formats__cta {
	margin-top: 56px;
	text-align: center;
}

.h-formats__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	border: none;
	border-radius: 100px;
	background: var(--pc-espresso);
	color: var(--pc-crema);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(13, 9, 6, 0.15);
	transition: all 0.4s var(--ease);
}

.h-formats__btn:hover {
	background: var(--pc-smoke);
	color: var(--pc-crema);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(13, 9, 6, 0.2);
}

.h-formats__btn svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: var(--pc-crema);
	stroke-width: 2.5;
	transition: transform 0.3s;
}

.h-formats__btn:hover svg {
	transform: translateX(4px);
}

@media (max-width: 900px) {
	.h-formats {
		padding: 100px 0;
	}

	.h-formats__inner {
		padding: 0 var(--pc-gutter-sm);
	}

	.h-formats__grid {
		grid-template-columns: 1fr;
	}

	.hf-card {
		grid-template-columns: 64px 1fr;
		gap: 0 20px;
		padding: 32px 24px;
	}

	.hf-card__link {
		opacity: 1;
	}
}

/* ─────────────── BLENDS ─────────────── */

.h-blends {
	position: relative;
	padding: 140px 0;
	overflow: hidden;
	background: var(--pc-espresso);
}

.h-blends__watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(245, 234, 214, 0.015);
	font-family: var(--font-display);
	font-size: clamp(140px, 22vw, 320px);
	font-weight: 700;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.h-blends__inner {
	position: relative;
	z-index: 2;
	max-width: var(--pc-shell);
	margin: 0 auto;
	padding: 0 var(--pc-gutter);
}

.h-blends__header {
	margin-bottom: 64px;
	text-align: center;
}

.h-blends__label {
	display: block;
	margin-bottom: 20px;
	color: var(--pc-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.h-blends__title {
	margin-bottom: 20px;
	color: var(--pc-crema);
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.1;
}

.h-blends__desc {
	max-width: 480px;
	margin: 0 auto;
	color: var(--pc-stone);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.75;
}

.h-blends__scroll {
	display: flex;
	gap: 24px;
	padding-bottom: 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.h-blends__scroll::-webkit-scrollbar {
	display: none;
}

.hb-card {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	min-width: 270px;
	max-width: 270px;
	border: 1px solid rgba(245, 234, 214, 0.06);
	border-radius: 20px;
	overflow: hidden;
	background: rgba(245, 234, 214, 0.04);
	scroll-snap-align: start;
	transition: all 0.5s var(--ease);
}

.hb-card:hover {
	border-color: rgba(200, 164, 94, 0.25);
	transform: translateY(-5px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.hb-card__shimmer {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(110deg, transparent 30%, rgba(200, 164, 94, 0.03) 50%, transparent 70%);
	animation: hbShimmer 5s ease-in-out infinite;
}

@keyframes hbShimmer {
	0%,
	100% {
		transform: translateX(-100%);
	}

	50% {
		transform: translateX(100%);
	}
}

.hb-card__img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 100%;
	height: 180px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	background: rgba(245, 234, 214, 0.03);
}

.hb-card__img {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
	object-fit: contain;
	object-position: center center;
	transition: transform 0.6s var(--ease);
}

.hb-card:hover .hb-card__img {
	transform: scale(1.07) translateY(-3px);
}

.hb-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 24px 28px;
}

.hb-card__tag {
	display: inline-block;
	align-self: flex-start;
	margin-bottom: 16px;
	padding: 5px 12px;
	border-radius: 100px;
	background: rgba(200, 164, 94, 0.1);
	color: var(--pc-gold);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hb-card__name {
	margin-bottom: 8px;
	color: var(--pc-crema);
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.hb-card__flavor {
	margin-bottom: 12px;
	color: var(--pc-gold-light);
	font-size: 13px;
	font-weight: 500;
}

.hb-card__desc {
	display: -webkit-box;
	flex: 1;
	margin-bottom: 20px;
	overflow: hidden;
	color: var(--pc-stone);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.65;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.h-blends__nav {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 48px;
}

.h-blends__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(245, 234, 214, 0.12);
	border-radius: 50%;
	background: transparent;
	color: var(--pc-crema);
	cursor: pointer;
	transition: all 0.3s;
}

.h-blends__arrow:hover {
	border-color: var(--pc-gold);
	background: rgba(200, 164, 94, 0.06);
	color: var(--pc-gold);
}

.h-blends__arrow svg {
	width: 18px;
	height: 18px;
}

.h-blends__cta {
	margin-top: 48px;
	text-align: center;
}

.h-blends__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 34px;
	border: none;
	border-radius: 100px;
	background: var(--pc-gold);
	color: var(--pc-espresso);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 8px 28px rgba(200, 164, 94, 0.3);
	transition: all 0.4s var(--ease);
}

.h-blends__btn:hover {
	background: var(--pc-gold-light);
	color: var(--pc-espresso);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(200, 164, 94, 0.4);
}

.h-blends__btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s;
}

.h-blends__btn:hover svg {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.h-blends {
		padding: 100px 0;
	}

	.h-blends__inner {
		padding: 0 var(--pc-gutter-sm);
	}

	.hb-card {
		min-width: 260px;
		max-width: 260px;
	}
}

/* ─────────────── CTA ─────────────── */

.h-cta {
	padding: 140px 0;
	background: var(--pc-latte);
}

.h-cta__inner {
	max-width: var(--pc-shell);
	margin: 0 auto;
	padding: 0 var(--pc-gutter);
}

.h-cta__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.hc-card {
	position: relative;
	padding: 56px 44px;
	border-radius: 28px;
	overflow: hidden;
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.hc-card:hover {
	transform: translateY(-5px);
}

.hc-card--dark {
	background: var(--pc-espresso);
}

.hc-card--light {
	border: 1.5px solid rgba(200, 164, 94, 0.1);
	background: var(--pc-white);
	box-shadow: 0 4px 20px rgba(13, 9, 6, 0.06);
}

.hc-card--light:hover {
	box-shadow: 0 24px 60px rgba(13, 9, 6, 0.14);
}

.hc-card__label {
	display: block;
	margin-bottom: 20px;
	color: var(--pc-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hc-card__title {
	margin-bottom: 16px;
	font-family: var(--font-display);
	font-size: clamp(28px, 3.5vw, 36px);
	font-weight: 700;
	line-height: 1.2;
}

.hc-card--dark .hc-card__title {
	color: var(--pc-crema);
}

.hc-card--light .hc-card__title {
	color: var(--pc-espresso);
}

.hc-card__desc {
	margin-bottom: 32px;
	color: var(--pc-stone);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
}

.hc-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 34px;
	border: none;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.4s var(--ease);
}

.hc-card__btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s;
}

.hc-card__btn:hover svg {
	transform: translateX(3px);
}

.hc-card__btn--gold {
	background: var(--pc-gold);
	color: var(--pc-espresso);
	box-shadow: 0 8px 28px rgba(200, 164, 94, 0.3);
}

.hc-card__btn--gold:hover {
	background: var(--pc-gold-light);
	color: var(--pc-espresso);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(200, 164, 94, 0.4);
}

.hc-card__btn--dark {
	background: var(--pc-espresso);
	color: var(--pc-crema);
}

.hc-card__btn--dark:hover {
	background: var(--pc-smoke);
	color: var(--pc-crema);
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(13, 9, 6, 0.1);
}

.hc-card__deco {
	position: absolute;
	right: -10px;
	bottom: -30px;
	font-family: var(--font-display);
	font-size: 180px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.hc-card--dark .hc-card__deco {
	color: rgba(245, 234, 214, 0.03);
}

.hc-card--light .hc-card__deco {
	color: rgba(200, 164, 94, 0.04);
}

@media (max-width: 900px) {
	.h-cta {
		padding: 100px 0;
	}

	.h-cta__inner {
		padding: 0 var(--pc-gutter-sm);
	}

	.h-cta__grid {
		grid-template-columns: 1fr;
	}

	.hc-card {
		padding: 40px 28px;
	}
}

/* ─────────────── STATS ─────────────── */

.h-stats {
	padding: 72px 0;
	background: var(--pc-espresso);
}

.h-stats__inner {
	max-width: var(--pc-shell);
	margin: 0 auto;
	padding: 0 var(--pc-gutter);
}

.h-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.h-stat {
	position: relative;
	padding: 20px;
	text-align: center;
}

.h-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 18%;
	right: 0;
	width: 1px;
	height: 64%;
	background: rgba(245, 234, 214, 0.06);
}

.h-stat__num {
	margin-bottom: 8px;
	color: var(--pc-gold);
	font-family: var(--font-display);
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
}

.h-stat__label {
	color: var(--pc-stone);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {
	.h-stats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.h-stat:nth-child(2)::after {
		display: none;
	}

	.h-stat {
		padding: 24px 16px;
	}
}

@media (max-width: 480px) {
	.h-stats__grid {
		grid-template-columns: 1fr;
	}

	.h-stat::after {
		display: none;
	}

	.h-stat:not(:last-child) {
		border-bottom: 1px solid rgba(245, 234, 214, 0.04);
	}
}
