/*
 * Schneelast / Snow-load Page Styles.
 *
 * 5 Sektionen:
 *  1) Lead-Intro (zentriert, schmal)
 *  2) Stat-Karten (3 Daten-Cards mit grossen Zahlen)
 *  3) Saeulen-Karten (3 Cards mit Step-Nummer)
 *  4) Schneelastzonen-Karte (Bild + Zonenliste, 2-Spalter)
 *  5) CTA-Block (snowcontrol-Loesung + Buttons)
 *
 * Visuell als "Information-Architektur"-Layout aufgebaut: ruhige
 * Section-Wechsel (--alt / default), klare Hierarchie, viel Weissraum.
 * DE + EN nutzen denselben Markup-Baum - 1:1 deckungsgleich.
 */

/* ------------------------------------------------------------------ */
/* Gemeinsame Section-Bauteile (auf der Schneelast-Seite ausreichend)  */
/* ------------------------------------------------------------------ */

.schneelast-page .section__title {
	font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
	margin: 0 auto 0.75rem;
	max-width: 38rem;
	text-align: center;
	color: var(--ink, #08213b);
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.schneelast-page .section__lead {
	margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
	max-width: 50rem;
	text-align: center;
	color: var(--ink-700, #314357);
	line-height: 1.6;
}

.schneelast-page .container--narrow {
	max-width: 780px;
}

/* ------------------------------------------------------------------ */
/* 1) Lead-Intro - Originaltext der Live-Seite (DSGVO-/Inhalts-Hoheit  */
/*    beim Auftraggeber, daher 1:1 statt paraphrasiert).               */
/* ------------------------------------------------------------------ */

.schneelast-intro {
	text-align: center;
}

.schneelast-intro__eyebrow {
	margin: 0 auto 0.5rem;
}

.schneelast-intro__title {
	margin: 0 auto 1.25rem;
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--ink, #08213b);
	max-width: 22ch;
	text-wrap: balance;
}

.schneelast-intro__body {
	margin: 0 auto 1rem;
	max-width: 64ch;
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
	line-height: 1.7;
	color: var(--ink-700, #314357);
	text-wrap: pretty;
}

.schneelast-intro__body:last-child {
	margin-bottom: 0;
}

/* Page-Hero-Lead als hervorgehobenes Statement.
 * Live-Header-Statement "Unterschaetzen Sie niemals das Gewicht ...".
 * Wird als Zitat ausgezeichnet: grosses oeffnendes "67 und kleineres
 * schliessendes "201D in Brand-Gruen. Die typografischen Quotes setzen
 * wir mit ::before/::after, damit der eigentliche Text barrierefrei
 * unveraendert bleibt (Screenreader bekommen die Quotes nicht
 * vorgelesen - via aria-hidden auf dem Pseudoelement geht in CSS
 * nicht direkt, aber generated content wird von modernen
 * Screenreadern ohnehin in der Regel ausgelassen). */
.page-hero__lead--quote {
	position: relative;
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
	line-height: 1.4;
	max-width: 38ch;
	letter-spacing: 0.005em;
	padding: 0.2em 1.5rem 0.2em 2.4rem;
	color: inherit;
}

.page-hero__lead--quote::before,
.page-hero__lead--quote::after {
	position: absolute;
	color: var(--brand-400, #5ec27b);
	font-family: Georgia, "Times New Roman", serif;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

/* Oeffnendes Anfuehrungszeichen oben-links, gross + dezent angehoben. */
.page-hero__lead--quote::before {
	content: "\201C"; /* " */
	top: -0.05em;
	left: 0;
	font-size: 3.2em;
}

/* Schliessendes Anfuehrungszeichen unten-rechts, etwas kleiner. */
.page-hero__lead--quote::after {
	content: "\201D"; /* " */
	right: 0;
	bottom: -0.05em;
	font-size: 2.4em;
}

/* Sehr schmale Viewports: Quotes kleiner + weniger Padding,
   damit das Statement keinen visuellen Bruch erzwingt. */
@media (max-width: 480px) {
	.page-hero__lead--quote {
		padding: 0.2em 1.1rem 0.2em 1.8rem;
	}
	.page-hero__lead--quote::before { font-size: 2.6em; }
	.page-hero__lead--quote::after  { font-size: 2em; }
}

/* ------------------------------------------------------------------ */
/* 2) Daten-Karten (10 kg / 40 kg / x mehrfach)                        */
/* ------------------------------------------------------------------ */

.schneelast-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	grid-template-columns: 1fr;
}

@media (min-width: 600px) {
	.schneelast-stats {
		grid-template-columns: repeat(3, 1fr);
	}
}

.schneelast-stat {
	background: var(--white, #fff);
	border: 1px solid var(--ink-200, #e5e9ee);
	border-radius: var(--radius-lg, 14px);
	padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	box-shadow:
		0 1px 2px rgba(15, 23, 32, 0.04),
		0 12px 24px -18px rgba(15, 23, 32, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schneelast-stat:hover {
	transform: translateY(-2px);
	box-shadow:
		0 1px 2px rgba(15, 23, 32, 0.06),
		0 18px 38px -20px rgba(15, 23, 32, 0.28);
}

.schneelast-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--brand-50, #ebf8f0);
	color: var(--brand-700, #1c7430);
	margin-bottom: 0.25rem;
}

.schneelast-stat__icon svg {
	width: 28px;
	height: 28px;
}

.schneelast-stat--mid .schneelast-stat__icon {
	background: rgba(255, 153, 0, 0.12);
	color: #b35900;
}

.schneelast-stat--max .schneelast-stat__icon {
	background: rgba(216, 36, 36, 0.10);
	color: #b21f1f;
}

.schneelast-stat__value {
	margin: 0;
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	color: var(--ink, #08213b);
	font-weight: 800;
	line-height: 1;
}

.schneelast-stat__num {
	font-size: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);
	letter-spacing: -0.02em;
}

.schneelast-stat__unit {
	font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
	font-weight: 600;
	color: var(--ink-700, #314357);
}

.schneelast-stat__label {
	margin: 0.25rem 0 0;
	font-size: 1rem;
	color: var(--ink, #08213b);
}

.schneelast-stat__hint {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ink-600, #4b5b6e);
}

/* ------------------------------------------------------------------ */
/* 3) Saeulen-Karten (Step 01 / 02 / 03)                               */
/* ------------------------------------------------------------------ */

.schneelast-pillar-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.schneelast-pillar-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.schneelast-pillar {
	position: relative;
	background: var(--white, #fff);
	border: 1px solid var(--ink-200, #e5e9ee);
	border-radius: var(--radius-lg, 14px);
	padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
	box-shadow:
		0 1px 2px rgba(15, 23, 32, 0.04),
		0 12px 24px -18px rgba(15, 23, 32, 0.18);
}

.schneelast-pillar__step {
	position: absolute;
	top: -0.5rem;
	right: 1rem;
	font-size: 3rem;
	font-weight: 800;
	color: var(--brand-100, #d6f0df);
	line-height: 1;
	letter-spacing: -0.02em;
	pointer-events: none;
}

.schneelast-pillar__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
	color: var(--ink, #08213b);
	padding-right: 2.5rem;
	line-height: 1.3;
}

.schneelast-pillar__body {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--ink-700, #314357);
}

.schneelast-pillar__body strong {
	color: var(--ink, #08213b);
}

/* ------------------------------------------------------------------ */
/* 4) Schneelastzonen-Karte (2-Spalter, Bild rechts)                   */
/* ------------------------------------------------------------------ */

.schneelast-map__grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	grid-template-columns: 1fr;
	align-items: center;
}

@media (min-width: 840px) {
	.schneelast-map__grid {
		grid-template-columns: 1fr 1.1fr;
	}
}

.schneelast-map__copy h2 {
	margin: 0.25rem 0 0.75rem;
	font-size: clamp(1.4rem, 1.2rem + 0.7vw, 1.75rem);
	line-height: 1.2;
	color: var(--ink, #08213b);
}

.schneelast-map__copy p {
	margin: 0 0 1.25rem;
	color: var(--ink-700, #314357);
	line-height: 1.7;
}

.schneelast-map__zones {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.schneelast-map__zones li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--ink-800, #1e2e42);
	font-size: 0.95rem;
}

.schneelast-zone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.2rem;
	height: 2.2rem;
	padding: 0 0.4rem;
	border-radius: 50%;
	background: var(--ink-100, #eef0f3);
	color: var(--ink, #08213b);
	font-weight: 700;
	font-size: 0.85rem;
	border: 2px solid transparent;
	flex-shrink: 0;
}

.schneelast-zone--1 {
	background: #e8f4ff;
	color: #0a4b8c;
}
.schneelast-zone--1a {
	background: #cfe7ff;
	color: #0a4b8c;
}
.schneelast-zone--2 {
	background: #ffe8b8;
	color: #7a5500;
}
.schneelast-zone--2a {
	background: #ffd28b;
	color: #7a5500;
}
.schneelast-zone--3 {
	background: #f6c0c0;
	color: #8a1a1a;
}

.schneelast-map__figure {
	margin: 0;
	background: var(--white, #fff);
	border-radius: var(--radius-lg, 14px);
	padding: 1rem;
	border: 1px solid var(--ink-200, #e5e9ee);
	box-shadow:
		0 1px 2px rgba(15, 23, 32, 0.04),
		0 14px 32px -18px rgba(15, 23, 32, 0.2);
}

.schneelast-map__figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-md, 0.5rem);
}

.schneelast-map__figure figcaption {
	margin-top: 0.75rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--ink-600, #4b5b6e);
}

/* ------------------------------------------------------------------ */
/* 5) CTA-Block (snowcontrol-Loesung)                                  */
/* ------------------------------------------------------------------ */

.schneelast-cta__inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	padding: clamp(1.75rem, 3.5vw, 2.75rem);
	background: linear-gradient(135deg, var(--brand-50, #ebf8f0), #fff);
	border: 1px solid var(--brand-100, #d6f0df);
	border-radius: var(--radius-lg, 14px);
}

.schneelast-cta__inner h2 {
	margin: 0.5rem 0 1rem;
	font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem);
	line-height: 1.25;
	color: var(--ink, #08213b);
}

.schneelast-cta__inner p {
	margin: 0 auto 1.5rem;
	max-width: 55ch;
	color: var(--ink-700, #314357);
	line-height: 1.7;
}

.schneelast-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}
