/* Section Start: Site Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-100);
}

.header-inner {
	height: 4rem;
	display: flex;
	align-items: center;
}

.nav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	min-width: 0;
}

.brand-name {
	display: inline-block;
	max-width: min(52vw, 18rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-mark {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: var(--miele-red);
	color: var(--white);
	transition: transform 0.2s ease;
}

.brand:hover .brand-mark {
	transform: scale(1.05);
}

.brand-mark svg {
	width: 1.5rem;
	height: 1.5rem;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
	color: var(--miele-red);
}

.link-underline {
	position: relative;
}

.link-underline::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.25s ease;
}

.link-underline:hover::after,
.link-underline:focus-visible::after {
	width: 100%;
}

.nav-toggle {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.6rem;
	border: 0;
	background: transparent;
	color: var(--gray-600);
	cursor: pointer;
	transition: color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	color: var(--miele-red);
}

.nav-toggle svg {
	width: 1.5rem;
	height: 1.5rem;
}

.nav-mobile {
	display: none;
	border-top: 1px solid var(--gray-200);
	background: var(--white);
}

.nav-mobile.is-open {
	display: block;
}

.nav-mobile-inner {
	padding: 1rem 1.5rem 1.5rem;
}

.nav-mobile-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.nav-mobile-links a {
	display: block;
	padding: 0.65rem 0;
	font-weight: 500;
	color: var(--gray-700);
	overflow-wrap: anywhere;
}

.nav-mobile-cta {
	margin-top: 1rem;
}

.nav-desktop .btn {
	margin-left: 1rem;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.home .site-content {
	padding-top: 0;
}
/* Section End: Site Header */

/* Section Start: Shared UI Components */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	line-height: 1;
	transition: all 0.2s ease;
}

.btn-pill {
	border-radius: 999px;
}

.btn-sm {
	padding: 0.7rem 1rem;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 1rem 1.5rem;
	font-size: 0.95rem;
}

.btn-dark {
	background: var(--miele-dark);
	color: var(--white);
}

.btn-dark:hover {
	background: var(--miele-red);
}

.btn-red {
	background: var(--miele-red);
	color: var(--white);
}

.btn-red:hover {
	background: var(--miele-accent);
}

.btn-outline {
	border: 2px solid var(--gray-200);
	color: var(--miele-dark);
	background: var(--white);
}

.btn-outline:hover {
	border-color: var(--miele-red);
	color: var(--miele-red);
}

.btn-shadow {
	box-shadow: 0 10px 25px -14px rgba(0, 0, 0, 0.45);
}

.btn-icon {
	font-size: 0.9em;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.text-link:hover {
	color: var(--miele-red);
}

.text-link--light {
	color: var(--white);
}

.text-link--light:hover {
	color: #f5b2b2;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
}

.badge--light {
	background: var(--white);
	color: var(--gray-600);
}

.badge--soft {
	background: #f8eaea;
	color: var(--miele-red);
}

.badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #22c55e;
	animation: pulse 1.8s ease-in-out infinite;
}

.card-hover {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 30px -20px rgba(0, 0, 0, 0.35);
}
/* Section End: Shared UI Components */

/* Section Start: Hero */
.section-hero {
	min-height: 85vh;
	padding: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--white), var(--miele-warm) 50%, var(--gray-100));
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
}

.hero-orb--right {
	top: 25%;
	right: 0;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.05);
	filter: blur(64px);
}

.hero-orb--left {
	left: 25%;
	bottom: 0;
	width: 16rem;
	height: 16rem;
	background: rgba(229, 231, 235, 0.5);
	filter: blur(40px);
}

.hero-shell {
	position: relative;
	width: 100%;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.hero-copy {
	max-width: 48rem;
}

.hero-badge {
	padding: 0.5rem 1rem;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.hero-title {
	margin-top: 0.5rem;
	font-size: 2.25rem;
	line-height: 1.15;
	color: var(--miele-dark);
}

.hero-text {
	max-width: 42rem;
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.hero-actions {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-btn {
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	font-weight: 500;
}

.hero-btn-icon {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}

.hero-btn svg {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn-icon {
	transform: translateX(0.25rem);
}

.hero-btn:hover svg {
	transform: translateX(0.25rem);
}

.hero-btn-primary {
	box-shadow: 0 10px 30px -12px rgba(156, 163, 175, 0.45);
}

.hero-btn-secondary {
	border-width: 2px;
}
/* Section End: Hero */

/* Section Start: How It Works */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.step-card {
	padding: 2rem;
	border-radius: var(--radius-3xl);
	background: linear-gradient(180deg, var(--gray-50), var(--white));
	border: 1px solid var(--gray-100);
}

.step-number {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1;
	background: linear-gradient(135deg, var(--miele-red), var(--miele-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.step-card h3 {
	margin-top: 0.6rem;
}

.step-card p {
	margin-top: 0.8rem;
}

.step-label {
	margin-top: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--miele-red);
}

.step-label-icon {
	width: 1rem;
	height: 1rem;
}

.how-it-works .section-header {
	margin-bottom: 4rem;
}

.how-it-works .section-header p {
	max-width: 36rem;
}

.how-it-works .steps-grid {
	gap: 2rem;
}

.how-it-works .step-card {
	padding: 2rem;
}

.how-it-works .step-card h3 {
	margin-top: 1rem;
	font-size: 1.25rem;
}

.how-it-works .step-card p {
	margin-top: 0.75rem;
	line-height: 1.625;
}

.how-it-works .step-label {
	margin-top: 1.5rem;
}

.how-it-works .step-label-icon {
	width: 1.25rem;
	height: 1.25rem;
}
/* Section End: How It Works */

/* Section Start: Popular Guides */
.guides-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
}

.guide-card {
	display: block;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--gray-200);
}

.guide-media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
	overflow: hidden;
}

.guide-media-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.guide-overlay {
	position: absolute;
	inset: 0;
	background: rgba(183, 28, 28, 0.08);
	transition: background 0.25s ease;
}

.guide-tag {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--gray-600);
}

.guide-body {
	padding: 1.2rem;
}

.guide-body h3 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1.05rem;
}

.guide-card:hover .guide-body h3 {
	color: var(--miele-red);
}

.guide-card:hover .guide-overlay {
	background: rgba(183, 28, 28, 0.16);
}

.guide-body p {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}

.guide-meta {
	margin-top: 0.8rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	color: var(--gray-500);
}

.guide-meta-icon {
	width: 0.9rem;
	height: 0.9rem;
}
/* Section End: Popular Guides */

/* Section Start: Error Codes */
.error-codes {
	overflow: hidden;
	background: var(--miele-dark);
	position: relative;
	isolation: isolate;
}

.error-codes-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(183, 28, 28, 0.3) 0%, transparent 50%);
	opacity: 0.1;
}

