/* ---- Brand fonts ---- */
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Italic-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Variable.ttf") format("truetype-variations");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Italic-Variable.ttf") format("truetype-variations");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: "Inter", Arial, sans-serif;
}
h1, h2 {
  font-family: "Montserrat", var(--font-sans);
}
.hero-copy-panel h1 em,
.smart-copy h2 em,
.showroom-copy h2 em,
.founder-benefits-intro h2 em {
  font-family: "Playfair Display", Georgia, serif;
}

/* ---- Off-white sections ---- */
:root {
  --paper: #f6f5f4;
  --font-inter: "Inter";
}

.choice-card[style*="cursor:default"] { cursor: default; }
.choice-card[style*="cursor:default"]:hover { transform: none; border-color: var(--ink); }

/* ---- Markus Seiden quote: warm taupe background ---- */
.founder-section {
  background: #eae6e0;
}

/* ---- Technische Spezifikationen: schmalerer Hero ohne Eyebrow/CTA ---- */
.home-hero-compact {
  min-height: 0;
}
.home-hero-compact .home-hero-content {
  max-width: 720px;
  padding: clamp(130px, 18vw, 170px) clamp(24px, 5vw, 70px) 56px;
}
.home-hero-compact .home-hero-content h1 {
  margin: 0 0 18px;
}

/* ---- Partner-/Presse-Logo-Banner unter "2 Minuten Eisbaden" ---- */
.partner-logos-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  overflow: hidden;
}
.partner-logos-track {
  align-items: center;
  justify-content: center;
  gap: 64px;
  display: flex;
}
.partner-logos-group {
  flex: none;
  align-items: center;
  gap: 64px;
  display: flex;
}
.partner-logos-group[aria-hidden="true"] {
  display: none;
}
.partner-logos-track img {
  filter: grayscale(1);
  opacity: .55;
  width: auto;
  height: 32px;
  transition: opacity .2s, filter .2s;
}
.partner-logos-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.partner-logos-track img.partner-logo-nrw {
  height: 46px;
}
@media (width <= 720px) {
  .partner-logos-track {
    justify-content: flex-start;
    gap: 0;
    width: max-content;
    animation: partner-logos-scroll 20s linear infinite;
  }
  .partner-logos-group {
    gap: 40px;
    padding-right: 40px;
  }
  .partner-logos-group[aria-hidden="true"] {
    display: flex;
  }
  .partner-logos-track img {
    height: 24px;
    opacity: .75;
  }
  .partner-logos-track img.partner-logo-nrw {
    height: 34px;
  }
}
@keyframes partner-logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Center the main header navigation ---- */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.nav-pill {
  grid-column: 2;
  justify-self: center;
}
.header-actions {
  grid-column: 3;
  justify-self: end;
}

/* ---- Produktseite: heller Hero statt Foto, darum dunkle statt weiße Schrift im Header ---- */
.home-header-light .nav-links a {
  color: var(--ink);
}
.home-header-light .home-icon-btn,
.home-header-light .menu-button {
  border-color: #10100f33;
}
.home-header-light .bag-icon,
.home-header-light .bag-icon:before {
  border-color: var(--ink);
}
.home-header-light .menu-button span {
  background: var(--ink);
}
.home-header-light .home-brand-light {
  display: none;
}
/* When the gray reveal bar shows on scroll-up, flip PDP back to the white/light theme (same look as the homepage's bar) */
.home-header-light.is-scrolled .nav-links a {
  color: #fff;
}
.home-header-light.is-scrolled .home-icon-btn,
.home-header-light.is-scrolled .menu-button {
  border-color: #ffffff4d;
}
.home-header-light.is-scrolled .bag-icon,
.home-header-light.is-scrolled .bag-icon:before {
  border-color: #fff;
}
.home-header-light.is-scrolled .menu-button span {
  background: #fff;
}
.home-header-light.is-scrolled .home-brand-dark {
  display: none;
}
.home-header-light.is-scrolled .home-brand-light {
  display: block;
}
@media (width <= 900px) {
  .home-header-light:not(.is-scrolled) .nav-links {
    background: #fffffff2;
    box-shadow: 0 20px 50px #10100f26;
  }
  .home-header-light:not(.is-scrolled) .nav-links a {
    border-bottom-color: #10100f1a;
  }
}

/* ---- Technische Spezifikationen: full-width headline, no side text ---- */
.specs-head {
  grid-template-columns: 1fr;
}
.specs-head h2 {
  white-space: nowrap;
}
@media (width <= 900px) {
  .specs-head h2 {
    white-space: normal;
  }
}

/* ---- Unify all section widths to match the "2 Minuten" benefits section ---- */
.page-shell {
  width: min(1340px, 100% - 8vw);
}
.hero {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.hero-grid {
  width: min(1340px, 100% - 8vw);
}

.decision-strip > div {
  align-items: start;
}
.decision-steps:before {
  left: 22px;
  right: calc(33.333% - 22px);
}
.step-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.step-links a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}
.step-links a:hover {
  opacity: 0.65;
}

