/* ============================================================
   WINDSPORT BIKES – Design-System
   Palette:
   - Ostsee-Petrol  #07333C  (dunkler Grundton, Hero/Footer)
   - Fahrwasser     #009DB4  (Marken-Teal, Akzente/Buttons)
   - Gischt         #7CD9E8  (helles Teal, Hover/Details)
   - Kreide         #F7FAFB  (heller Seitenhintergrund)
   - Treibholz      #1E2726  (Text)
   Typo: Archivo (Display, breit & laut) + Karla (Fließtext)
   ============================================================ */

:root {
	--petrol:  #07333C;
	--teal:    #009DB4;
	--gischt:  #7CD9E8;
	--kreide:  #F7FAFB;
	--tint:    #E4F2F5;
	--ink:     #1E2726;
	--ink-soft:#4A5A57;

	--font-display: "Archivo", "Arial Black", sans-serif;
	--font-body: "Karla", "Segoe UI", sans-serif;

	--radius: 18px;
	--container: 1180px;
	--shadow: 0 14px 40px rgba(11, 61, 58, .12);
	--ease: cubic-bezier(.22, .8, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--kreide);
	line-height: 1.65;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }

.wsb-container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- Typografie ---------- */
h1, h2, h3, .wsb-h2 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.01em;
	color: var(--petrol);
}
h2, .wsb-h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: .5em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-bottom: .4em; }

.wsb-eyebrow {
	font-family: var(--font-display);
	font-stretch: 125%;
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 14px;
}
.wsb-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.wsb-hint { font-size: .8rem; color: var(--ink-soft); margin-top: 10px; opacity: .8; }

/* ---------- Buttons ---------- */
.wsb-btn {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--teal); color: #fff;
	font-family: var(--font-display); font-weight: 700; font-size: .95rem;
	letter-spacing: .04em; text-transform: uppercase;
	padding: 15px 26px; border-radius: 999px;
	transition: transform .25s var(--ease), background .25s, box-shadow .25s;
	box-shadow: 0 8px 22px rgba(0, 157, 180, .35);
}
.wsb-btn:hover { transform: translateY(-2px); background: #007D90; }
.wsb-btn--ghost, .wsb-btn--ghost-dark {
	background: transparent; box-shadow: none;
	border: 2px solid rgba(255,255,255,.6); color: #fff;
}
.wsb-btn--ghost:hover, .wsb-btn--ghost-dark:hover { background: rgba(255,255,255,.12); }
.wsb-btn--ghost-dark { border-color: var(--petrol); color: var(--petrol); }
.wsb-btn--ghost-dark:hover { background: rgba(7,51,60,.08); }
.wsb-btn--light { background: #fff; color: var(--petrol); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.wsb-btn--light:hover { background: var(--gischt); }
.wsb-btn--small { padding: 10px 20px; font-size: .8rem; }

.wsb-textlink {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em; font-size: .88rem;
	color: var(--petrol); border-bottom: 2px solid var(--teal);
	padding-bottom: 3px; transition: gap .25s var(--ease), color .25s;
}
.wsb-textlink:hover { gap: 14px; color: var(--teal); }

/* ---------- Header ---------- */
.wsb-skip {
	position: absolute; left: -999px; top: 0; background: var(--petrol);
	color: #fff; padding: 10px 18px; z-index: 200;
}
.wsb-skip:focus { left: 12px; top: 12px; }

.wsb-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(247, 249, 248, .88);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(7,51,60,.08);
	transition: box-shadow .3s;
}
.wsb-header.is-scrolled { box-shadow: 0 6px 24px rgba(7,51,60,.10); }
.wsb-header__inner {
	display: flex; align-items: center; gap: 28px;
	padding-block: 14px;
}
.wsb-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--petrol); }
.wsb-logo__img { height: 52px; width: auto; }
.wsb-logo .custom-logo { height: 52px; width: auto; }