.error-codes-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.error-codes h2 {
	font-size: clamp(1.9rem, 2.4vw, 2.35rem);
	line-height: 1.2;
}

.error-links {
	display: grid;
	gap: 0.75rem;
	margin: 2rem 0 1.5rem;
}

.error-link {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.25rem;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.25s ease, border-color 0.25s ease;
}

.error-link-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(183, 28, 28, 0.2);
	color: var(--miele-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.error-link-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.error-link-icon img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}

.error-link-copy {
	flex: 1;
}

.error-link-arrow {
	color: var(--gray-500);
}

.error-link-arrow svg {
	width: 1.05rem;
	height: 1.05rem;
}

.error-link strong {
	display: block;
	font-size: 1.05rem;
	color: var(--white);
}

.error-link span {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.95rem;
	color: var(--gray-400);
}

.error-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.error-link:hover strong {
	color: #f6b0b0;
}

.error-link:hover .error-link-arrow {
	color: var(--white);
}

.text-link-icon {
	width: 1rem;
	height: 1rem;
}

.error-stat-shell {
	position: relative;
	width: 100%;
	/*max-width: 27rem;*/
	margin-left: auto;
}

.error-stat-border {
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 1px;
	border-radius: var(--radius-3xl);
	background: linear-gradient(135deg, rgba(183, 28, 28, 0.2), rgba(183, 28, 28, 0.02));
}

.error-stat-panel {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-3xl);
	background: rgba(31, 41, 51, 0.5);
	border: 1px solid rgba(183, 28, 28, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-stat-content {
	text-align: center;
	padding: 2rem;
}

.error-stat-icon {
	width: 6rem;
	height: 6rem;
	margin: 0 auto 1.5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(183, 28, 28, 0.2);
	color: var(--miele-red);
}

.error-stat-icon svg {
	width: 3rem;
	height: 3rem;
}

.error-stat-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.error-stat-number {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--white);
}

.error-stat-label {
	margin-top: 0.25rem;
	color: var(--gray-400);
}
/* Section End: Error Codes */

/* Section Start: Safety & Recalls */
.safety-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.safety-card {
	padding: 2rem;
	border-radius: var(--radius-3xl);
	background: linear-gradient(135deg, #fff5f5, #fff7ed);
	border: 1px solid #f6d3d3;
}

.safety-head {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.safety-card h3 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--miele-dark);
}

.safety-head p {
	margin-top: 0.5rem;
	color: var(--gray-600);
}

.safety-alert-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: var(--miele-red);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.safety-alert-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.safety-alert-icon img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}

.safety-links {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.safety-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--white);
	border-radius: 0.75rem;
	font-weight: 500;
	color: var(--miele-dark);
	border: 1px solid #f1f5f9;
	transition: box-shadow 0.2s ease;
}

.safety-link:hover {
	box-shadow: 0 10px 20px -14px rgba(15, 23, 42, 0.45);
}

.safety-link-dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.safety-link-dot--red {
	background: #ef4444;
}

.safety-link-dot--orange {
	background: #f97316;
}

.safety-right .section-lead {
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 1.125rem;
	line-height: 1.625;
}

.safety-right h2 {
	margin-top: 0.5rem;
}

.safety-btn {
	margin-top: 2rem;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
}

.safety-btn-icon {
	width: 1rem;
	height: 1rem;
	transition: transform 0.2s ease;
}

.safety-btn:hover .safety-btn-icon {
	transform: translateX(0.2rem);
}
/* Section End: Safety & Recalls */

/* Section Start: Professional Service */
.pro-service {
	background: linear-gradient(180deg, var(--miele-warm) 0%, var(--white) 100%);
}