.sticky-subnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: #ffffffe6;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #10100f14;
  box-shadow: 0 8px 26px #10100f0d;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.sticky-subnav.is-visible {
  transform: translateY(0);
}

/* ---- Mobile sticky reserve bar: hidden until scrolled below the fold ---- */
.mobile-reserve-bar {
  transform: translateY(140%);
  transition: transform 0.25s ease;
}
.mobile-reserve-bar.is-visible {
  transform: translateY(0);
}
.sticky-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}
.sticky-subnav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
}
.sticky-subnav-links a:hover {
  opacity: 0.6;
}
.sticky-subnav .button {
  min-height: 40px;
  padding: 0 22px;
  font-size: 13px;
  flex: none;
}
.sticky-subnav-mobile {
  display: none;
}
@media (width <= 700px) {
  .sticky-subnav-links,
  .sticky-subnav .button {
    display: none;
  }
  .sticky-subnav-inner {
    min-height: 58px;
    padding: 0;
    display: block;
  }
  .sticky-subnav-mobile {
    display: block;
    width: 100%;
  }
  .sticky-subnav-toggle {
    width: 100%;
    min-height: 58px;
    padding: 0 4px;
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }
  .sticky-subnav-chevron {
    flex: none;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -3px;
  }
  .sticky-subnav-toggle[aria-expanded="true"] .sticky-subnav-chevron {
    transform: rotate(225deg);
    margin-top: 3px;
  }
  .sticky-subnav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .sticky-subnav-dropdown.is-open {
    max-height: 320px;
  }
  .sticky-subnav-dropdown a {
    display: block;
    padding: 14px 4px;
    border-top: 1px solid #10100f14;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
  }
  .sticky-subnav-dropdown a.is-current {
    color: var(--ink);
    font-weight: 700;
  }
}

.plain-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c7c3ba;
}
.plain-check-list li {
  border-bottom: 1px solid #c7c3ba;
  padding: 18px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
}

@media (width > 900px) {
  .detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.detail-grid article > div:last-child {
  display: block;
  padding: 28px;
}
.detail-grid h3 {
  text-align: left;
}
.detail-grid article > div:last-child > p:last-child {
  margin-top: 10px;
}

.showroom-copy li {
  grid-template-columns: 1fr;
}

/* ---- Für Wasser entwickelt: checklist as single full-width column ---- */
.material-copy ul {
  grid-template-columns: 1fr;
}

/* ---- Immer sauberes Wasser: mehr Abstand zwischen Headline und oberem Rand der weißen Box ---- */
.material-copy {
  padding-top: 46px;
}
@media (width <= 900px) {
  .material-copy {
    padding-top: 30px;
  }
}
@media (width <= 560px) {
  .material-copy {
    padding-top: 26px;
  }
}

/* ---- Hochwertige Materialien: accordion instead of plain list ---- */
.material-accordions {
  margin-top: 26px;
  border-top: 1px solid #c7c3ba;
}
.material-accordions details {
  border-bottom: 1px solid #c7c3ba;
}
.material-accordions summary {
  min-height: 64px;
  color: var(--ink);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 2px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  list-style: none;
  display: flex;
}
@media (width <= 640px) {
  .material-accordions summary {
    min-height: 0;
    padding: 16px 2px;
    font-size: 14px;
  }
}
.material-accordions summary::-webkit-details-marker {
  display: none;
}
.material-accordions details[open] .accordion-icon:after {
  transform: rotate(0);
}
.material-accordions .accordion-content {
  padding: 0 2px 20px;
  font-size: 14px;
  line-height: 1.6;
}
.material-accordions .accordion-content p {
  margin: 0;
  max-width: 480px;
}

/* ---- Immer sauberes Wasser: mirrored panel (text left, image right) ---- */
@media (width > 900px) {
  .material-panel.reverse .material-copy {
    padding-right: 0;
    padding-left: 45px;
  }
}

/* ---- Mobile: EVA shows text first, image below ---- */
@media (width <= 900px) {
  #eva .material-image {
    order: 2;
  }
  #eva .material-copy {
    order: 1;
  }
}

/* ---- Mobile: Temperatur & Eisproduktion image below text ---- */
@media (width <= 900px) {
  .product-gallery {
    order: 2;
  }
  .product-copy {
    order: 1;
  }
}

/* ---- Mobile: Showroom image below text ---- */
@media (width <= 900px) {
  .showroom-image {
    order: 2;
  }
  .showroom-copy {
    order: 1;
  }
}

