:root {
  --blue-950: #06172f;
  --blue-900: #092043;
  --blue-800: #0c2d59;
  --blue-650: #1d55a3;
  --red-700: #b9131d;
  --red-600: #d3202b;
  --gold-500: #d7ad55;
  --gold-300: #f0d58e;
  --paper: #f6f4ef;
  --white: #ffffff;
  --anthracite: #1c232b;
  --muted: #69717d;
  --border: rgba(6, 23, 47, 0.13);
  --glass: rgba(255, 255, 255, 0.13);
  --shadow-soft: 0 18px 50px rgba(6, 23, 47, 0.14);
  --shadow-strong: 0 28px 80px rgba(6, 23, 47, 0.26);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--anthracite);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  letter-spacing: 0;
}

body::selection {
  color: var(--white);
  background: var(--red-700);
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
audio {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(215, 173, 85, 0.9);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 86px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--blue-950);
  font-weight: 900;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px 34px;
  color: var(--white);
  background: rgba(6, 23, 47, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(6, 23, 47, 0.94);
  box-shadow: 0 10px 28px rgba(6, 23, 47, 0.22);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
}

.brand-link span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 850;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.header-action {
  color: var(--blue-950);
  background: var(--gold-500);
}

.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
  background: var(--gold-300);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -7% 0;
  z-index: -3;
  background-image:
    image-set(
      url("assets/fun-shop-kommentieren.webp") type("image/webp"),
      url("assets/fun-shop-kommentieren.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 23, 47, 0.76), rgba(6, 23, 47, 0.55) 45%, rgba(6, 23, 47, 0.9)),
    linear-gradient(90deg, rgba(6, 23, 47, 0.88), rgba(6, 23, 47, 0.22), rgba(6, 23, 47, 0.86));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(215, 173, 85, 0.22), transparent 32%),
    linear-gradient(300deg, rgba(185, 19, 29, 0.2), transparent 34%);
  opacity: 0.72;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  animation: float-soft 7s ease-in-out infinite;
}

.hero-orbit-one {
  left: 8%;
  bottom: 22%;
}

.hero-orbit-two {
  right: 9%;
  top: 30%;
  animation-delay: -3s;
}

.hero-inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 106px 0 82px;
  text-align: center;
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.eyebrow,
.section-kicker,
.product-label,
.mini-label {
  margin: 0;
  color: var(--red-600);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-300);
}

.hero h1,
.section-intro h2,
.story-copy h2,
.vision-copy h2,
.participation-copy h2 {
  margin: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  margin-top: 12px;
  font-size: 4.45rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-claim {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 1.82rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.7;
}

.whatsapp-channel-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.whatsapp-channel-block p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.5;
}

.whatsapp-channel-block-hero {
  margin-top: 24px;
}

.whatsapp-channel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(100%, 320px);
  min-height: 54px;
  padding: 0 22px;
  color: var(--white);
  font-weight: 950;
  line-height: 1.1;
  background: #16a34a;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 18px 42px rgba(22, 163, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 190ms ease,
    background 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.whatsapp-channel-cta:hover,
.whatsapp-channel-cta:focus-visible {
  transform: translateY(-2px);
  background: #22c55e;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 22px 50px rgba(22, 163, 74, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.whatsapp-channel-cta.is-compact {
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.93rem;
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.3);
}

.whatsapp-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  background: var(--white);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.ottweiler-city-link {
  position: absolute;
  z-index: 4;
  top: clamp(250px, 56vh, 400px);
  right: clamp(22px, 5vw, 72px);
  bottom: auto;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 190px;
  min-height: 126px;
  padding: 18px 16px 15px;
  overflow: hidden;
  color: var(--blue-950);
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius);
  box-shadow:
    0 24px 58px rgba(3, 14, 31, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: ottweiler-city-float 3.2s ease-in-out infinite;
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.ottweiler-city-link::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 22%;
  transform: skewX(-18deg);
  background: rgba(215, 173, 85, 0.3);
  animation: ottweiler-city-shimmer 3.4s ease-in-out infinite;
}