.pro-service-center {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.pro-service-badge {
	margin-bottom: 1.5rem;
}

.badge-icon {
	width: 1rem;
	height: 1rem;
}

.pro-service h2 {
	font-size: clamp(1.875rem, 3vw, 3rem);
}

.pro-service-lead {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.pro-service-card {
	margin-top: 3rem;
	padding: 2rem;
	border-radius: var(--radius-3xl);
	background: var(--white);
	border: 1px solid var(--gray-100);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pro-service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.pro-item {
	text-align: center;
}

.pro-item-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pro-item-icon svg {
	width: 2rem;
	height: 2rem;
}

.pro-item-icon img {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.pro-item-icon--green {
	background: #ecfdf3;
	color: #15803d;
}

.pro-item-icon--blue {
	background: #eff6ff;
	color: #2563eb;
}

.pro-item-icon--purple {
	background: #f3e8ff;
	color: #9333ea;
}

.pro-item-title {
	margin-top: 1rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.pro-item-desc {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.pro-service-btn {
	margin-top: 2.5rem;
	padding-inline: 2rem;
}

.pro-service-btn-icon {
	width: 1.25rem;
	height: 1.25rem;
}
/* Section End: Professional Service */

/* Section Start: Trust */
.trust {
	overflow: hidden;
	background: var(--miele-dark);
}

.trust-orb {
	position: absolute;
	right: -6rem;
	bottom: -6rem;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.1);
	border-radius: 50%;
	filter: blur(64px);
}

.trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.trust-card {
	position: relative;
	z-index: 2;
	padding: 2rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-3xl);
}

.trust-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	border-radius: 1rem;
	background: rgba(183, 28, 28, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--miele-red);
	font-weight: 700;
}

.trust-icon svg {
	width: 2rem;
	height: 2rem;
}

.trust-icon img {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.trust-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--white);
}

.trust-card p {
	font-size: 0.9rem;
	color: var(--gray-400);
	line-height: 1.4;
}

.trust .section-header {
	margin-bottom: 4rem;
}

.trust .eyebrow {
	font-size: 0.875rem;
	font-weight: 500;
}

.trust h2 {
	margin-top: 0.5rem;
	font-size: 1.875rem;
	line-height: 1.2;
}
/* Section End: Trust */

/* Section Start: Guides */
.guides-main {
	padding-top: 0;
	background: var(--miele-warm);
	position: relative;
}

.guides-main::before {
	content: "";
	position: absolute;
	top: -4rem;
	left: 0;
	right: 0;
	height: 4rem;
	background: #f9fafb;
	pointer-events: none;
}

.guides-breadcrumb {
	background: #f9fafb;
	border-top: 1px solid #eef2f7;
	border-bottom: 1px solid #eef2f7;
	padding: 0;
}

.guides-breadcrumb-inner {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.guides-breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
	font-size: 0.875rem;
	color: var(--gray-500);
	margin: 0;
	padding: 0;
	list-style: none;
}

.guides-breadcrumb li {
	display: inline-flex;
	align-items: center;
}

.guides-breadcrumb a {
	color: var(--gray-500);
	text-decoration: none;
	transition: color 0.2s ease;
}

.guides-breadcrumb a:hover {
	color: var(--miele-red);
}

.guides-breadcrumb li[aria-hidden="true"] {
	color: var(--gray-300);
}

.guides-breadcrumb svg {
	width: 1rem;
	height: 1rem;
	color: var(--gray-300);
	flex-shrink: 0;
}

.guides-breadcrumb span {
	color: var(--miele-dark);
	font-weight: 500;
}

@media (max-width: 767px) {
	.guides-breadcrumb-inner {
		padding-top: 0.65rem;
		padding-bottom: 0.85rem;
	}

	.guides-breadcrumb ol {
		flex-wrap: wrap;
		row-gap: 0.35rem;
		white-space: normal;
		font-size: 0.8125rem;
	}

	.guides-breadcrumb li:last-child {
		flex: 1 1 100%;
		min-width: 0;
	}

	.guides-breadcrumb li:nth-last-child(2) {
		display: none;
	}

	.guides-breadcrumb li:last-child span {
		display: block;
		max-width: 100%;
		font-weight: 500;
		line-height: 1.35;
		white-space: normal;
	}
}

.guides-hero {
	position: relative;
	padding: 3rem 0;
	overflow: hidden;
}

.guides-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #fff 0%, var(--miele-warm) 45%, var(--gray-100) 100%);
}

.guides-hero-orb {
	position: absolute;
	top: 0;
	right: 0;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.06);
	filter: blur(64px);
	border-radius: 999px;
}

.guides-hero-inner {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.guides-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	margin-bottom: 1.5rem;
	border-radius: 999px;
	background: var(--white);
	color: var(--gray-600);
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.guides-hero-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
}

.guides-hero h1 {
	font-size: clamp(2.25rem, 4.2vw, 3.75rem);
	line-height: 1.12;
}

.guides-hero p {
	margin-top: 1.5rem;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.62;
	color: var(--gray-600);
	max-width: 42rem;
}

.guides-hero-stats {
	margin-top: 2.1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.guides-hero-stats div {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.guides-hero-stats strong {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--miele-red);
}

.guides-hero-stats span {
	font-size: 0.86rem;
	color: var(--gray-500);
}

.guides-topics,
.guides-popular,
.guides-cta-wrap {
	padding: 3rem 0 4rem;
}

.guides-popular {
	background: var(--white);
	border-top: 1px solid var(--gray-100);
}

.guides-heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.guides-heading-row h2 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.25;
	margin: 0;
}

.guides-heading-row p {
	margin-top: 0.5rem;
	font-size: 1rem;
	color: var(--gray-500);
}

.guides-topics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guides-topic-card {
	display: block;
	padding: 1.5rem;
	border-radius: 1rem;
	background: var(--white);
	border: 1px solid var(--gray-100);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.guides-topic-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
	border-color: rgba(183, 28, 28, 0.2);
}

.garchive-icon {
	width: 3.5rem;
	height: 3.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

.garchive-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.garchive-icon--emerald {
	background: #d1fae5;
	color: #059669;
}

.garchive-icon--blue {
	background: #dbeafe;
	color: #2563eb;
}

.garchive-icon--amber {
	background: #fef3c7;
	color: #d97706;
}

.garchive-icon--purple {
	background: #ede9fe;
	color: #7c3aed;
}

.garchive-icon--red {
	background: #fee2e2;
	color: #dc2626;
}

.garchive-icon--gray {
	background: #f3f4f6;
	color: #4b5563;
}

.garchive-icon--cyan {
	background: #cffafe;
	color: #0891b2;
}

.guides-topic-card h3 {
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: var(--miele-dark);
}

.guides-topic-card p {
	margin-top: 0.65rem;
	font-size: 0.93rem;
	line-height: 1.55;
	color: var(--gray-500);
}

.guides-topic-meta {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--gray-400);
}

.guides-topic-meta svg {
	width: 1.1rem;
	height: 1.1rem;
}

