.gbutk-homepage {
	--gbutk-bg: #fbf3e8;
	--gbutk-surface: #ffffff;
	--gbutk-text: #241a16;
	--gbutk-muted: #6d5b50;
	--gbutk-accent: #c74724;
	--gbutk-accent-dark: #9f351a;
	--gbutk-line: rgba(36, 26, 22, 0.12);
	--gbutk-shadow: 0 2px 8px rgba(36, 26, 22, 0.06);
	--gbutk-shadow-hover: 0 12px 30px rgba(36, 26, 22, 0.12);
	background: var(--gbutk-bg);
	color: var(--gbutk-text);
	font-family: "Open Sans", "Lato", "Poppins", Arial, sans-serif;
}

.gbutk-section {
	padding: 80px 0;
}

.gbutk-container {
	width: min(100% - 40px, 1140px);
	margin-inline: auto;
}

.gbutk-grid {
	display: grid;
	gap: 24px;
}

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

:where(.gbutk-heading),
:where(.gbutk-hero-title),
:where(.gbutk-card-title) {
	color: var(--gbutk-text);
	font-family: "Poppins", "Nunito", Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
}

:where(.gbutk-heading) {
	font-size: clamp(2rem, 4vw, 3rem);
}

:where(.gbutk-hero-title) {
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	max-width: 780px;
}

:where(.gbutk-card-title) {
	font-size: 1.25rem;
}

.gbutk-homepage p {
	line-height: 1.65;
	margin: 0;
}

.gbutk-section-desc {
	color: var(--gbutk-muted);
	font-size: 1.05rem;
	margin-top: 16px;
	max-width: 680px;
}