/* ---- Mobile: comparison table, equal-width columns, checkmark above text ---- */
@media (width <= 560px) {
  .comparison-row {
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
  }
  .comparison-row > * {
    padding: 14px 8px;
  }
  .comparison-row > span:first-child {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .comparison-row > strong {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
    white-space: normal;
  }
  .comparison-row > span:last-child {
    justify-content: center;
    text-align: center;
  }
}

/* ---- Mobile: Technische Details as single column for readability ---- */
@media (width <= 900px) {
  .tech-details-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ---- Technische Details: grouped by topic ---- */
.tech-details-group + .tech-details-group {
  margin-top: 20px;
}

/* ---- Mobile: align step circle with the Heute/Danach/Zuhause label ---- */
@media (width <= 560px) {
  .decision-steps li:before {
    display: none;
  }
  .decision-steps li > span {
    position: relative;
    display: inline-block;
  }
  .decision-steps li > span:before {
    content: "";
    background: var(--ink);
    width: 11px;
    height: 11px;
    box-shadow: 0 0 0 1px var(--ink);
    border: 5px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -37px;
    transform: translateY(-50%);
  }
}

/* ---- So entsteht das Eis: intro text below headline instead of beside it ---- */
.mechanics-head {
  grid-template-columns: 1fr;
  gap: 16px;
}
.mechanics-head h2 {
  max-width: none;
}
.mechanics-head > p {
  max-width: 640px;
}

/* ---- Mobile: "Echtes Eis direkt im Becken" image fills the frame, no gap top/bottom ---- */
@media (width <= 560px) {
  .product-stage img {
    height: 390px;
  }
}

/* ---- Cold that brings joy: more space before the CTA ---- */
.final-content .button {
  margin-top: 40px;
}

/* ---- Eisbaden im echten Eis: plain points instead of boxes ---- */
.experience-copy {
  padding-top: 215px;
}
.experience-copy h2 {
  max-width: none;
}
@media (width <= 900px) {
  .experience-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .experience-copy {
    padding-top: 0;
    padding-bottom: 56px;
  }
  .metric-points {
    flex-direction: column;
    gap: 16px;
  }
}
.metric-points {
  max-width: none;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 18px 34px;
  display: flex;
}
.metric-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 12px #00000073;
}
.metric-points li:before {
  content: "✓";
  flex: none;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #10100f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  text-shadow: none;
}

/* ---- Jedes Detail hat eine Aufgabe: full-width headline, pills top-right ---- */
.proof-heading {
  grid-template-columns: 1fr;
}
.proof-heading h2 {
  white-space: nowrap;
}
.detail-image > span {
  top: 13px;
  bottom: auto;
}
@media (width <= 900px) {
  .proof-heading h2 {
    white-space: normal;
  }
}

/* ---- Temperatur/Eisproduktion + Showroom image pill: bottom-left ---- */
.product-stage .stage-note,
.showroom-image > span {
  left: 18px;
  right: auto;
}

/* ---- Buy box hero: gallery ---- */
.hero {
  overflow: visible;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.34fr) minmax(380px, 1fr);
  align-items: start;
  gap: clamp(40px, 5vw, 72px);
}
.hero-gallery {
  position: sticky;
  top: 24px;
  align-self: start;
  min-width: 0;
  margin-top: 10px;
}
.main-image {
  aspect-ratio: 4 / 3;
  background: #d8d3cc;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.thumbnail-slider {
  margin-top: 12px;
  position: relative;
}
.thumbnail-track {
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  gap: 12px;
  display: flex;
  overflow-x: auto;
}
.thumbnail-track::-webkit-scrollbar {
  display: none;
}
.thumbnail {
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
  cursor: pointer;
  opacity: 0.76;
  scroll-snap-align: center;
  border: 1px solid transparent;
  border-radius: 9px;
  width: calc(25% - 9px);
  min-width: calc(25% - 9px);
  padding: 7px;
  transition: border-color 0.16s, background 0.16s, opacity 0.16s;
  overflow: hidden;
}
.thumbnail .gallery-image {
  border-radius: 1px;
}
.thumbnail:hover,
.thumbnail.is-active {
  opacity: 1;
}
.thumbnail.is-active {
  border-color: var(--ink);
  background: #fff;
}
.gallery-arrow {
  z-index: 10;
  width: 34px;
  height: 34px;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  background: #fffffff0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  transition: opacity 0.16s;
  display: grid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 6px 18px #22201c29;
}
.thumbnail-slider:hover .gallery-arrow,
.gallery-arrow:focus-visible {
  opacity: 1;
}
.arrow-left {
  left: 8px;
}
.arrow-right {
  right: 8px;
}