.guides-popular-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guides-popular-card {
	border-radius: 1rem;
	overflow: hidden;
	background: var(--gray-50);
	border: 1px solid var(--gray-100);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.guides-popular-card:hover {
	transform: translateY(-4px);
	border-color: rgba(183, 28, 28, 0.2);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.guides-popular-link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.guides-popular-media {
	aspect-ratio: 16 / 9;
	background: linear-gradient(140deg, rgba(183, 28, 28, 0.1), rgba(183, 28, 28, 0.04));
	display: flex;
	align-items: center;
	justify-content: center;
}

.guides-popular-media-icon {
	color: rgba(183, 28, 28, 0.45);
}

.guides-popular-media-icon svg {
	width: 3rem;
	height: 3rem;
}

.guides-popular-body {
	flex: 1;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
}

.guides-popular-badge {
	display: inline-block;
	align-self: flex-start;
	padding: 0.32rem 0.65rem;
	border: 1px solid var(--gray-200);
	border-radius: 999px;
	background: var(--white);
	color: var(--gray-500);
	font-size: 0.74rem;
	font-weight: 500;
	margin-bottom: 0.8rem;
}

.guides-popular-body h3 {
	font-family: var(--font-body);
	font-size: 1.15rem;
	line-height: 1.35;
	margin: 0;
	color: var(--miele-dark);
}

.guides-popular-body p {
	margin-top: 0.65rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--gray-500);
}

.guides-popular-meta {
	margin-top: auto;
	padding-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.76rem;
	color: var(--gray-400);
}

.guides-popular-meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.guides-popular-meta svg {
	width: 1rem;
	height: 1rem;
}

.guides-help {
	padding: 3rem 0 4rem;
	background: var(--miele-dark);
	color: var(--white);
}

.guides-help-header {
	text-align: center;
	margin-bottom: 3rem;
}

.guides-help-header h2 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.guides-help-header p {
	margin-top: 0.75rem;
	color: var(--gray-400);
}

.guides-help-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.guides-help-card {
	text-align: center;
}

.guides-help-number {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.guides-help-card h3 {
	color: var(--white);
	font-family: var(--font-body);
	font-size: 1.2rem;
	margin-bottom: 0.55rem;
}

.guides-help-card p {
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--gray-400);
}

.guides-help-card a {
	display: inline-flex;
	gap: 0.25rem;
	margin-top: 0.85rem;
	color: var(--miele-red);
	font-size: 0.86rem;
	font-weight: 500;
}

.guides-cta {
	border-radius: 1.5rem;
	padding: 2rem;
	text-align: center;
	color: var(--white);
	background: linear-gradient(145deg, var(--miele-red), var(--miele-accent));
}

.guides-cta h2 {
	color: var(--white);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.guides-cta p {
	margin: 0.9rem auto 0;
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.82);
}

.guides-cta-actions {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.guides-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.35rem;
	border-radius: 0.75rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.guides-cta-btn--light {
	background: var(--white);
	color: var(--miele-red);
}

.guides-cta-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

.guide-cat-hero {
	position: relative;
	padding: 3rem 0 4rem;
	overflow: hidden;
}

.guide-cat-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #fff 0%, var(--miele-warm) 48%, #f3f4f6 100%);
}

.guide-cat-hero-orb {
	position: absolute;
	top: 0;
	right: -2rem;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.05);
	border-radius: 999px;
	filter: blur(64px);
}

.guide-cat-hero-inner {
	position: relative;
	max-width: 48rem;
}

.guide-cat-hero-icon {
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
}

.guide-cat-hero-icon svg {
	width: 2rem;
	height: 2rem;
}

.guide-cat-hero h1 {
	font-size: clamp(2.25rem, 4vw, 3rem);
	line-height: 1.15;
}

.guide-cat-hero p {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
	max-width: 42rem;
}

.guide-cat-hero-meta {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.guide-cat-hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.guide-cat-hero-meta-item svg {
	width: 1rem;
	height: 1rem;
}

.guide-cat-list {
	padding: 3rem 0 4rem;
	background: var(--white);
}

.guide-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guide-cat-card {
	background: #fff;
	border: 1px solid #f0f2f5;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.guide-cat-card:hover {
	transform: translateY(-2px);
	border-color: rgba(183, 28, 28, 0.2);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.guide-cat-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.guide-cat-card-media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, rgba(183, 28, 28, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.guide-cat-card-media-icon {
	width: 3rem;
	height: 3rem;
	color: rgba(183, 28, 28, 0.45);
}

.guide-cat-card-media-icon svg {
	width: 100%;
	height: 100%;
}

.guide-cat-card-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	height: 100%;
}

.guide-cat-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
}

.guide-cat-chip {
	display: inline-flex;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: #f3f4f6;
	color: #4b5563;
	font-weight: 500;
}

.guide-cat-time {
	color: var(--gray-400);
}

.guide-cat-card h2 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.45;
	color: var(--miele-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.guide-cat-card p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gray-500);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.guide-cat-read {
	margin-top: 0.35rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: var(--miele-red);
	font-size: 0.875rem;
	font-weight: 500;
}

.guide-cat-empty {
	padding: 2.5rem 1rem;
	text-align: center;
}

.guide-cat-empty h3 {
	font-size: 1.2rem;
	color: var(--miele-dark);
}

.guide-cat-empty p {
	margin-top: 0.6rem;
	color: var(--gray-500);
}

.guide-cat-cta {
	padding: 3rem 0 4rem;
	background: #f9fafb;
	border-top: 1px solid #f0f2f5;
}

.guide-cat-cta-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	padding: 2rem 2.25rem;
	background: var(--miele-dark);
	border-radius: 1.5rem;
	color: #fff;
}

.guide-cat-cta-panel h2 {
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 2rem);
}

.guide-cat-cta-panel p {
	margin-top: 0.8rem;
	color: rgba(255, 255, 255, 0.75);
}

.guide-cat-cta-actions {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}