.ottweiler-city-link img {
  width: 146px;
  height: auto;
}

.ottweiler-city-link span {
  position: relative;
  z-index: 1;
  font-size: 0.79rem;
  font-weight: 950;
  line-height: 1.25;
}

.ottweiler-city-link:hover,
.ottweiler-city-link:focus-visible {
  transform: translateY(-7px) scale(1.025);
  border-color: var(--gold-300);
  box-shadow:
    0 30px 68px rgba(3, 14, 31, 0.55),
    0 0 0 5px rgba(215, 173, 85, 0.18);
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  color: var(--blue-950);
  font-weight: 950;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    transform 190ms ease,
    background 190ms ease,
    border-color 190ms ease,
    color 190ms ease,
    box-shadow 190ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red-700);
  box-shadow: 0 16px 36px rgba(185, 19, 29, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-600);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}

.button-glass:hover,
.button-glass:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 52px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.scroll-cue span {
  width: 5px;
  height: 9px;
  background: var(--gold-300);
  border-radius: 999px;
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section-intro {
  max-width: 790px;
}

.section-intro h2,
.vision-copy h2 {
  margin-top: 10px;
  color: var(--blue-950);
  font-size: 3.35rem;
  font-weight: 950;
}

.section-intro p:not(.section-kicker),
.story-copy p,
.vision-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-section {
  padding: 104px 0 86px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  margin-top: 42px;
}

.story-copy .lead {
  color: var(--anthracite);
  font-size: 1.22rem;
  font-weight: 760;
}

.sound-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sound-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.sound-panel audio {
  width: 100%;
  min-width: 0;
}

.story-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.story-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 310px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
  background: rgba(6, 23, 47, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.film-section {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 173, 85, 0.16), transparent 32%),
    linear-gradient(315deg, rgba(185, 19, 29, 0.2), transparent 36%),
    var(--blue-950);
}

.film-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(215, 173, 85, 0.13), transparent 26%);
  pointer-events: none;
}

.film-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: center;
}

.film-copy h2 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 3.3rem;
  font-weight: 950;
  line-height: 1.02;
  text-wrap: balance;
}

.film-copy p {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.7;
}

.film-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.film-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.discount-button {
  position: relative;
  display: inline-grid;
  gap: 3px;
  min-width: min(100%, 360px);
  margin-top: 26px;
  padding: 17px 20px;
  overflow: hidden;
  color: var(--blue-950);
  background:
    linear-gradient(135deg, var(--gold-300), var(--gold-500) 52%, #f8e4a8),
    var(--gold-500);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow:
    0 18px 42px rgba(215, 173, 85, 0.34),
    0 0 0 0 rgba(215, 173, 85, 0.48);
  transform: translateZ(0);
  animation: discount-pulse 2.4s ease-in-out infinite;
}

.discount-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
  transform: rotate(18deg);
  animation: discount-shine 3.2s ease-in-out infinite;
}

.discount-button span,
.discount-button small {
  position: relative;
  z-index: 1;
}

.discount-button span {
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.16;
  text-transform: uppercase;
}

.discount-button small {
  color: rgba(6, 23, 47, 0.78);
  font-size: 0.88rem;
  font-weight: 900;
}

.discount-button:hover,
.discount-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 58px rgba(215, 173, 85, 0.42),
    0 0 0 6px rgba(215, 173, 85, 0.16);
}

.film-frame {
  position: relative;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.film-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
  border-radius: calc(var(--radius) - 2px);
}

.film-frame figcaption {
  margin: 12px 2px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.45;
}