.gbutk-label,
.gbutk-post-category {
	color: var(--gbutk-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	line-height: 1.2;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.gbutk-button-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.gbutk-button,
.gbutk-card-link {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	min-height: 44px;
	text-decoration: none;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gbutk-button {
	border: 2px solid transparent;
	border-radius: 999px;
	justify-content: center;
	padding: 14px 22px;
}

.gbutk-button-primary {
	background: var(--gbutk-accent);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(199, 71, 36, 0.22);
}

.gbutk-button-primary:hover,
.gbutk-button-primary:focus-visible {
	background: var(--gbutk-accent-dark);
	box-shadow: 0 12px 28px rgba(199, 71, 36, 0.28);
	color: #ffffff;
	transform: translateY(-3px);
}

.gbutk-button-secondary {
	background: rgba(255, 255, 255, 0.72);
	border-color: var(--gbutk-line);
	color: var(--gbutk-text);
}

.gbutk-button-secondary:hover,
.gbutk-button-secondary:focus-visible {
	background: #ffffff;
	border-color: rgba(199, 71, 36, 0.36);
	color: var(--gbutk-accent-dark);
	transform: translateY(-3px);
}

.gbutk-card {
	background: var(--gbutk-surface);
	border: 1px solid var(--gbutk-line);
	border-radius: 16px;
	box-shadow: var(--gbutk-shadow);
	padding: 28px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gbutk-card:hover,
.gbutk-card:focus-within {
	border-color: rgba(199, 71, 36, 0.28);
	box-shadow: var(--gbutk-shadow-hover);
	transform: translateY(-6px);
}

.gbutk-card p {
	color: var(--gbutk-muted);
	margin-top: 12px;
}

.gbutk-card-link {
	color: var(--gbutk-accent);
	margin-top: 20px;
	min-height: 0;
}

.gbutk-card-link:hover,
.gbutk-card-link:focus-visible {
	color: var(--gbutk-accent-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.gbutk-hero-section {
	overflow: hidden;
	padding-top: 92px;
}

.gbutk-hero-layout {
	align-items: center;
	display: grid;
	gap: 60px;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.gbutk-hero-subtitle {
	color: var(--gbutk-muted);
	font-size: 1.2rem;
	margin-top: 24px;
	max-width: 680px;
}

.gbutk-hero-note {
	border-left: 4px solid var(--gbutk-accent);
	color: var(--gbutk-muted);
	margin-top: 28px;
	max-width: 620px;
	padding-left: 16px;
}

.gbutk-hero-stack {
	aspect-ratio: 4 / 5;
	background:
		radial-gradient(circle at 28% 22%, rgba(199, 71, 36, 0.14), transparent 28%),
		linear-gradient(145deg, #fffaf2, #ffffff);
	border: 1px solid var(--gbutk-line);
	border-radius: 16px;
	box-shadow: var(--gbutk-shadow-hover);
	display: grid;
	gap: 16px;
	padding: 24px;
	transform: rotate(2deg);
}

.gbutk-hero-stack span {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--gbutk-line);
	border-radius: 14px;
	box-shadow: var(--gbutk-shadow);
	color: var(--gbutk-text);
	display: flex;
	font-family: "Poppins", "Nunito", Arial, sans-serif;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	font-weight: 800;
	justify-content: center;
}

.gbutk-browse-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gbutk-featured-section,
.gbutk-verdict-section {
	background: rgba(255, 255, 255, 0.45);
}

.gbutk-featured-shell {
	align-items: stretch;
	background: var(--gbutk-surface);
	border: 1px solid var(--gbutk-line);
	border-radius: 16px;
	box-shadow: var(--gbutk-shadow);
	display: grid;
	gap: 0;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	overflow: hidden;
}

.gbutk-featured-image {
	background: #f4dfcc;
	margin: 0;
	min-height: 360px;
	overflow: hidden;
}

.gbutk-featured-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

.gbutk-featured-shell:hover .gbutk-featured-image img {
	transform: scale(1.04);
}

.gbutk-featured-copy {
	align-self: center;
	padding: 48px;
}

.gbutk-featured-copy p:not(.gbutk-label) {
	color: var(--gbutk-muted);
	margin: 18px 0 28px;
}

.gbutk-post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gbutk-post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
}

.gbutk-post-card .gbutk-card-title,
.gbutk-post-card .gbutk-post-category,
.gbutk-post-card .gbutk-post-excerpt,
.gbutk-post-card .gbutk-card-link {
	margin-left: 24px;
	margin-right: 24px;
}

.gbutk-post-card .gbutk-card-link {
	margin-bottom: 24px;
	margin-top: auto;
	padding-top: 20px;
}

.gbutk-post-image {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: #f4dfcc;
	color: var(--gbutk-accent-dark);
	display: flex;
	font-weight: 800;
	justify-content: center;
	margin-bottom: 22px;
	overflow: hidden;
	text-decoration: none;
}

.gbutk-post-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

.gbutk-post-card:hover .gbutk-post-image img {
	transform: scale(1.05);
}

.gbutk-post-card .gbutk-card-title a {
	color: inherit;
	text-decoration: none;
}

.gbutk-post-card .gbutk-card-title a:hover,
.gbutk-post-card .gbutk-card-title a:focus-visible {
	color: var(--gbutk-accent-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.gbutk-post-excerpt {
	color: var(--gbutk-muted);
	margin-top: 12px;
}

.gbutk-verdict-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gbutk-verdict-card,
.gbutk-step-card {
	text-align: center;
}

.gbutk-verdict-card p,
.gbutk-step-card p {
	text-align: center;
}

.gbutk-how-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gbutk-step-number {
	align-items: center;
	background: rgba(199, 71, 36, 0.1);
	border-radius: 999px;
	color: var(--gbutk-accent-dark);
	display: inline-flex;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	margin-bottom: 18px;
	width: 44px;
}

.gbutk-social-panel {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(199, 71, 36, 0.1), rgba(244, 223, 204, 0.5)),
		var(--gbutk-surface);
	border: 1px solid rgba(199, 71, 36, 0.2);
	border-radius: 16px;
	box-shadow: var(--gbutk-shadow);
	display: flex;
	gap: 32px;
	justify-content: space-between;
	padding: 40px;
}

.gbutk-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.gbutk-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.gbutk-reveal,
	.gbutk-button,
	.gbutk-card,
	.gbutk-featured-image img,
	.gbutk-post-image img {
		transition: none;
	}

	.gbutk-card:hover,
	.gbutk-button:hover,
	.gbutk-button:focus-visible {
		transform: none;
	}
}

@media (max-width: 1024px) {
	.gbutk-section {
		padding: 64px 0;
	}

	.gbutk-container {
		width: min(100% - 32px, 1140px);
	}

	.gbutk-hero-layout,
	.gbutk-featured-shell {
		grid-template-columns: 1fr;
	}

	.gbutk-hero-stack {
		aspect-ratio: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-height: 300px;
		transform: none;
	}

	.gbutk-browse-grid,
	.gbutk-post-grid,
	.gbutk-verdict-grid,
	.gbutk-how-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gbutk-section {
		padding: 48px 0;
	}

	.gbutk-container {
		width: min(100% - 24px, 1140px);
	}

	.gbutk-section-header {
		margin-bottom: 32px;
	}

	.gbutk-button-row,
	.gbutk-social-panel {
		align-items: stretch;
		flex-direction: column;
	}

	.gbutk-button {
		width: 100%;
	}

	.gbutk-browse-grid,
	.gbutk-post-grid,
	.gbutk-verdict-grid,
	.gbutk-how-grid {
		grid-template-columns: 1fr;
	}

	.gbutk-hero-stack {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.gbutk-hero-stack span {
		min-height: 88px;
	}

	.gbutk-card,
	.gbutk-featured-copy,
	.gbutk-social-panel {
		padding: 24px;
	}

	.gbutk-featured-image {
		min-height: 260px;
	}
}