/* Sprachumschalter */
.wsb-lang {
	display: inline-flex; gap: 2px; margin-left: auto;
	background: var(--tint); border-radius: 999px; padding: 4px;
}
.wsb-lang a {
	font-family: var(--font-display); font-weight: 700; font-size: .78rem;
	letter-spacing: .06em; color: var(--ink-soft);
	padding: 6px 12px; border-radius: 999px; transition: background .2s, color .2s;
}
.wsb-lang a:hover { color: var(--petrol); }
.wsb-lang a.is-active { background: var(--teal); color: #fff; }
.wsb-nav { display: flex; gap: 26px; margin-left: auto; }
.wsb-nav + .wsb-lang, .wsb-lang { margin-left: 18px; }

.wsb-logo__text {
	font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
	letter-spacing: .06em; font-size: 1.05rem; color: var(--petrol);
}
.wsb-logo__text em { font-style: normal; color: var(--teal); }

.wsb-nav { display: flex; gap: 26px; margin-left: auto; }
.wsb-nav a {
	font-weight: 700; font-size: .95rem; color: var(--ink);
	position: relative; padding-block: 6px;
}
.wsb-nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 100%; height: 2px; background: var(--teal);
	transform: scaleX(0); transform-origin: left;
	transition: transform .25s var(--ease);
}
.wsb-nav a:hover::after, .wsb-nav a[aria-current="page"]::after { transform: scaleX(1); }