/* ---- Buy box hero: purchase card ---- */
.hero-lead span {
  display: block;
}
.purchase-card {
  background: #fff;
  border-radius: 14px;
  margin-top: 26px;
  padding: 20px;
  box-shadow: 0 12px 28px #332f280d;
}
.purchase-rating {
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}
.purchase-stars {
  color: #f4b400;
  letter-spacing: .1em;
  font-size: 14px;
}
.purchase-rating a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.purchase-heading {
  align-items: center;
  min-height: 27px;
  display: flex;
}
.purchase-name {
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}
.purchase-subheading {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.pill-green {
  color: var(--green);
  background: var(--green-soft);
  border-radius: 99px;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}
.purchase-price-row {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: flex;
}
.purchase-price-row .pill-green {
  margin-top: 0;
}
.purchase-card .proof-pills {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 0;
  display: grid;
}
.purchase-card .proof-pills span {
  color: #34332f;
  background: #f3f1eb;
  border: 0;
  border-radius: 99px;
  align-items: center;
  min-height: 44px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  display: flex;
}
.purchase-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.purchase-checklist li {
  color: var(--ink);
  padding-left: 21px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}
.purchase-checklist li:before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  position: absolute;
  left: 0;
}
.purchase-checklist-single {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 34px;
}
.purchase-variant-label {
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px dashed var(--line);
  margin: 34px 0 18px;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 700;
}
.purchase-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}
.purchase-price {
  color: var(--ink);
  letter-spacing: -0.035em;
  white-space: nowrap;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}
.buy-button {
  color: #fff;
  cursor: pointer;
  background: #000;
  border: 0;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 52px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s, background 0.16s;
  display: flex;
}
.buy-button:hover {
  transform: translateY(-1px);
}
.purchase-card .hero-trust {
  background: var(--green-soft);
  color: var(--green);
  border-radius: 8px;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
  padding: 11px 13px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
}
.service-accordions {
  margin-top: 8px;
}
.service-accordions details {
  border-bottom: 1px solid #e6e3dc;
}
.service-accordions summary {
  min-height: 49px;
  color: var(--ink);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 2px;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
  display: flex;
}
.service-accordions summary::-webkit-details-marker {
  display: none;
}
.accordion-icon {
  flex: none;
  width: 15px;
  height: 15px;
  position: relative;
}
.accordion-icon:before,
.accordion-icon:after {
  content: "";
  background: currentColor;
  width: 11px;
  height: 1px;
  transition: transform 0.18s;
  position: absolute;
  top: 7px;
  left: 2px;
}
.accordion-icon:after {
  transform: rotate(90deg);
}
.service-accordions details[open] .accordion-icon:after {
  transform: rotate(0);
}
.accordion-content {
  color: var(--muted);
  padding: 0 2px 15px;
  font-size: 11px;
  line-height: 1.5;
}
.accordion-content p {
  margin: 0;
}
.callback-content {
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  display: flex;
}
.callback-content p {
  max-width: 280px;
}
.callback-content a {
  color: var(--ink);
  text-underline-offset: 3px;
  flex: none;
  font-weight: 700;
}
.checklist-heading {
  color: var(--ink);
  font-weight: 650;
  margin-bottom: 8px !important;
}
.accordion-content ul {
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.accordion-content li {
  padding-left: 19px;
  position: relative;
}
.accordion-content li:before {
  color: var(--green);
  content: "✓";
  font-weight: 800;
  position: absolute;
  top: 1px;
  left: 0;
}
.accordion-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.warranty-content > p {
  margin-bottom: 12px;
}
.warranty-content ul {
  gap: 9px;
}

/* ---- 2 Minuten Eisbaden benefits section ---- */
.benefits-section {
  background: #fff;
  padding: 88px 0 96px;
}
.benefits-inner {
  width: min(1340px, 100% - 8vw);
  margin: 0 auto;
}
.benefits-intro {
  margin-bottom: 36px;
}
.benefits-intro h2 {
  color: #000;
  letter-spacing: -0.035em;
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 3.3vw, 48px);
  font-weight: 650;
  line-height: 1.14;
}
.benefits-intro p:not(.eyebrow) {
  color: #000;
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.66;
}
.benefits-grid {
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 4px;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.benefits-grid::-webkit-scrollbar {
  display: none;
}
.benefit-card {
  aspect-ratio: 300 / 388;
  background: #d5d2cc;
  border-radius: 15px;
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.benefit-card > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  display: block;
}
.benefit-card:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000, #00000042);
  position: absolute;
  inset: 38% 0 0;
}
.benefit-card-copy {
  z-index: 1;
  align-items: flex-end;
  padding: 24px 20px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.benefit-card h3 {
  color: #fff;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 14px #000000b8;
  margin: 0;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 550;
  line-height: 1.25;
}
.benefit-card:hover > img {
  transform: scale(1.025);
}

@media (width <= 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-gallery {
    position: static;
    margin-top: 0;
  }
  .benefits-grid {
    gap: 18px;
  }
  .benefit-card {
    flex-basis: calc(55% - 9px);
  }
  .benefit-card h3 {
    font-size: 24px;
  }
}
@media (width <= 560px) {
  .hero-lead span {
    display: inline;
  }
  .hero-lead span + span:before {
    content: " ";
  }
  .purchase-card {
    margin-top: 22px;
    padding: 15px;
  }
  .buy-button {
    padding: 0 18px;
    font-size: 12px;
  }
  .purchase-card .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: normal;
    gap: 8px;
  }
  .callback-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .thumbnail {
    width: calc(33.3333% - 8px);
    min-width: calc(33.3333% - 8px);
  }
  .benefits-section {
    padding: 52px 0 60px;
  }
  .benefits-intro h2 {
    font-size: 30px;
    line-height: 1.12;
  }
  .benefits-intro p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
  }
  .benefits-grid {
    gap: 14px;
  }
  .benefit-card {
    aspect-ratio: 4 / 4.6;
    flex-basis: 82%;
  }
  .benefit-card-copy {
    padding: 20px 16px;
  }
  .benefit-card h3 {
    max-width: 290px;
    font-size: 21px;
  }
}