.products-section {
  padding: 96px 0 104px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 244, 239, 0.96)),
    var(--paper);
  border-top: 1px solid rgba(6, 23, 47, 0.08);
  border-bottom: 1px solid rgba(6, 23, 47, 0.08);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 22px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(6, 23, 47, 0.05);
  transition:
    color 170ms ease,
    background 170ms ease,
    transform 170ms ease,
    border-color 170ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.product-card {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(6, 23, 47, 0.1);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    opacity 190ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(215, 173, 85, 0.24), transparent 32%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(215, 173, 85, 0.7);
  box-shadow: 0 28px 72px rgba(6, 23, 47, 0.22);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: 1;
}

.product-card[hidden] {
  display: none;
}

.product-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.product-card picture,
.product-card img {
  width: 100%;
}

.product-card img {
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  background: var(--blue-950);
}

.product-card-hero img {
  aspect-ratio: 1 / 1.12;
}

.product-card-showcase img {
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    var(--blue-950);
}

.product-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 22px;
}

.product-body h3 {
  margin: 8px 0 0;
  color: var(--blue-950);
  font-size: 1.48rem;
  line-height: 1.12;
}

.product-body p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-body strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--red-700);
  font-size: 0.96rem;
}

.product-body strong::after {
  content: "";
  width: 26px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
  transition: width 180ms ease;
}

.product-card:hover .product-body strong::after,
.product-card:focus-within .product-body strong::after {
  width: 38px;
}

.product-image-trigger {
  cursor: zoom-in;
}

.product-zoom-preview {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 173, 85, 0.14), transparent 34%),
    rgba(4, 16, 34, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-zoom-preview.is-visible {
  opacity: 1;
}

.product-zoom-preview img {
  display: block;
  max-width: min(92vw, 1180px);
  max-height: 88vh;
  object-fit: contain;
  background: var(--blue-950);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow:
    0 36px 94px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(215, 173, 85, 0.18);
}

.why-section {
  padding: 98px 0 90px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.why-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(6, 23, 47, 0.07);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 173, 85, 0.6);
  box-shadow: var(--shadow-soft);
}

.why-card svg {
  width: 42px;
  height: 42px;
  color: var(--gold-500);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin: 18px 0 0;
  color: var(--blue-950);
  font-size: 1.12rem;
  line-height: 1.18;
}

.why-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.city-section {
  padding: 100px 0;
  color: var(--white);
  background: var(--blue-950);
}

.city-section .section-intro h2 {
  color: var(--white);
}

.city-section .section-intro p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  background: rgba(6, 23, 47, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.vision-section {
  position: relative;
  overflow: hidden;
  padding: 106px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 173, 85, 0.16), transparent 28%),
    linear-gradient(315deg, rgba(185, 19, 29, 0.22), transparent 34%),
    var(--blue-950);
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 18% -20% auto -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 85, 0.72), transparent);
  transform: rotate(-5deg);
  pointer-events: none;
}

.vision-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.vision-copy h2,
.vision-copy p {
  color: var(--white);
}

.vision-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.35rem;
  font-weight: 780;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  color: var(--gold-300);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
}

.vision-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vision-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 15px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.launch-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--gold-500);
}

.launch-actions a {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px 20px;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 950;
  text-align: center;
  border-right: 1px solid rgba(6, 23, 47, 0.18);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.launch-actions a:last-child {
  border-right: 0;
}

.launch-actions a:hover,
.launch-actions a:focus-visible {
  color: var(--white);
  background: var(--blue-900);
}

.participation-section {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 173, 85, 0.1), transparent 38%),
    var(--blue-950);
}

.participation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.participation-copy {
  position: sticky;
  top: 122px;
}

.participation-copy h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 4.55rem);
}

.participation-lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.participation-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.participation-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

.participation-points span::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215, 173, 85, 0.14);
}

.whatsapp-channel-block-community {
  justify-items: start;
  margin: 26px 0 0;
  text-align: left;
}

.whatsapp-channel-block-community p {
  max-width: 430px;
}