@media (max-width: 1024px) {
	.guides-main {
		padding-top: 0;
	}

	.guides-topics-grid,
	.guides-popular-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guides-help-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.guide-cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guide-posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guide-cat-cta-panel {
		grid-template-columns: 1fr;
	}

	.guide-cat-cta-actions {
		flex-direction: row;
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.guides-topics,
	.guides-popular,
	.guides-help,
	.guides-cta-wrap {
		padding: 2rem 0 2.5rem;
	}

	.guides-hero {
		padding: 3rem 0;
	}

	.guides-topics-grid,
	.guides-popular-grid {
		grid-template-columns: 1fr;
	}

	.guides-cta {
		padding: 1.5rem 1.25rem;
	}

	.guide-cat-grid {
		grid-template-columns: 1fr;
	}

	.guide-posts-grid {
		grid-template-columns: 1fr;
	}

	.guide-single-hero {
		padding: 2.35rem 0 1.55rem;
	}

	.guide-single-hero-shell {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.guide-single-hero-badges {
		gap: 0.55rem;
		margin-bottom: 1.15rem;
	}

	.guide-single-hero-badge {
		font-size: 0.8125rem;
		padding: 0.42rem 0.82rem;
	}

	.guide-single-title {
		font-size: clamp(2.1rem, 11vw, 2.7rem);
		line-height: 1.08;
		letter-spacing: -0.015em;
	}

	.guide-single-excerpt {
		margin-top: 1.15rem;
		font-size: 1.02rem;
		line-height: 1.58;
	}

	.guide-single-meta {
		margin-top: 1.15rem;
		font-size: 0.8125rem;
		gap: 0.55rem 0.95rem;
	}

	.guide-cat-cta-panel {
		padding: 1.5rem;
	}

	.guide-cat-cta-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.guide-reading-progress {
	position: fixed;
	top: 4rem;
	left: 0;
	right: 0;
	height: 0.25rem;
	background: rgba(229, 231, 235, 0.7);
	z-index: 45;
}

.admin-bar .guide-reading-progress {
	top: calc(4rem + 32px);
}

.guide-reading-progress-bar {
	height: 100%;
	width: 0;
	background: var(--miele-red);
	transition: width 0.12s linear;
}

.guide-single-page {
	background: var(--white);
}

.guide-single-hero {
	min-height: 0;
	padding: 3rem 0;
}

.guide-single-hero-shell {
	position: relative;
}

.guide-single-hero-inner {
	max-width: 48rem;
}

.guide-single-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.guide-single-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.9rem;
	background: var(--white);
	border: 1px solid #f3f4f6;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.guide-single-hero-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
	flex-shrink: 0;
}

.guide-single-hero-badge:hover {
	color: var(--miele-red);
	border-color: rgba(183, 28, 28, 0.25);
}

.guide-single-title {
	font-size: clamp(1.875rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0;
	color: var(--miele-dark);
}

.guide-single-excerpt {
	margin-top: 1.5rem;
	max-width: 42rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.guide-single-meta {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	color: var(--gray-500);
	font-size: 0.875rem;
}

.guide-single-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.guide-single-meta-item svg {
	width: 1rem;
	height: 1rem;
	color: var(--gray-500);
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.guide-single-hero {
		padding: 2.5rem 0;
	}

	.guide-single-hero-inner {
		max-width: 100%;
	}

	.guide-single-title {
		font-size: clamp(2rem, 7vw, 2.65rem);
		line-height: 1.08;
	}

	.guide-single-excerpt {
		margin-top: 1rem;
		font-size: 1.03rem;
		line-height: 1.55;
	}

	.guide-single-meta {
		margin-top: 1.1rem;
		gap: 0.55rem 1rem;
	}
}

.guide-single-main {
	padding-top: 3rem;
}

.guide-single-grid {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.guide-single-article {
	flex: 1;
	min-width: 0;
	max-width: 48rem;
}


.guide-single-sidebar {
	display: grid;
	gap: 1rem;
}

.guide-sidebar-card {
	background: linear-gradient(180deg, var(--gray-50), var(--white));
	border: 1px solid var(--gray-200);
	border-radius: 1.25rem;
	padding: 1.2rem;
}

.guide-sidebar-card h3 {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
}

.guide-sidebar-card--facts h3 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.guide-sidebar-card--facts h3 svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--miele-red);
	flex-shrink: 0;
}

.guide-single-toc {
	list-style: none;
	margin: 0.9rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.25rem;
}

.guide-single-toc a {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.65rem;
	font-size: 0.875rem;
	color: var(--gray-600);
	transition: color 0.2s ease, background-color 0.2s ease;
}

.guide-single-toc a:hover {
	background: rgba(183, 28, 28, 0.05);
	color: var(--miele-red);
}

.guide-single-toc li.is-sub a {
	padding-left: 1.15rem;
	font-size: 0.82rem;
	color: var(--gray-500);
	position: relative;
}

.guide-single-toc li.is-sub a::before {
	content: "";
	position: absolute;
	left: 0.55rem;
	top: 50%;
	width: 0.3rem;
	height: 1px;
	background: var(--gray-300);
	transform: translateY(-50%);
}

.guide-sidebar-card--toc {
	padding: 1.5rem;
	border-radius: 1.5rem;
	border-color: #f3f4f6;
	background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.guide-sidebar-card--toc h3 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--miele-dark);
	margin-bottom: 1rem;
}

.guide-sidebar-card--toc h3 svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--miele-red);
	flex-shrink: 0;
}

.guide-quick-facts {
	margin: 0.8rem 0 0;
	display: grid;
	gap: 0.6rem;
}

.guide-quick-facts div {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.875rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.guide-quick-facts div:last-child {
	border-bottom: 0;
}

.guide-quick-facts dt {
	color: var(--gray-500);
}

.guide-quick-facts dd {
	margin: 0;
	color: var(--miele-dark);
	font-weight: 600;
	text-align: right;
}

.guide-sidebar-card--cta {
	background: linear-gradient(135deg, var(--miele-red), var(--miele-accent));
	color: var(--white);
}

.guide-sidebar-card--cta h3,
.guide-sidebar-card--cta p {
	color: var(--white);
}

.guide-sidebar-card--cta p {
	margin-top: 0.55rem;
	color: rgba(255, 255, 255, 0.82);
}

.guide-sidebar-card--cta .btn {
	margin-top: 0.9rem;
}

.guide-single-related .guides-popular-body {
	padding: 1.4rem;
}

.guide-single-related .guides-popular-body h3 {
	font-size: 1.08rem;
}

.section.guide-single-feedback {
	background: var(--white);
	padding-top: 1.75rem;
	padding-bottom: 2.75rem;
}

.guide-single-feedback-shell {
	max-width: 56rem;
	text-align: center;
}

.guide-single-feedback-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--miele-red);
}