/* ---- Plug & Play: Aufstellort-Hinweis unter Schritt 1 ---- */
.install-info-link {
  color: var(--ink);
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
}
.install-info-icon {
  flex: none;
  width: 16px;
  height: 16px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  display: flex;
}

/* ---- Standortcheck Pop-up ---- */
body.modal-open {
  overflow: hidden;
}
.modal-overlay {
  background: #11110fb3;
  align-items: center;
  justify-content: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.modal-overlay[hidden] {
  display: none;
}
.modal-box {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 48px);
  padding: 34px 30px;
  overflow-y: auto;
  position: relative;
}
.modal-box-wide {
  max-width: 560px;
}
.modal-text {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
}
.modal-text.modal-subheading {
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 700;
}
.modal-text.modal-closing {
  margin: 18px 0 0;
}
.modal-text.modal-closing strong {
  color: var(--ink);
}
.modal-close {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: 0;
  width: 28px;
  height: 28px;
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 12px;
}
.modal-checklist {
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.modal-checklist li {
  color: var(--muted);
  padding-left: 19px;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}
.modal-checklist li:before {
  color: var(--green);
  content: "✓";
  font-weight: 800;
  position: absolute;
  top: 1px;
  left: 0;
}

/* ---- Footer: rebuilt to match qoob8.com (fonts/spacing pulled from computed styles) ---- */
.site-footer {
  background: #111;
  color: #fff;
  padding: 64px 0 30px;
}
.footer-hero {
  border-bottom: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 64px;
  display: flex;
}
.footer-hero h2 {
  letter-spacing: .6px;
  margin: 0;
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
.footer-hero .button {
  letter-spacing: .6px;
  font-size: 16px;
}
.footer-links-row {
  border-bottom: 1px solid #ffffff14;
  flex-wrap: wrap;
  align-items: start;
  gap: 60px 69px;
  padding: 64px 0;
  display: flex;
}
.footer-col {
  flex-direction: column;
  gap: 10px;
  display: flex;
}
.footer-col span,
.footer-newsletter > span {
  color: #fff;
  letter-spacing: .6px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}
.footer-newsletter > span {
  font-size: 24px;
}
.footer-col a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: none;
}
.footer-col a:hover {
  opacity: .75;
}
.footer-newsletter {
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
  display: flex;
  margin-left: auto;
}
.footer-newsletter p {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}
.footer-newsletter-form {
  background: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 20px;
  display: flex;
}
.footer-newsletter-form input {
  color: #000;
  background: none;
  border: 0;
  outline: none;
  flex: 1;
  min-width: 0;
  font-size: 15px;
}
.footer-newsletter-form input::placeholder {
  color: #8a8a8a;
}
.footer-newsletter-form button {
  color: #000;
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 50%;
  flex: none;
  width: 38px;
  height: 38px;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.footer-newsletter p.footer-newsletter-note {
  color: #cfcac099;
  font-size: 11px;
  font-weight: 400;
}
.footer-brandrow {
  border-bottom: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 64px 0;
  display: flex;
}
.footer-wordmark {
  width: clamp(160px, 18vw, 300px);
  height: auto;
}
.footer-social {
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.footer-social a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-legal {
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 64px;
  display: flex;
}
.footer-legal a {
  color: #fff;
  letter-spacing: .6px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.footer-legal a:hover {
  opacity: .75;
}
.footer-copyright {
  color: #ffffff66;
  margin-top: 22px;
  font-size: 12px;
}
@media (width <= 900px) {
  .footer-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 40px;
  }
  .footer-hero h2 {
    font-size: 26px;
  }
  .footer-links-row {
    gap: 32px 24px;
    padding: 40px 0;
  }
  .footer-newsletter {
    max-width: none;
    margin-left: 0;
    text-align: center;
    align-items: center;
  }
  .footer-newsletter-form {
    width: 100%;
  }
  .footer-brandrow {
    flex-direction: column;
    padding: 40px 0;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    padding-top: 40px;
    text-align: center;
  }
}

/* ---- Markus-Zitat: eigene Headline über dem Zitat ---- */
.founder-layout blockquote h2 {
  letter-spacing: -.045em;
  max-width: 800px;
  margin: 0 0 18px;
  font-size: clamp(31px, 3.3vw, 47px);
  line-height: 1.13;
}
.founder-layout blockquote p {
  letter-spacing: -.01em;
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
}
@media (width <= 720px) {
  .founder-layout blockquote h2 {
    font-size: 30px;
  }
  .founder-layout blockquote p {
    font-size: 17px;
  }
}

/* ---- Testimonials-Headline: 2 statt 3 Zeilen ---- */
.testimonials-heading {
  max-width: 1000px;
}
/* ---- Rezensions-Sterne: helleres Gelb, passend zur Buy-Box ---- */
.testimonial-grid article > div > span {
  color: #f4b400;
}
@media (width <= 640px) {
  .testimonials-heading-break {
    display: none;
  }
}

/* ---- Technische Spezifikationen: Bild + Tabs statt Grid ---- */
.specs-section {
  padding: 76px 0;
}
.specs-layout {
  grid-template-columns: minmax(260px, 360px) 1fr;
  align-items: start;
  gap: 48px;
  display: grid;
}
.specs-image {
  position: sticky;
  top: 100px;
}
.specs-image img {
  width: 100%;
  height: auto;
  display: block;
}
.specs-content h2 {
  letter-spacing: -.04em;
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}
.specs-tabs {
  flex-wrap: wrap;
  gap: 6px 26px;
  margin-top: 24px;
  display: flex;
}
.specs-tab-group {
  display: contents;
}
.specs-tab {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  padding: 0 0 10px;
  font-family: inherit;
  letter-spacing: .02em;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  order: 1;
  align-items: center;
  gap: 10px;
  display: flex;
}
.specs-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.specs-tab.is-active .specs-tab-icon:after {
  transform: rotate(0);
}
.specs-tab-icon {
  display: none;
}
.specs-panel {
  order: 2;
  flex: 0 0 100%;
  margin-top: 22px;
}
.specs-panel[hidden] {
  display: none;
}
.specs-category-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px 44px;
  display: grid;
}
.specs-category-wide {
  grid-column: 1 / -1;
}
.specs-category-title {
  color: var(--ink);
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
}
.specs-icon {
  color: var(--muted);
  flex: none;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
}
.specs-icon svg {
  width: 100%;
  height: 100%;
}
.specs-category dl {
  border-top: 1px solid #c8c4ba;
  margin: 0;
  display: grid;
}
.specs-category dl > div {
  border-bottom: 1px solid #c8c4ba;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  display: flex;
}
.specs-category dt {
  color: var(--muted);
  font-size: 13px;
}
.specs-category dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}
.specs-category-cols {
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
  display: grid;
}
.specs-panel-lead {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.specs-scope-list {
  gap: 18px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
}
.specs-scope-list > li {
  padding-left: 22px;
  position: relative;
}
.specs-scope-list > li:before {
  color: var(--green);
  content: "✓";
  font-weight: 800;
  position: absolute;
  top: 1px;
  left: 0;
}
.specs-scope-item {
  font-size: 14px;
  font-weight: 700;
  display: block;
}
.specs-scope-sublist {
  color: var(--muted);
  gap: 5px;
  margin: 7px 0 0;
  padding: 0;
  font-size: 12.5px;
  line-height: 1.5;
  list-style: none;
  display: grid;
}
.specs-scope-sublist li {
  padding-left: 15px;
  position: relative;
}
.specs-scope-sublist li:before {
  content: "–";
  position: absolute;
  left: 0;
}
.specs-panel-note {
  margin: 10px 0 0;
  font-size: 13px;
}
.specs-panel-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (width <= 900px) {
  .specs-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .specs-image {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
  .specs-tabs {
    display: block;
  }
  .specs-tab-group {
    display: block;
  }
  .specs-tab {
    justify-content: space-between;
    text-align: left;
    border-bottom: 1px solid #c8c4ba;
    width: 100%;
    padding: 16px 0;
    font-size: 13px;
  }
  .specs-tab-icon {
    display: block;
  }
  .specs-panel {
    order: initial;
    flex-basis: auto;
    margin-top: 0;
    padding-bottom: 20px;
  }
  .specs-category-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .specs-category-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---- EVA-Abschnitt: "Mehr erfahren" öffnet Pop-up ---- */
.inline-expand {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- "Dein Genesis. Direkt in Deiner App." ---- */
.app-section {
  background: #e8e5de;
  padding: 100px 0;
}
.app-layout {
  grid-template-columns: .85fr 1fr;
  align-items: center;
  gap: 72px;
  display: grid;
}
.app-copy h2 {
  letter-spacing: -.055em;
  margin: 0 0 24px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: .96;
}
.app-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.app-copy > p {
  max-width: 460px;
  color: var(--muted);
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.6;
}
.app-steps {
  border-bottom: 1px solid #c8c4ba;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.app-steps li {
  grid-template-columns: 40px 1fr;
  gap: 18px;
  border-top: 1px solid #c8c4ba;
  padding: 24px 0;
  display: grid;
}
.app-steps span {
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}
.app-steps span svg {
  width: 18px;
  height: 18px;
}
.app-steps h3 {
  letter-spacing: -.01em;
  margin: 0 0 6px;
  font-size: 18px;
}
.app-steps p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.app-visual {
  border-radius: 20px;
  aspect-ratio: 1200 / 805;
  position: relative;
  overflow: hidden;
}
.app-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.app-overlay-card {
  background: #fff;
  border-radius: 16px;
  width: 250px;
  padding: 20px 22px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  box-shadow: 0 24px 48px #00000030;
}
.app-overlay-status {
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
}
.app-overlay-dot {
  background: var(--green);
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
}
.app-overlay-temp {
  letter-spacing: -.03em;
  margin: 0 0 6px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.app-overlay-label {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 13px;
}
.app-overlay-bar {
  background: #e7e4dd;
  border-radius: 99px;
  height: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}
.app-overlay-bar > span {
  background: var(--ink);
  border-radius: 99px;
  height: 100%;
  display: block;
}
.app-overlay-target {
  border-top: 1px solid #e7e4dd;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  font-size: 13px;
  display: flex;
}
.app-overlay-target strong {
  font-size: 14px;
}
@media (width <= 900px) {
  .app-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .app-overlay-card {
    width: calc(100% - 40px);
    max-width: 260px;
  }
}
@media (width <= 640px) {
  .app-overlay-card {
    width: calc(100% - 24px);
    max-width: 220px;
    padding: 16px 18px;
    right: 12px;
    bottom: 12px;
  }
  .app-overlay-status {
    margin-bottom: 12px;
    font-size: 9px;
  }
  .app-overlay-temp {
    font-size: 28px;
  }
  .app-overlay-label {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .app-overlay-bar {
    margin-bottom: 12px;
  }
  .app-overlay-target {
    padding-top: 10px;
    font-size: 12px;
  }
  .app-overlay-target strong {
    font-size: 13px;
  }
}

/* ---- Technische Spezifikationen (eigene Seite): Blöcke statt Tabs ---- */
.specs-page-section {
  padding-top: 76px;
}
.specs-content-stacked {
  flex-direction: column;
  gap: 64px;
  display: flex;
}
.specs-block:not(:first-child) {
  border-top: 1px solid #c8c4ba;
  padding-top: 56px;
}
.specs-block h2 {
  margin-bottom: 22px;
}

/* ---- Plug & Play (In drei Schritten): Schrittnummern schwarz statt grün ---- */
.decision-steps li > span {
  color: var(--ink);
}

/* ---- Kompakte Gründer-Section zwischen Testimonials und Specs ---- */
/* Größe/Layout/Textgröße wie .founder-section (Markus-Zitat), aber runder Ausschnitt und heller Hintergrund */
.founder-mini-section {
  background: var(--paper);
  padding: 90px 0;
}
.founder-mini-layout {
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 72px;
  display: grid;
}
.founder-mini-portrait {
  border-radius: 50%;
  width: 330px;
  height: 330px;
  overflow: hidden;
}
.founder-mini-portrait img {
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  height: 100%;
  display: block;
}
.founder-mini-copy h2 {
  letter-spacing: -.045em;
  max-width: 800px;
  margin: 0 0 18px;
  font-size: clamp(31px, 3.3vw, 47px);
  font-weight: 760;
  line-height: 1.13;
}
.founder-mini-copy p {
  letter-spacing: -.01em;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
}
.founder-mini-name {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
@media (width <= 900px) {
  .founder-mini-layout {
    grid-template-columns: 260px 1fr;
    gap: 46px;
  }
  .founder-mini-portrait {
    width: 260px;
    height: 260px;
  }
}
@media (width <= 720px) {
  .founder-mini-copy h2 {
    font-size: 30px;
  }
  .founder-mini-copy p {
    font-size: 17px;
  }
}
@media (width <= 560px) {
  .founder-mini-section {
    padding: 72px 0;
  }
  .founder-mini-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    text-align: center;
  }
  .founder-mini-portrait {
    width: 200px;
    height: 200px;
  }
  .founder-mini-copy p {
    max-width: none;
  }
}

/* ---- app-steps innerhalb .material-copy: alte Haken-Bullets deaktivieren ---- */
.material-copy .app-steps li:before {
  content: none;
}
.material-copy .app-steps li {
  padding-left: 0;
}

/* ---- Seite "Über uns": Zeitstrahl "Wie alles begann" mit 5 Cards ---- */
.timeline-heading h2 {
  letter-spacing: -.055em;
  margin: 10px 0 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
  max-width: 780px;
}
.timeline-cards {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 28px;
  margin-top: 44px;
  padding-top: 12px;
  padding-bottom: 4px;
  display: flex;
  overflow-x: auto;
}
.timeline-cards::-webkit-scrollbar {
  display: none;
}
.timeline-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-top: 2px solid #3c3c38;
  padding-top: 34px;
  position: relative;
}
.timeline-dot {
  background: #fff;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  top: -8px;
  left: 0;
}
.timeline-label {
  color: #aaa9a4;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  display: block;
}
.timeline-media {
  background: linear-gradient(155deg, #2c2b28, #54514a 55%, #7c766a);
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  display: flex;
}
.timeline-media span {
  color: #d8d3c8;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.timeline-card h3 {
  color: #fff;
  letter-spacing: -.025em;
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.22;
}
.timeline-card p {
  color: #aaa9a4;
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
}
@media (width <= 640px) {
  .timeline-cards {
    margin-top: 28px;
  }
  .timeline-card {
    flex-basis: 82%;
  }
}

/* ---- Seite "Über uns": Eisbad-Revolution als eigene, helle Section ohne Boxen ---- */
.revolution-section {
  background: var(--paper);
  padding: clamp(90px, 12vw, 150px) 0;
}
.revolution-heading {
  max-width: 700px;
  text-align: center;
  margin: 0 auto 60px;
}
.revolution-heading h2 {
  color: var(--ink);
  letter-spacing: -.05em;
  margin: 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
}
.revolution-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  display: grid;
}
.revolution-item {
  text-align: center;
}
.revolution-item h3 {
  color: var(--ink);
  letter-spacing: -.025em;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}
.revolution-item p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (width <= 900px) {
  .revolution-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }
}
@media (width <= 560px) {
  .revolution-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---- Seite "Über uns": zentrales Zitat von Christian ---- */
.quote-section {
  background: var(--paper);
  padding: clamp(90px, 12vw, 150px) 0;
}
.quote-layout {
  max-width: 900px;
  text-align: center;
}
.quote-layout blockquote {
  margin: 0;
}
.quote-layout blockquote p {
  letter-spacing: -.03em;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}
.quote-layout blockquote footer {
  margin-top: 26px;
  display: grid;
  gap: 2px;
}
.quote-layout blockquote footer strong {
  font-size: 15px;
}
.quote-layout blockquote footer span {
  color: var(--muted);
  font-size: 13px;
}
.quote-note {
  color: var(--muted);
  max-width: 640px;
  margin: 34px auto 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ---- Seite "Über uns": Partner-Section (Headline + wiederverwendetes Logo-Band) ---- */
.partners-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
}
.partners-heading {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}
.partners-heading h2 {
  letter-spacing: -.045em;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.04;
}
.partners-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* ---- Seite "Über uns": Vision 2036 ---- */
.vision-section {
  background: #eae6e0;
  padding: clamp(90px, 12vw, 150px) 0;
}
.vision-layout {
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  display: grid;
}
.vision-number {
  position: sticky;
  top: 120px;
  letter-spacing: -.05em;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 800;
  line-height: .84;
}
.vision-copy h2 {
  letter-spacing: -.05em;
  margin: 8px 0 22px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}
.vision-lead {
  max-width: 560px;
  margin: 0 0 12px;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}
.vision-list {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, .16);
}
.vision-item {
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 17, 17, .16);
  display: grid;
}
.vision-item strong {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.vision-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
@media (width <= 900px) {
  .vision-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vision-number {
    position: static;
    font-size: 110px;
  }
}

/* ---- Seite "Über uns": Hero wie auf der PDP (heller Hintergrund, Bild rechts statt Vollbild) ---- */
.about-hero {
  position: relative;
  background: var(--paper);
  padding: 130px clamp(24px, 5vw, 70px) 90px;
  overflow: hidden;
}
.about-hero-layout {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  display: grid;
}
.about-hero-copy h1 {
  color: var(--ink);
  letter-spacing: -.065em;
  margin: 18px 0 24px;
  font-size: clamp(46px, 5.6vw, 80px);
  line-height: .92;
}
.about-hero-lead {
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.6;
}
.about-hero-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  max-width: 460px;
  overflow: hidden;
}
.about-hero-portrait img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media (width <= 900px) {
  .about-hero {
    padding: 120px 24px 60px;
  }
  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero-portrait {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (width <= 560px) {
  .about-hero {
    padding: 106px 14px 50px;
  }
  .about-hero-copy h1 {
    font-size: 44px;
  }
}

/* ---- Seite "Über uns": zentrierte CTA-Section vor dem Showroom-Teaser ---- */
.about-cta-section {
  background: #fff;
  padding: clamp(90px, 12vw, 150px) 0;
}
.about-cta-content {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.about-cta-content h2 {
  letter-spacing: -.05em;
  margin: 10px 0 18px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}
.about-cta-lead {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.55;
}
.about-cta-actions {
  justify-content: center;
}