.participation-media {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.participation-media img {
  width: 100%;
  aspect-ratio: 1693 / 929;
  object-fit: cover;
}

.participation-form {
  display: grid;
  gap: 24px;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  color: var(--blue-950);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.participation-form[aria-busy="true"] {
  cursor: progress;
}

.form-heading {
  display: grid;
  gap: 8px;
}

.form-heading h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.form-heading p {
  margin: 0;
  color: var(--text-soft);
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.form-field > span,
.product-choice-fieldset legend {
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 15px;
  color: var(--blue-950);
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(6, 23, 47, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field input {
  min-height: 52px;
}

.form-field textarea {
  min-height: 122px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(215, 173, 85, 0.18);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(105, 113, 125, 0.78);
}

.product-choice-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-choice-fieldset legend {
  margin-bottom: 10px;
}

.product-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 54px;
  padding: 10px 12px;
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 850;
  background: #f4f7fb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.product-choice span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-choice input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--gold-500);
}

.product-choice:hover,
.product-choice:has(input:focus-visible) {
  transform: translateY(-1px);
  border-color: var(--gold-500);
}

.product-choice:has(input:checked) {
  color: var(--blue-950);
  background: rgba(215, 173, 85, 0.22);
  border-color: var(--gold-500);
}

.other-idea-field {
  animation: field-in 220ms ease both;
}

.other-idea-field[hidden] {
  display: none;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--blue-900);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold-500);
}

.privacy-consent a,
.privacy-note a {
  color: var(--blue-900);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-note {
  margin: -10px 0 0;
  color: var(--text-soft);
  font-size: 0.79rem;
  line-height: 1.55;
}

.participation-submit {
  width: 100%;
}

.participation-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-status.is-error {
  color: #a13f30;
}

.form-status.is-success {
  color: #176446;
}

.faq-section {
  padding: 104px 0;
}

.faq-chat {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 0;
  overflow: hidden;
  margin-top: 42px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.faq-assistant {
  display: grid;
  align-content: center;
  min-height: 380px;
  padding: clamp(30px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(215, 173, 85, 0.14), transparent 50%),
    var(--blue-950);
}

.faq-assistant-label {
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-assistant p {
  max-width: 680px;
  margin: 18px 0 28px;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1.25;
}

.faq-assistant a {
  width: fit-content;
  color: var(--gold-300);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.faq-question-list {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  background: #f2f5f9;
}

.faq-question {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  color: var(--blue-900);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-question.is-active {
  color: var(--blue-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateX(-3px);
  outline: 0;
}

.sticky-signup-cta {
  position: fixed;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 950;
  background: var(--gold-500);
  border: 1px solid rgba(6, 23, 47, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(4, 16, 34, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    background 180ms ease;
}

.sticky-signup-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-signup-cta:hover,
.sticky-signup-cta:focus-visible {
  background: var(--gold-300);
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 30px;
  align-items: center;
  padding: 30px 34px;
  color: rgba(255, 255, 255, 0.78);
  background: #041022;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1rem;
}

.footer-brand span {
  margin-top: 3px;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  transition:
    color 170ms ease,
    background 170ms ease;
}

.social-links a {
  width: 38px;
  padding: 0;
  color: var(--blue-950);
  font-weight: 950;
  background: var(--gold-500);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gold-300);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes field-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@keyframes scroll-dot {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  35%,
  65% {
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes discount-pulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(215, 173, 85, 0.34),
      0 0 0 0 rgba(215, 173, 85, 0.42);
  }

  48% {
    box-shadow:
      0 24px 62px rgba(215, 173, 85, 0.5),
      0 0 0 9px rgba(215, 173, 85, 0.08);
  }
}

@keyframes discount-shine {
  0%,
  55% {
    left: -42%;
  }

  85%,
  100% {
    left: 120%;
  }
}

@keyframes ottweiler-city-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes ottweiler-city-shimmer {
  0%,
  58% {
    left: -45%;
  }

  100% {
    left: 130%;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 16px;
    padding-inline: 22px;
  }

  .brand-link {
    min-width: 0;
  }

  .main-nav {
    gap: 2px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .ottweiler-city-link {
    top: 112px;
    right: 18px;
    bottom: auto;
    width: 164px;
  }

  .story-grid,
  .film-grid,
  .vision-grid,
  .participation-layout {
    grid-template-columns: 1fr;
  }

  .participation-copy {
    position: static;
  }

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

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

@media (max-width: 860px) {
  section[id] {
    scroll-margin-top: 128px;
  }

  .site-header {
    position: sticky;
    flex-wrap: wrap;
    min-height: auto;
    padding: 10px 16px;
    background: rgba(6, 23, 47, 0.96);
  }

  .brand-link span {
    font-size: 0.9rem;
  }

  .brand-link img {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 9px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-orbit {
    display: none;
  }

  .hero-inner {
    width: min(100% - 28px, 680px);
    padding: 72px 0 82px;
  }

  .hero-logo {
    width: 138px;
    height: 138px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-claim {
    font-size: 1.5rem;
  }

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

  .ottweiler-city-link {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 142px minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    gap: 12px;
    width: min(calc(100% - 28px), 340px);
    min-height: 84px;
    margin: -52px auto 68px;
    padding: 12px 16px;
    animation: none;
  }

  .ottweiler-city-link img {
    width: 142px;
  }

  .ottweiler-city-link span {
    font-size: 0.83rem;
    text-align: left;
  }

  .section-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .story-section,
  .film-section,
  .products-section,
  .why-section,
  .city-section,
  .vision-section,
  .faq-section {
    padding: 68px 0;
  }

  .participation-section {
    padding: 68px 0;
  }

  .section-intro h2,
  .film-copy h2,
  .vision-copy h2 {
    font-size: 2.22rem;
  }

  .participation-copy h2 {
    font-size: 2.7rem;
  }

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

  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .sound-panel {
    grid-template-columns: 1fr;
  }

  .faq-chat {
    grid-template-columns: 1fr;
  }

  .faq-assistant {
    min-height: 300px;
  }

  .faq-question:hover,
  .faq-question:focus-visible,
  .faq-question.is-active {
    transform: translateX(0);
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 26px 18px;
  }

  .footer-links,
  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding: 0 7px;
    font-size: 0.84rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    padding-bottom: 48px;
  }

  .hero-logo {
    width: 116px;
    height: 116px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-claim {
    font-size: 1.18rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ottweiler-city-link {
    margin-top: 0;
  }

  .whatsapp-channel-block {
    width: 100%;
  }

  .whatsapp-channel-cta,
  .whatsapp-channel-cta.is-compact {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-channel-block-community {
    justify-items: stretch;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .discount-button {
    width: 100%;
  }

  .section-intro h2,
  .film-copy h2,
  .vision-copy h2 {
    font-size: 1.88rem;
  }

  .launch-actions {
    grid-template-columns: 1fr;
  }

  .launch-actions a {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 23, 47, 0.18);
  }

  .launch-actions a:last-child {
    border-bottom: 0;
  }

  .participation-copy h2 {
    font-size: 2.05rem;
  }

  .participation-form {
    gap: 20px;
    padding: 24px 18px;
  }

  .contact-field-grid,
  .product-choice-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .faq-assistant,
  .faq-question-list {
    padding: 24px 18px;
  }

  .faq-assistant p {
    font-size: 1.45rem;
  }

  .sticky-signup-cta {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .product-grid,
  .why-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .product-body {
    min-height: auto;
  }

  .product-zoom-preview {
    display: none;
  }

  .story-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .masonry-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item img {
    aspect-ratio: 1 / 0.86;
    height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sticky-signup-cta,
  .other-idea-field {
    transform: none;
  }
}