.guide-single-feedback-title {
	margin: 0.5rem 0 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--miele-dark);
	font-family: var(--font-display);
	font-weight: 600;
}

.guide-single-feedback-text {
	max-width: 34rem;
	margin: 1rem auto 0;
	color: var(--gray-600);
	line-height: 1.7;
}

.guide-single-feedback-actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.guide-single-feedback-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	border-radius: 999px;
	font-weight: 500;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.guide-single-feedback-btn svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.guide-single-feedback-btn:hover {
	transform: translateY(-1px);
}

.guide-single-feedback-btn--ghost {
	background: var(--white);
	border: 2px solid var(--gray-200);
	color: var(--miele-dark);
}

.guide-single-feedback-btn--ghost:hover {
	border-color: rgba(183, 28, 28, 0.45);
	color: var(--miele-red);
}

.guide-single-feedback-btn--primary {
	background: var(--miele-dark);
	border: 2px solid var(--miele-dark);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(209, 213, 219, 0.3);
}

.guide-single-feedback-btn--primary:hover {
	background: var(--miele-red);
	border-color: var(--miele-red);
	color: var(--white);
}

@media (min-width: 64rem) {
	.section.guide-single-feedback {
		padding-top: 2.25rem;
		padding-bottom: 3.5rem;
	}
}

.guides-taxonomy {
	padding: 3rem 0 4rem;
}

.guide-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guide-post-card {
	background: #fff;
	border: 1px solid #f0f2f5;
	border-radius: 1rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.guide-post-card:hover {
	transform: translateY(-2px);
	border-color: rgba(183, 28, 28, 0.2);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.guide-post-card-link {
	display: block;
	padding: 1.25rem;
	color: inherit;
}

.guide-post-card h2 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.45;
	color: var(--miele-dark);
}

.guide-post-card p {
	margin-top: 0.6rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--gray-500);
}
/* Section End: Guides */

/* Section Start: Footer */
.site-footer {
	background: #f8fafc;
	border-top: 1px solid var(--gray-200);
}

.footer-inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.footer-brand {
	grid-column: span 2;
}

.brand-footer {
	margin-bottom: 0.7rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}

.brand-footer:hover .brand-mark {
	transform: none;
}

.footer-text {
	max-width: 20rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.footer-title {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--gray-800);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}

.footer-links a {
	font-size: 0.875rem;
	color: var(--gray-600);
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--miele-red);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-200);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
}

.footer-note {
	font-size: 0.75rem;
	color: var(--gray-400);
}
/* Section End: Footer */

/* Section Start: Motion Utilities */
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
	animation-delay: 0.08s;
}

.delay-2 {
	animation-delay: 0.16s;
}

.delay-3 {
	animation-delay: 0.24s;
}

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

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}
/* Section End: Motion Utilities */

/* Section Start: Error Codes Archive */
.ec-main {
	padding-top: 0;
	background: var(--miele-warm);
	position: relative;
}

.ec-main::before {
	content: "";
	position: absolute;
	top: -4rem;
	left: 0;
	right: 0;
	height: 4rem;
	background: #f9fafb;
	pointer-events: none;
}

.ec-main .section {
	padding: 4rem 0;
}

.ec-hero {
	position: relative;
	padding: 4rem 0;
}

.ec-hero-shell {
	position: relative;
}

.ec-hero-copy {
	max-width: 48rem;
}

.ec-hero-badge {
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.ec-hero-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
}

.ec-hero-copy h1 {
	margin: 1rem 0 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	line-height: 1.1;
	color: var(--miele-dark);
}

.ec-hero-copy p {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.ec-hero-orb {
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
}

.ec-hero-orb--right {
	top: 0;
	right: -5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(183, 28, 28, 0.08);
	filter: blur(3.25rem);
}

.ec-hero-orb--left {
	left: 15%;
	bottom: -4rem;
	width: 14rem;
	height: 14rem;
	background: rgba(156, 163, 175, 0.35);
	filter: blur(2.5rem);
}

.ec-search {
	margin-top: 2.5rem;
	max-width: 36rem;
}

.ec-search-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.5rem 0.5rem 0.35rem;
	background: var(--white);
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
	overflow: hidden;
}

.ec-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--gray-400);
	padding: 1rem 0.75rem 1rem 1rem;
	border-right: 1px solid #f3f4f6;
}

.ec-search-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.ec-search input {
	border: 0;
	background: transparent;
	font-size: 1.125rem;
	font-family: "JetBrains Mono", monospace;
	color: var(--miele-dark);
	padding: 1rem 0.75rem;
}

.ec-search input:focus {
	outline: none;
}

.ec-search-btn {
	margin: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 0.75rem;
}

.ec-search p {
	margin-top: 0.65rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	padding-left: 0.25rem;
}

.ec-steps {
	border-top: 1px solid #eceff3;
	border-bottom: 1px solid #eceff3;
}

.ec-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.ec-step-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 1rem;
	background: rgba(249, 250, 251, 0.9);
}

.ec-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--miele-red);
	background: rgba(183, 28, 28, 0.12);
	flex-shrink: 0;
}