.wsb-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.wsb-burger span {
	display: block; width: 26px; height: 3px; background: var(--petrol);
	margin: 5px 0; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s;
}
.wsb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.wsb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.wsb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.wsb-hero {
	position: relative;
	background: linear-gradient(160deg, var(--petrol) 0%, #08404C 55%, #0A5666 100%);
	color: #fff;
	overflow: hidden;
	display: flex; flex-direction: column;
	min-height: min(92vh, 880px);
}
.wsb-hero__bg { position: absolute; inset: 0; }
.wsb-hero__wind { width: 100%; height: 100%; }
.windline {
	stroke: rgba(255,255,255,.16); stroke-width: 3;
	stroke-dasharray: 60 340;
	animation: windflow 9s linear infinite;
}
.windline.w2 { animation-duration: 12s; animation-delay: -3s; stroke: rgba(124,217,232,.25); }
.windline.w3 { animation-duration: 10s; animation-delay: -6s; }
.windline.w4 { animation-duration: 14s; animation-delay: -2s; stroke: rgba(124,217,232,.18); }
@keyframes windflow { to { stroke-dashoffset: -400; } }

.wsb-hero__inner {
	position: relative; z-index: 2;
	flex: 1; display: flex; flex-direction: column; justify-content: center;
	padding-block: 90px 60px;
}
.wsb-hero__eyebrow { color: var(--gischt); }
.wsb-hero__title {
	font-family: var(--font-display); font-stretch: 125%;
	font-weight: 900; color: #fff;
	font-size: clamp(2.4rem, 7vw, 5.4rem);
	line-height: .98; text-transform: uppercase;
	margin-bottom: 26px;
}
.wsb-hero__title .line { display: block; overflow: hidden; }
.wsb-hero__title .line > span {
	display: inline-block;
	transform: translateY(110%);
	animation: heroline .9s var(--ease) forwards;
}
.wsb-hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.wsb-hero__title .line:nth-child(3) > span { animation-delay: .24s; }
.wsb-hero__title .line--accent > span { color: var(--gischt); }
@keyframes heroline { to { transform: translateY(0); } }

.wsb-hero__sub {
	max-width: 56ch; font-size: 1.15rem; color: rgba(255,255,255,.85);
	margin-bottom: 34px;
	opacity: 0; animation: fadeup .8s var(--ease) .45s forwards;
}
.wsb-hero__actions {
	display: flex; gap: 16px; flex-wrap: wrap;
	opacity: 0; animation: fadeup .8s var(--ease) .6s forwards;
}
.wsb-hero__actions .wsb-btn--ghost-dark { border-color: rgba(255,255,255,.6); color: #fff; }
.wsb-hero__actions .wsb-btn--ghost-dark:hover { background: rgba(255,255,255,.12); }
@keyframes fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Marken-Marquee ---------- */
.wsb-marquee {
	position: relative; z-index: 2;
	border-top: 1px solid rgba(255,255,255,.18);
	background: rgba(0,0,0,.14);
	overflow: hidden; padding-block: 18px;
}
.wsb-marquee__track {
	display: flex; gap: 42px; width: max-content;
	animation: marquee 28s linear infinite;
}
.wsb-marquee:hover .wsb-marquee__track { animation-play-state: paused; }
.wsb-marquee__item {
	font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
	font-size: 1.25rem; letter-spacing: .12em; text-transform: uppercase;
	color: rgba(255,255,255,.85); white-space: nowrap;
}
.wsb-marquee__dot { color: var(--gischt); font-size: .6rem; align-self: center; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ---------- Sektionen ---------- */
.wsb-section { padding-block: 90px; }
.wsb-section--tint { background: var(--tint); }

/* ---------- Inselrunde / Route ---------- */
.wsb-route { position: relative; margin-top: 50px; }
.wsb-route__line {
	position: absolute; top: 42px; left: 0; width: 100%; height: 120px;
	pointer-events: none;
}
.wsb-route__line path {
	stroke: var(--teal); stroke-width: 3; stroke-dasharray: 10 12;
	opacity: .45;
	animation: routedash 30s linear infinite;
}
@keyframes routedash { to { stroke-dashoffset: -440; } }

.wsb-route__stops {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.wsb-stop {
	background: #fff; border-radius: var(--radius);
	padding: 26px 20px 22px; color: var(--ink);
	box-shadow: var(--shadow);
	display: flex; flex-direction: column; gap: 10px;
	border-top: 4px solid transparent;
	transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.wsb-stop:hover {
	transform: translateY(-8px);
	border-top-color: var(--teal);
	box-shadow: 0 22px 50px rgba(7,51,60,.18);
}
.wsb-stop__num {
	font-family: var(--font-display); font-weight: 900;
	color: var(--gischt); font-size: 1.6rem; line-height: 1;
}
.wsb-stop__icon { color: var(--teal); }
.wsb-stop__title {
	font-family: var(--font-display); font-weight: 800;
	text-transform: uppercase; letter-spacing: .05em;
	color: var(--petrol); font-size: 1.05rem;
}
.wsb-stop__teaser { font-size: .88rem; color: var(--ink-soft); flex: 1; }
.wsb-stop__more {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 700; font-size: .8rem; text-transform: uppercase;
	letter-spacing: .06em; color: var(--teal);
}

/* ---------- Feature-Reihen (Bild/Text) ---------- */
.wsb-feature {
	display: grid; grid-template-columns: 1fr 1fr; gap: 54px;
	align-items: center; padding-block: 44px;
}
.wsb-feature + .wsb-feature { border-top: 1px solid rgba(7,51,60,.10); }
.wsb-feature--flip .wsb-feature__media { order: 2; }
.wsb-feature__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.wsb-feature__media .wsb-photo {
	width: 100%; height: 100%; aspect-ratio: 9 / 6.4; object-fit: cover;
	transition: transform .6s var(--ease);
}
.wsb-feature:hover .wsb-feature__media .wsb-photo { transform: scale(1.04); }
.wsb-feature__text h3 { margin-bottom: 12px; }
.wsb-feature__text p { color: var(--ink-soft); margin-bottom: 20px; }

/* ---------- Statistiken ---------- */
.wsb-stats { background: var(--petrol); color: #fff; }
.wsb-stats__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
	text-align: center;
}
.wsb-stat__num {
	display: block;
	font-family: var(--font-display); font-stretch: 125%; font-weight: 900;
	font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--gischt); line-height: 1;
}
.wsb-stat__label { font-size: 1rem; opacity: .85; }

/* ---------- CTA ---------- */
.wsb-cta {
	background: linear-gradient(135deg, var(--teal), #007D90);
	color: #fff; padding-block: 80px;
}
.wsb-cta__inner { text-align: center; }
.wsb-cta__title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.wsb-cta__text { max-width: 54ch; margin: 0 auto 30px; color: rgba(255,255,255,.9); }
.wsb-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.wsb-why__title { margin-top: 22px; font-size: 1.15rem; }
.wsb-lead--intro { font-size: 1.2rem; }

/* ---------- Werkstatt-Versprechen (Reparatur) ---------- */
.wsb-promise {
	background: var(--petrol); color: #fff;
	padding-block: 44px;
	background-image: linear-gradient(120deg, var(--petrol) 60%, #0A4A5A 100%);
}
.wsb-promise__text {
	display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
	font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
	font-size: clamp(1.3rem, 3vw, 2.1rem); text-transform: uppercase;
	line-height: 1.15;
}
.wsb-promise__text .wsb-icon { color: var(--gischt); flex-shrink: 0; }

/* ---------- Markenporträts (Beratung) ---------- */
.wsb-brandlist { margin-top: 40px; display: grid; gap: 0; }
.wsb-brand {
	display: grid; grid-template-columns: 260px 1fr; gap: 8px 40px;
	padding-block: 30px;
	border-top: 1px solid rgba(7,51,60,.12);
	align-items: start;
}
.wsb-brand:last-child { border-bottom: 1px solid rgba(7,51,60,.12); }
.wsb-brand__name {
	font-family: var(--font-display); font-stretch: 125%; font-weight: 900;
	font-size: clamp(1.4rem, 2.6vw, 2rem); text-transform: uppercase;
	color: var(--teal); grid-row: span 2;
}
.wsb-brand__tag {
	font-weight: 700; color: var(--petrol); font-size: 1.02rem;
}
.wsb-brand__text { color: var(--ink-soft); font-size: .98rem; max-width: 68ch; }

/* ---------- Unterseiten ---------- */
.wsb-subhero {
	position: relative; overflow: hidden;
	background: linear-gradient(155deg, var(--petrol), #0A5666);
	color: #fff; padding-block: 110px 80px;
}
.wsb-subhero__title {
	color: #fff; text-transform: uppercase;
	font-stretch: 125%; font-weight: 900;
	font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1;
	margin-block: 6px 14px;
}
.wsb-subhero__claim { font-size: 1.2rem; color: var(--gischt); max-width: 58ch; }
.wsb-subhero .wsb-eyebrow { color: var(--gischt); }
.wsb-subhero__wind span {
	position: absolute; height: 2px; border-radius: 2px;
	background: rgba(255,255,255,.22);
	animation: windflat 7s linear infinite;
}
.wsb-subhero__wind span:nth-child(1) { top: 26%; width: 180px; animation-delay: 0s; }
.wsb-subhero__wind span:nth-child(2) { top: 52%; width: 260px; animation-delay: 2.2s; background: rgba(124,217,232,.35); }
.wsb-subhero__wind span:nth-child(3) { top: 74%; width: 140px; animation-delay: 4.4s; }
@keyframes windflat { from { left: -300px; } to { left: 110%; } }

.wsb-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; }
.wsb-split__media { border-radius: var(--radius); overflow: hidden; }
.wsb-split__media .wsb-photo { width: 100%; aspect-ratio: 9 / 6.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.wsb-grid { display: grid; gap: 24px; margin-top: 34px; }
.wsb-grid--2 { grid-template-columns: 1fr 1fr; }
.wsb-card {
	background: #fff; border-radius: var(--radius); padding: 30px;
	box-shadow: var(--shadow);
	transition: transform .3s var(--ease);
}
.wsb-card:hover { transform: translateY(-6px); }
.wsb-card__icon {
	width: 52px; height: 52px; border-radius: 14px;
	background: var(--tint); color: var(--teal);
	display: grid; place-items: center; margin-bottom: 16px;
}
.wsb-card p { color: var(--ink-soft); font-size: .95rem; }

.wsb-prose { max-width: 760px; }
.wsb-prose p { margin-bottom: 1em; }

.wsb-nextstop { background: var(--kreide); border-top: 1px solid rgba(7,51,60,.10); }
.wsb-nextstop a {
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	padding-block: 44px; color: var(--petrol);
	transition: background .3s;
}
.wsb-nextstop a:hover { background: var(--tint); }
.wsb-nextstop__label {
	font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
	color: var(--teal); font-weight: 700;
}
.wsb-nextstop__title {
	font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
	text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px;
}

/* ---------- Footer ---------- */
.wsb-footer { background: var(--petrol); color: rgba(255,255,255,.85); }
.wsb-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px;
	padding-block: 70px 50px;
}
.wsb-footer h3 {
	color: #fff; font-size: .95rem; text-transform: uppercase;
	letter-spacing: .12em; margin-bottom: 16px;
}
.wsb-footer ul { list-style: none; }
.wsb-footer li { margin-bottom: 10px; }
.wsb-footer a { color: rgba(255,255,255,.85); }
.wsb-footer a:hover { color: var(--gischt); }
.wsb-logo__text--footer { font-size: 1.3rem; margin-bottom: 12px; color: #fff; }
.wsb-logo__text--footer em { color: var(--gischt); }
.wsb-footer__brands {
	margin-top: 18px; font-family: var(--font-display); font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase; font-size: .8rem;
	color: var(--gischt);
}
.wsb-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.wsb-footer__contact .wsb-icon { flex-shrink: 0; margin-top: 4px; color: var(--gischt); }
.wsb-footer__legal { border-top: 1px solid rgba(255,255,255,.15); }
.wsb-footer__legal-inner {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	padding-block: 20px; font-size: .85rem; color: rgba(255,255,255,.6);
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
	.wsb-route__stops { grid-template-columns: repeat(2, 1fr); }
	.wsb-route__line { display: none; }
	.wsb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.wsb-nav {
		position: fixed; inset: 64px 0 auto 0;
		background: var(--kreide); flex-direction: column; gap: 0;
		padding: 10px 24px 24px; box-shadow: 0 20px 40px rgba(7,51,60,.15);
		transform: translateY(-130%); transition: transform .35s var(--ease);
	}
	.wsb-nav.is-open { transform: none; }
	.wsb-nav a { padding-block: 14px; border-bottom: 1px solid rgba(7,51,60,.08); }
	.wsb-burger { display: block; }
	.wsb-header__cta { display: none; }
	.wsb-nav { margin-left: 0; }
	.wsb-lang { margin-left: auto; }
	.wsb-logo__img { height: 42px; }
	.wsb-brand { grid-template-columns: 1fr; gap: 4px; }
	.wsb-brand__name { grid-row: auto; }

	.wsb-split, .wsb-feature { grid-template-columns: 1fr; gap: 28px; }
	.wsb-feature--flip .wsb-feature__media { order: 0; }
	.wsb-grid--2 { grid-template-columns: 1fr; }
	.wsb-stats__grid { grid-template-columns: 1fr; gap: 40px; }
	.wsb-section { padding-block: 64px; }
}
@media (max-width: 560px) {
	.wsb-route__stops { grid-template-columns: 1fr; }
	.wsb-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.reveal { opacity: 1; transform: none; }
	.wsb-hero__title .line > span { transform: none; }
	.wsb-hero__sub, .wsb-hero__actions { opacity: 1; }
	html { scroll-behavior: auto; }
}