.ec-step-num--amber { color: #d97706; background: #fef3c7; }
.ec-step-num--green { color: #059669; background: #dcfce7; }
.ec-step-num--blue { color: #2563eb; background: #dbeafe; }

.ec-step-card h3 {
	margin: 0;
	font-size: 1rem;
	color: var(--miele-dark);
}

.ec-step-card p {
	margin: 0.35rem 0 0;
	font-size: 0.9rem;
	color: var(--gray-500);
}

.ec-appliance-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.ec-appliance-card {
	display: block;
	padding: 1.75rem;
	background: #fff;
	border: 1px solid #eceff3;
	border-radius: 1.5rem;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ec-appliance-card:hover {
	transform: translateY(-0.35rem);
	box-shadow: var(--shadow-card);
	border-color: rgba(183, 28, 28, 0.18);
}

.ec-appliance-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.ec-appliance-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	color: var(--miele-red);
	background: rgba(183, 28, 28, 0.1);
	border-radius: 0.9rem;
	transition: all 0.3s ease;
}

.ec-appliance-card:hover .ec-appliance-icon {
	background: var(--miele-red);
	color: var(--white);
	transform: scale(1.05);
}

.ec-appliance-icon svg {
	width: 1.7rem;
	height: 1.7rem;
}

.ec-appliance-count {
	padding: 0.3rem 0.55rem;
	border-radius: 9999px;
	background: #f3f4f6;
	font-size: 0.75rem;
	font-weight: 600;
	color: #4b5563;
}

.ec-appliance-card h3 {
	margin: 0;
	font-size: 1.35rem;
	font-family: var(--font-display);
	color: var(--miele-dark);
}

.ec-appliance-card p {
	margin: 0.45rem 0 0;
	font-size: 0.9rem;
	color: var(--gray-500);
}

.ec-appliance-foot {
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid #eceff3;
	font-size: 0.8rem;
	color: var(--gray-400);
}

.ec-appliance-foot strong {
	margin-left: 0.5rem;
	font-family: "JetBrains Mono", monospace;
	color: var(--miele-red);
}

.ec-popular-list {
	display: grid;
	gap: 0.7rem;
}

.ec-popular-item {
	display: grid;
	grid-template-columns: 5rem 1fr auto auto auto;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	background: #f9fafb;
	border: 1px solid transparent;
	color: inherit;
}

.ec-popular-item:hover {
	background: rgba(183, 28, 28, 0.05);
	border-color: rgba(183, 28, 28, 0.2);
}

.ec-popular-code {
	font-family: "JetBrains Mono", monospace;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--miele-red);
}

.ec-popular-meaning {
	font-weight: 500;
	color: var(--miele-dark);
}

.ec-popular-term {
	font-size: 0.875rem;
	color: var(--gray-500);
}

.ec-popular-arrow {
	color: var(--gray-400);
}

.ec-severity-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
}

.ec-severity-dot {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: currentColor;
}

.ec-severity-badge--low {
	background: #dcfce7;
	color: #15803d;
}

.ec-severity-badge--medium {
	background: #fef3c7;
	color: #b45309;
}

.ec-severity-badge--high {
	background: #fee2e2;
	color: #b91c1c;
}

.ec-directory {
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.ec-filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding: 0.85rem 1rem;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	background: #fff;
}

.ec-filter-label,
.ec-sort-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-500);
}

.ec-sort-label {
	margin-left: auto;
}

.ec-filter-select {
	padding: 0.55rem 0.85rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.625rem;
	background: #f9fafb;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-700);
}

.ec-filter-select:focus {
	outline: none;
	border-color: rgba(183, 28, 28, 0.45);
}

.ec-sort-buttons {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ec-sort-btn {
	padding: 0.5rem 0.85rem;
	border: 1px solid transparent;
	border-radius: 0.625rem;
	background: #f3f4f6;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gray-600);
}

.ec-sort-btn.is-active {
	background: var(--miele-dark);
	color: var(--white);
}

.ec-directory-table {
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	background: #fff;
	overflow: hidden;
}

.ec-directory-head,
.ec-directory-row {
	display: grid;
	grid-template-columns: 1.2fr 1.6fr 4fr 1.2fr 1.2fr;
	gap: 1rem;
	align-items: center;
	padding: 0.9rem 1.2rem;
}

.ec-directory-head {
	background: #f8fafc;
	border-bottom: 1px solid #e5e7eb;
	font-size: 0.82rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ec-directory-row {
	border-top: 1px solid #f1f5f9;
	color: inherit;
}

.ec-directory-row:hover {
	background: rgba(183, 28, 28, 0.05);
}

.ec-directory-code {
	font-family: "JetBrains Mono", monospace;
	font-weight: 700;
	color: var(--miele-red);
}

.ec-directory-link {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--miele-red);
}

.ec-empty {
	margin: 0;
	padding: 1rem 1.2rem;
	color: var(--gray-500);
}

.ec-load-more-wrap {
	margin-top: 1.5rem;
	text-align: center;
}

.ec-load-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background: var(--white);
	font-weight: 600;
	color: var(--miele-dark);
}

.ec-load-more:hover {
	border-color: rgba(183, 28, 28, 0.5);
	color: var(--miele-red);
}

.ec-safety-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid #fecaca;
	background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.ec-safety-head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.ec-safety-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: var(--miele-red);
	color: var(--white);
	flex-shrink: 0;
}

.ec-safety-icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.ec-safety-card h2 {
	margin: 0;
	font-size: 1.7rem;
	color: var(--miele-dark);
}

.ec-safety-card p {
	margin: 0.55rem 0 0;
	color: var(--gray-600);
	max-width: 40rem;
}

.ec-related-guides .guide-card {
	padding: 1.5rem;
	border-radius: 1rem;
}

.ec-related-guides .guide-body {
	padding: 0;
}

.ec-related-guides .guide-body p {
	margin-top: 0.5rem;
}

.ec-related-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: 0.75rem;
	background: rgba(183, 28, 28, 0.1);
	color: var(--miele-red);
}

.ec-related-icon svg {
	width: 1.3rem;
	height: 1.3rem;
}

.ec-soft-cta-inner {
	text-align: center;
}

.ec-soft-cta-inner p {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	color: rgba(255, 255, 255, 0.76);
}

.ec-soft-cta-inner .btn {
	margin-top: 1.4rem;
}

.ec-severity-high {
	background-color: rgba(254, 242, 242, 0.8);
}
/* Section End: Error Codes Archive */

/* Section Start: Responsive Overrides */
@media (min-width: 64rem) {
	.container {
		padding: 0 2rem;
	}

	.site-content {
		/*padding-top: 5rem;*/
	}

	.admin-bar .site-content {
		padding-top: calc(5rem + 32px);
	}

	.section {
		padding: 8rem 0;
	}

	.section-hero {
		padding: 0;
	}

	/* Keep dedicated spacing for guide single hero on mobile. */
	.guide-single-page .section-hero.guide-single-hero {
		padding: 2.35rem 0 1.55rem;
	}

	.guide-single-hero {
		padding: 5rem 0;
	}

	.header-inner {
		height: 5rem;
	}

	.nav-desktop {
		display: flex;
	}

	.nav-toggle,
	.nav-mobile {
		display: none !important;
	}

	.section-header--split {
		flex-direction: row;
		align-items: flex-end;
	}

	.footer-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.footer-grid > div {
		min-width: 0;
	}

	.footer-inner {
		padding-top: 2rem;
		padding-bottom: 1.75rem;
	}

	.footer-bottom {
		margin-top: 2rem;
		padding-top: 1.25rem;
		gap: 1rem;
	}

	.error-codes-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.error-codes {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}

	.trust h2 {
		font-size: 2.25rem;
	}

	.pro-service-card {
		padding: 3rem;
	}

	.how-it-works .steps-grid {
		gap: 3rem;
	}

	.how-it-works .step-card {
		padding: 2.5rem;
	}

	.hero-text {
		font-size: 1.25rem;
	}

	.guides-hero {
		padding: 3rem 0 5rem;
	}

	.hero-title {
		font-size: 3.75rem;
		line-height: 1.1;
	}

	.safety-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.safety-card {
		padding: 3rem;
	}

	.ec-main .section {
		padding: 5rem 0;
	}

	.guide-single-grid {
		flex-direction: row;
		align-items: flex-start;
		gap: 3rem;
	}

	.guide-single-sidebar {
		width: 20rem;
		flex-shrink: 0;
		position: sticky;
		top: 6rem;
	}

	.ec-hero {
		padding: 6rem 0;
	}

	.guides-main::before,
	.ec-main::before {
		top: -5rem;
		height: 5rem;
	}
}

@media (max-width: 39.98rem) {
	.site-header .brand-name {
		display: none;
	}
}

@media (min-width: 40rem) and (max-width: 63.98rem) {
	.hero-title {
		font-size: 3rem;
		line-height: 1.1;
	}
}

@media (min-width: 48rem) {
	.trust-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.footer-bottom {
		flex-direction: row;
		text-align: left;
	}
}

@media (max-width: 63.98rem) {
	.error-codes-grid,
	.safety-grid {
		grid-template-columns: 1fr;
	}

	.safety-left {
		order: 2;
	}

	.safety-right {
		order: 1;
	}

	.ec-steps-grid,
	.ec-appliance-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ec-popular-item {
		grid-template-columns: 4.5rem 1fr auto auto;
	}

	.ec-popular-term {
		display: none;
	}

	.ec-sort-label {
		margin-left: 0;
	}

	.ec-filter-bar {
		gap: 0.6rem;
	}

	.ec-sort-buttons {
		width: 100%;
	}

	.ec-directory-head {
		display: none;
	}

	.ec-directory-row {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}
}

@media (min-width: 48rem) and (max-width: 63.98rem) {
	.footer-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.footer-brand {
		grid-column: span 2;
	}

	.ec-hero {
		padding-top: 3rem;
		padding-bottom: 4rem;
	}

	.ec-search-wrap {
		grid-template-columns: auto 1fr;
	}

	.ec-search .btn {
		grid-column: 1 / -1;
		width: 100%;
	}

	.ec-safety-card {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Section End: Responsive Overrides */

@media (max-width: 47.98rem) {
	.guide-single-main {
		padding-top: 0rem;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .site-content {
		/*padding-top: calc(4rem + 46px);*/
	}

	.container {
		padding: 0 1.5rem;
	}

	.header-inner {
		height: 3.875rem;
	}

	.brand {
		gap: 0.625rem;
	}

	/* On phone widths keep header compact to avoid overflow. */
	.site-header .brand-name {
		display: none;
	}

	.nav-toggle {
		width: 2.5rem;
		height: 2.5rem;
	}

	.nav-toggle svg {
		width: 1.375rem;
		height: 1.375rem;
	}

	.guides-main .container,
	.guides-taxonomy .container {
		padding: 0 1rem;
	}

	.guide-single-page .container {
		padding: 0 1.5rem;
	}

	.admin-bar .guide-reading-progress {
		top: calc(4rem + 46px);
	}

	.section {
		padding: 4rem 0;
	}

	.section-hero {
		padding: 0;
	}

	.hero-text {
		font-size: 1rem;
	}

	.hero-shell {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.hero-actions {
		margin-top: 2rem;
		gap: 0.75rem;
	}

	.hero-btn {
		padding: 0.9rem 1.25rem;
	}

	.nav-mobile-inner {
		padding: 0.9rem 1.5rem 1.2rem;
	}

	.footer-inner {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}

	.footer-grid {
		gap: 1.5rem 1.25rem;
	}

	.footer-title {
		margin-bottom: 0.75rem;
	}

	.footer-links {
		gap: 0.6rem;
	}

	.footer-bottom {
		margin-top: 2rem;
		padding-top: 1.25rem;
		align-items: flex-start;
		gap: 0.35rem;
		text-align: left;
	}

	.footer-note {
		font-size: 0.8rem;
		color: var(--gray-500);
	}

	.footer-brand {
		grid-column: span 2;
	}
}

/* Guide Single: final layout guards (keep after all responsive overrides). */
.guide-single-page .section.guide-single-main {
	padding-top: 3rem;
}

.guide-single-page .guide-single-hero {
	padding: 3rem 0;
}

.guide-single-page .guide-single-hero-shell {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

@media (min-width: 64rem) {
	.guide-single-page .section.guide-single-main {
		padding-top: 3rem;
		padding-bottom: 4.5rem;
	}

	.guide-single-page .guide-single-hero.section.section-hero.grain {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.guide-single-page .guide-single-hero-shell {
		padding-top: 0.35rem;
		padding-bottom: 1.25rem;
	}
}

@media (max-width: 47.98rem) {
	.guide-single-page .section.guide-single-main {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}

	.guide-single-page .section-hero.guide-single-hero {
		padding: 2.35rem 0 1.55rem;
	}

	.guide-single-page .guide-single-hero-shell {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}
