/**
 * Schoch Edelstahl — site layout
 * Rhythm: Heinz editorial (full-bleed themes, display type, soft CTAs)
 * Colors: Schoch blue + cream/white
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body-regular), sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
img,
video,
iframe {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--schoch-blue);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
}

/* —— NAV —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--global-navbar-height-sm);
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
@media (min-width: 768px) {
  .site-nav {
    height: var(--global-navbar-height-md);
    padding: 0 1.75rem;
  }
}
@media (min-width: 1024px) {
  .site-nav {
    height: var(--global-navbar-height-lg);
    padding: 0 2rem;
  }
}
.site-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-nav__logo {
  height: 44px;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 1024px) {
  .site-nav__logo {
    height: 52px;
    max-width: 12.5rem;
  }
}
.site-nav__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin-left: 0.5rem;
}
.site-nav__links a {
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.875rem;
  color: var(--schoch-blue-deep);
  letter-spacing: 0.01em;
}
.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--schoch-blue);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}
.cta-nav {
  padding: 0.5rem 1.1rem !important;
  font-size: 0.8125rem !important;
}
.nav-menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid var(--schoch-blue);
  background: transparent;
  color: var(--schoch-blue);
  cursor: pointer;
  display: grid;
  place-items: center;
}
@media (min-width: 1100px) {
  .site-nav__links {
    display: flex;
  }
  .nav-menu-btn {
    display: none;
  }
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--global-header-height) 0 0;
  z-index: 99;
  background: var(--cream-2);
  padding: 1.5rem 1.25rem 2rem;
  overflow-y: auto;
}
.nav-drawer.is-open {
  display: block;
}
.nav-drawer a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 1.125rem;
  color: var(--schoch-blue);
  border-bottom: 1px solid var(--stroke);
}
.nav-drawer a.cta-button {
  display: inline-flex;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body-bold), sans-serif;
  font-size: 1rem;
  color: var(--color-cta-text-primary);
  border-bottom: none;
}
.nav-drawer a.cta-button:hover,
.nav-drawer a.cta-button:focus-visible {
  background: var(--color-cta-hover);
  color: var(--color-cta-hover-text);
}
.nav-drawer a.cta-button--subdued {
  color: var(--color-cta-subdued-default);
}
.nav-drawer a.cta-button--subdued:hover,
.nav-drawer a.cta-button--subdued:focus-visible {
  color: var(--color-cta-subdued-hover);
}
.nav-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— HERO —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(88vh - var(--global-header-height));
  display: flex;
  align-items: flex-end;
  background: var(--schoch-blue-deep);
}
@media (min-width: 1024px) {
  .hero {
    min-height: calc(100svh - var(--global-header-height));
  }
}
.hero .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.hero .cta-button:hover,
.hero .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.hero .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.hero .cta-button--subdued:hover,
.hero .cta-button--subdued:focus-visible {
  background: var(--cream);
  color: var(--schoch-blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.hero__video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--schoch-blue-deep);
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  max-width: none;
  z-index: 0;
}
.hero__player {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero.is-playing .hero__poster {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero.is-playing .hero__player {
  pointer-events: auto;
}
.hero__video iframe,
.hero__video video,
.hero__player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: 0;
  object-fit: cover;
}
.hero__play {
  cursor: pointer;
  border: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.25) 0%,
    rgba(5, 13, 43, 0.45) 40%,
    rgba(5, 13, 43, 0.92) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  color: #fff;
}
.hero__eyebrow {
  font-family: var(--font-body-semibold), sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  opacity: 0.92;
}
.hero .headline-2,
.hero .headline-3,
.hero .headline-4 {
  color: var(--cream);
}
.hero .paragraph-large {
  color: rgba(255, 255, 255, 0.9);
}
.hero__cta-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— PAGE HERO —— */
.page-hero {
  padding: 3.25rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}
.page-hero--media {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: #fff;
}
.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.page-hero--media .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-width: none;
}
.page-hero--media .page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.2) 0%,
    rgba(5, 13, 43, 0.78) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.page-hero--media[data-thumb-play] .page-hero__bg {
  background: var(--schoch-blue-deep);
}
.page-hero--media[data-thumb-play] .page-hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  max-width: none;
}
.page-hero--media[data-thumb-play] .media-play__btn {
  z-index: 2;
}
.page-hero--media[data-thumb-play] .container-7xl {
  z-index: 5;
  transition: opacity 0.35s ease;
}
.page-hero--media[data-thumb-play].is-playing .page-hero__scrim,
.page-hero--media[data-thumb-play].is-playing .container-7xl {
  opacity: 0;
  pointer-events: none;
}
.page-hero--media[data-thumb-play].is-playing .media-play__btn {
  opacity: 0;
  pointer-events: none;
}
.page-hero--media .container-7xl {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.page-hero--media .headline-3,
.page-hero--media .headline-4 {
  color: var(--cream);
}
.page-hero--media .lede,
.page-hero--media .breadcrumb {
  color: rgba(255, 255, 255, 0.88);
}
.page-hero--media .breadcrumb a:hover {
  color: #fff;
}
.page-hero .lede {
  max-width: 40rem;
  margin-top: 1rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--schoch-blue);
  text-decoration: underline;
}

.section-head {
  margin-bottom: 2rem;
}
.section-head .lede {
  max-width: 42rem;
  margin-top: 1rem;
}
.section-pad {
  padding: 3.5rem 0;
}
@media (min-width: 1024px) {
  .section-pad {
    padding: 5.5rem 0;
  }
}
.section-pad--tight {
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .section-pad--tight {
    padding: 3.5rem 0;
  }
}

/* —— PRODUCT RAIL (Heinz-like, no card chrome) —— */
.rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.product-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.25rem 1.25rem;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 40, 121, 0.45) transparent;
}
.product-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}
.product-rail.is-dragging a {
  pointer-events: none;
}
@media (min-width: 1024px) {
  .product-rail {
    padding-left: max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem));
    padding-right: 1.25rem;
    gap: 1.25rem;
  }
}
.product-rail::-webkit-scrollbar {
  height: 8px;
}
.product-rail::-webkit-scrollbar-track {
  background: rgba(14, 40, 121, 0.08);
  border-radius: 999px;
}
.product-rail::-webkit-scrollbar-thumb {
  background: rgba(14, 40, 121, 0.4);
  border-radius: 999px;
}
.product-rail::-webkit-scrollbar-thumb:hover {
  background: rgba(14, 40, 121, 0.65);
}
.product-rail-wrap {
  position: relative;
}
.product-rail__nav {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 13, 43, 0.72);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.product-rail-wrap.is-scrollable .product-rail__nav {
  display: inline-flex;
}
.product-rail__nav:hover:not(:disabled) {
  background: rgba(14, 40, 121, 0.92);
  transform: scale(1.05);
}
.product-rail__nav:disabled {
  opacity: 0.28;
  cursor: default;
}
.product-rail__nav span {
  font-size: 1.65rem;
  line-height: 1;
  margin-top: -0.1rem;
}
.product-rail__nav--prev {
  left: 0.65rem;
}
.product-rail__nav--next {
  right: 0.65rem;
}
@media (max-width: 767px) {
  .product-rail__nav {
    width: 2.35rem;
    height: 2.35rem;
  }
  .product-rail__nav--prev {
    left: 0.35rem;
  }
  .product-rail__nav--next {
    right: 0.35rem;
  }
}
.rail-tile {
  flex: 0 0 auto;
  width: min(72vw, 20rem);
  scroll-snap-align: start;
  color: inherit;
}
@media (min-width: 768px) {
  .rail-tile {
    width: 22rem;
  }
}
.rail-tile__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--schoch-blue-soft);
}
.rail-tile__media img,
.rail-tile__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rail-tile__media--pack {
  background: linear-gradient(160deg, #0b1020 0%, #152048 100%);
  display: grid;
  place-items: center;
}
.rail-tile__media--pack img {
  object-fit: contain;
  object-position: center;
  padding: 12% 14%;
  width: 100%;
  height: 100%;
}
.rail-tile__media--pack-light {
  background: linear-gradient(165deg, var(--cream-2) 0%, #f3ebe0 100%);
}
.rail-tile__media--pack-light img {
  object-fit: contain;
  object-position: center;
  padding: 12% 14%;
}
.rail-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.85s ease;
  pointer-events: none;
  z-index: 1;
}
.rail-tile:hover .rail-tile__media::after {
  transform: translateX(120%);
}
.rail-tile:hover .rail-tile__media img,
.rail-tile:hover .rail-tile__media video {
  transform: scale(1.06) rotate(-0.6deg);
}
.rail-tile__media video.rail-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.rail-tile.is-previewing .rail-tile__media video.rail-preview,
.rail-tile:hover .rail-tile__media video.rail-preview {
  opacity: 1;
}
.rail-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.1rem;
  font-family: var(--font-body-bold), sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(5, 13, 43, 0.75));
}
.rail-tile__meta {
  margin-top: 0.85rem;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 22rem;
}

/* —— FULL-BLEED MOTION —— */
.motion-band {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--schoch-blue-deep);
  color: #fff;
}
@media (min-width: 1024px) {
  .motion-band {
    min-height: 85vh;
  }
}
.motion-band__media {
  position: absolute;
  inset: 0;
}
.motion-band__media video,
.motion-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.motion-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.15) 0%,
    rgba(5, 13, 43, 0.55) 45%,
    rgba(5, 13, 43, 0.9) 100%
  );
}
.motion-band__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.25rem;
}
.motion-band .headline-4,
.motion-band .headline-5 {
  color: var(--cream);
}
.motion-band .paragraph-large {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin-top: 0.85rem;
}
.motion-band .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.motion-band .cta-button:hover,
.motion-band .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.motion-band .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* —— STORY / SPLIT —— */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .split--reverse > :first-child {
    order: 2;
  }
  .split--reverse > :last-child {
    order: 1;
  }
}
.split--equal {
  align-items: stretch;
}
@media (min-width: 1024px) {
  .split--equal {
    grid-template-columns: 1fr 1fr;
  }
}
.media-bleed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--schoch-blue-deep);
}
@media (min-width: 768px) {
  .media-bleed {
    aspect-ratio: 16 / 11;
  }
}
.media-bleed img,
.media-bleed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--schoch-blue-deep);
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-frame--tall {
  aspect-ratio: 4 / 5;
}

/* —— TEXT LINK ROWS (no boxes) —— */
.link-stack {
  display: grid;
  gap: 0;
}
.link-stack a,
.link-stack .link-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--stroke);
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 1.125rem;
  color: var(--schoch-blue);
  transition: padding-left 0.2s ease;
}
.theme-blue .link-stack a,
.theme-deep .link-stack a {
  color: var(--cream);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.link-stack a:hover {
  padding-left: 0.35rem;
}
.link-stack a span:last-child,
.link-stack .link-row span:last-child {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.theme-blue .link-stack a span:last-child,
.theme-deep .link-stack a span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* —— STAT STRIP (typography only) —— */
.stat-strip {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .stat-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.stat-strip strong {
  display: block;
  font-family: var(--font-title), sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-headline-primary);
}
.stat-strip p {
  margin-top: 0.65rem;
  max-width: 16rem;
}

/* —— CERT RAIL —— */
.cert-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.cert-rail a {
  flex: 0 0 auto;
  width: 9.5rem;
  height: 13rem;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  padding: 0.55rem;
  overflow: hidden;
}
.cert-rail a img,
.cert-rail > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: none;
}

/* —— TEAM FACES —— */
.face-rail {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .face-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .face-rail {
    grid-template-columns: repeat(4, 1fr);
  }
}
.face {
  color: inherit;
}
.face__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: var(--schoch-blue-soft);
}
.face__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.face:hover .face__photo img {
  transform: scale(1.045);
}
.face a {
  color: var(--schoch-blue);
  font-size: 0.875rem;
}
.face a:hover {
  text-decoration: underline;
}
.face__role {
  margin: 0.15rem 0 0.35rem;
}

/* —— PRESS / WISSEN ARTICLES —— */
.press-story {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--stroke);
}
.press-story:first-of-type {
  padding-top: 0;
}
.press-story h3 {
  margin: 0.35rem 0 1rem;
  color: var(--schoch-blue);
}
.press-story__body p + p {
  margin-top: 0.85rem;
}

.wissen-article {
  padding: 3rem 0;
  border-bottom: 1px solid var(--stroke);
}
.wissen-article:first-child {
  padding-top: 0;
}
.wissen-article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.wissen-article__media {
  margin-top: 1.75rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1020;
  display: grid;
  place-items: center;
}
.wissen-article__media--light {
  background: var(--cream-2);
}
.wissen-article__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  max-width: none;
}
.wissen-article__media:not(.wissen-article__media--light) img {
  object-fit: cover;
  padding: 0;
}

.prose-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1rem 0 0;
  max-width: 40rem;
}
.prose-list li {
  margin-top: 0.65rem;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5568);
}
.prose-list--numbered {
  list-style: decimal;
}
.prose-list strong {
  color: var(--schoch-blue);
  font-family: var(--font-body-semibold), sans-serif;
}

.faq-block {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--stroke);
  max-width: 40rem;
}
.faq-block h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-body-bold), sans-serif;
  font-size: 1.125rem;
  color: var(--schoch-blue);
}
.faq-block p {
  margin: 0;
}

.rfq-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .rfq-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.rfq-steps__item strong {
  display: block;
  font-family: var(--font-title), sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--schoch-blue);
  line-height: 1;
  margin-bottom: 0.65rem;
}
.rfq-steps__item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-body-bold), sans-serif;
  font-size: 1.05rem;
  color: var(--schoch-blue);
}
.rfq-steps__item p {
  margin: 0;
  max-width: 22rem;
}

.shop-bridge {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}
.shop-bridge a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--stroke);
  font-family: var(--font-body-semibold), sans-serif;
  color: var(--schoch-blue);
}
.shop-bridge a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.shop-bridge span {
  color: var(--text-muted, #64748b);
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.875rem;
}
.shop-bridge span::after {
  content: none;
}

/* —— DOWNLOAD LIST —— */
.download-list {
  display: grid;
  gap: 0;
}
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--stroke);
  background: transparent;
}
.download-item:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-item strong {
  font-family: var(--font-body-semibold), sans-serif;
  color: var(--schoch-blue);
}

/* —— JOBS LIST —— */
.career-list a {
  display: block;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--stroke);
}
.career-list h3 {
  margin: 0;
  font-family: var(--font-body-bold), sans-serif;
  font-size: 1.125rem;
  color: var(--schoch-blue);
  letter-spacing: 0.02em;
}
.career-list p {
  margin: 0.35rem 0 0;
}

/* —— TABLES / FORMS —— */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stroke);
  font-family: var(--font-body-regular), sans-serif;
  vertical-align: top;
}
.spec-table th {
  font-family: var(--font-body-semibold), sans-serif;
  width: 34%;
  color: var(--schoch-blue);
  padding-right: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}
.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.875rem;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  padding: 0.9rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: 0;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 1rem;
  background: var(--white);
}
.form-grid textarea {
  min-height: 8.5rem;
  resize: vertical;
}
.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.center-block {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}
.center-block .cta-row {
  justify-content: center;
}
.center-block .lede {
  margin: 1rem auto 0;
}

.dual-exit {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .dual-exit {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.dual-exit h2 {
  margin-bottom: 0.75rem;
}

.eyebrow {
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--color-text-secondary);
}

.prose {
  max-width: 40rem;
}
.prose p + p {
  margin-top: 1rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 1rem 0;
}
.prose li + li {
  margin-top: 0.4rem;
}

/* —— FOOTER —— */
.site-footer {
  padding: 3.75rem 1.25rem 2rem;
  background: var(--schoch-blue-deep);
  color: #fff;
  /* Override token paragraph colors (--color-text-primary is navy on light pages) */
  --color-text-primary: #fff;
  --color-text-secondary: rgba(254, 241, 221, 0.9);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .footer-grid {
    gap: 1.75rem;
  }
}
.site-footer h2 {
  font-family: var(--font-body-bold), sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--cream);
  opacity: 1;
}
.site-footer p,
.site-footer .paragraph-small,
.site-footer .paragraph-xsmall {
  color: var(--cream);
}
.site-footer li + li {
  margin-top: 0.45rem;
}
.site-footer a {
  color: #fff;
  font-family: var(--font-body-regular), sans-serif;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cream);
  text-decoration: underline;
}
.footer-copy {
  max-width: 80rem;
  margin: 2.5rem auto 0;
  color: rgba(254, 241, 221, 0.9);
  opacity: 1;
}

/* —— MOTION / REVEAL —— */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* Legacy aliases used on older markup during migration */
.product-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--schoch-blue-soft);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem;
  font-family: var(--font-body-bold), sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(5, 13, 43, 0.7));
}
.product-card p {
  margin-top: 0.75rem;
}
.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: var(--schoch-blue-soft);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* —— PATH GATE (Anfrage funnel) —— */
.path-gate {
  display: grid;
  gap: 0;
}
@media (min-width: 900px) {
  .path-gate {
    grid-template-columns: 1fr 1fr;
  }
}
.path-gate__choice {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 2rem 1.5rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 900px) {
  .path-gate__choice {
    min-height: 28rem;
    padding: 2.5rem 2rem;
  }
}
.path-gate__choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--path-img);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.7s ease;
}
.path-gate__choice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.15) 0%,
    rgba(5, 13, 43, 0.82) 100%
  );
  z-index: -1;
}
.path-gate__choice:hover::before {
  transform: scale(1.04);
}
.path-gate__choice .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.path-gate__choice h2 {
  color: var(--cream);
  margin: 0 0 0.65rem;
}
.path-gate__choice p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.path-gate__choice .cta-row {
  margin-top: 1.25rem;
}
.path-gate__choice .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.path-gate__choice .cta-button:hover,
.path-gate__choice .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.path-gate__choice .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.path-gate__choice .cta-button--subdued:hover,
.path-gate__choice .cta-button--subdued:focus-visible {
  background: var(--cream);
  color: var(--schoch-blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.path-gate__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1rem;
}
.path-gate__links a {
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.92;
}
.path-gate__links a:hover {
  opacity: 1;
}

/* —— FILM BAND (poster-first, click-to-play) —— */
.film-band {
  position: relative;
  min-height: min(78vh, 42rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--schoch-blue-deep);
  color: #fff;
}
.film-band__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  z-index: 0;
}
.film-band__player {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.film-band__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.film-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.15) 0%,
    rgba(5, 13, 43, 0.72) 100%
  );
  pointer-events: none;
}
.film-band__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 3rem 0;
}
.film-band.is-playing .film-band__poster,
.film-band.is-playing .film-band__scrim,
.film-band.is-playing .film-band__content {
  opacity: 0;
  pointer-events: none;
}
.film-band.is-playing .film-band__content {
  display: none;
}
.film-band .headline-4,
.film-band .headline-5 {
  color: var(--cream);
}
.film-band .lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}
.film-band .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.film-band .cta-button:hover,
.film-band .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.film-band .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.film-band .cta-button--subdued:hover,
.film-band .cta-button--subdued:focus-visible {
  background: var(--cream);
  color: var(--schoch-blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* —— VISUAL BAND (Team / editorial photo plane) —— */
.visual-band {
  position: relative;
  min-height: min(58vh, 34rem);
  overflow: hidden;
  background: var(--schoch-blue-deep);
}
.visual-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.visual-band__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5rem 0;
  background: linear-gradient(transparent, rgba(5, 13, 43, 0.7));
  color: rgba(255, 255, 255, 0.9);
}

/* —— EDITORIAL TRACK (Jobs lists without cards) —— */
.editorial-track {
  display: grid;
  gap: 0;
}
.editorial-track__item {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stroke);
  color: inherit;
}
.editorial-track__item:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.editorial-track__item h3 {
  margin: 0;
  font-family: var(--font-body-bold), sans-serif;
  font-size: 1.2rem;
  color: var(--schoch-blue);
  letter-spacing: 0.02em;
}
.editorial-track__item p {
  margin: 0;
  max-width: 36rem;
}
.editorial-track__meta {
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
}

/* —— PRESS INDEX / ARTICLE —— */
.press-index a {
  display: grid;
  gap: 0.4rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--stroke);
}
.press-index a:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.press-index h3 {
  margin: 0;
  font-family: var(--font-body-bold), sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--schoch-blue);
}
.press-index p {
  margin: 0;
  max-width: 40rem;
}
.article-hero {
  padding: 3rem 0 2rem;
}
.article-body {
  max-width: 42rem;
}
.article-body p + p {
  margin-top: 1.1rem;
}
.article-body .lede {
  margin-bottom: 1.5rem;
}

.rfq-panel {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .rfq-panel {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
  }
}
.rfq-aside {
  display: grid;
  gap: 1.5rem;
}
.rfq-aside__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--schoch-blue-soft);
}
@media (min-width: 960px) {
  .rfq-aside__media {
    aspect-ratio: 3 / 4;
  }
}
.rfq-aside__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.direct-dial {
  display: grid;
  gap: 1.25rem;
}
.direct-dial__person p {
  margin: 0.2rem 0 0;
}
.direct-dial__person a {
  color: var(--schoch-blue);
}
.direct-dial__person a:hover {
  text-decoration: underline;
}

.team-card a {
  color: var(--schoch-blue);
  font-size: 0.875rem;
}
.hub-grid {
  display: none;
}

/* —— PASS 4: Higgsfield slots, shop, culture, motion —— */
.higgs-slot {
  position: relative;
  overflow: hidden;
  background: var(--schoch-blue-deep);
  color: #fff;
  isolation: isolate;
}
.higgs-slot--16x9 {
  aspect-ratio: 16 / 9;
  min-height: 18rem;
}
.higgs-slot--9x16 {
  aspect-ratio: 9 / 16;
  max-width: 26rem;
  margin-inline: auto;
  min-height: 22rem;
}
.higgs-slot--bleed {
  width: 100%;
  min-height: min(78vh, 46rem);
  aspect-ratio: auto;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .higgs-slot--bleed {
    min-height: 88vh;
  }
}
.higgs-slot__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.higgs-slot__media img,
.higgs-slot__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}
.higgs-slot__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.12) 0%,
    rgba(5, 13, 43, 0.55) 48%,
    rgba(5, 13, 43, 0.92) 100%
  );
  pointer-events: none;
}
.higgs-slot__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 241, 221, 0.9);
  background: rgba(5, 13, 43, 0.55);
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(254, 241, 221, 0.25);
}
.higgs-slot__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3rem;
}
.higgs-slot__content .headline-4,
.higgs-slot__content .headline-5 {
  color: var(--cream);
}
.higgs-slot__content .paragraph-large {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin-top: 0.75rem;
}
.higgs-slot .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.higgs-slot .cta-button:hover,
.higgs-slot .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.higgs-slot .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.higgs-slot .cta-button--subdued:hover,
.higgs-slot .cta-button--subdued:focus-visible {
  background: var(--cream);
  color: var(--schoch-blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.higgs-slot .breadcrumb a {
  color: inherit;
}
.higgs-slot.is-ready .higgs-slot__badge {
  opacity: 0.65;
}
.higgs-slot[data-play="hover"] video {
  pointer-events: none;
}
.higgs-pair {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}
@media (min-width: 900px) {
  .higgs-pair {
    grid-template-columns: 1.4fr 0.7fr;
    gap: 1.25rem;
    padding: 1.5rem max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem));
    align-items: stretch;
  }
  .higgs-pair .higgs-slot--9x16 {
    margin-inline: 0;
    max-width: none;
    height: 100%;
    aspect-ratio: 9 / 16;
  }
}

.culture-band {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid rgba(14, 40, 121, 0.08);
  border-bottom: 1px solid rgba(14, 40, 121, 0.08);
}
.culture-band__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .culture-band__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}
.culture-band .lede {
  max-width: 34rem;
  color: var(--text-muted);
}
.culture-band__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--schoch-blue-deep);
}
.culture-band__visual img,
.culture-band__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.culture-band__visual video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.culture-band__visual.is-previewing video,
.culture-band__visual:hover video,
.culture-band__visual--autoplay video,
.culture-band__visual video[data-auto-loop] {
  opacity: 1;
}
.culture-band__visual .motion-cue {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14, 40, 121, 0.72);
  padding: 0.35rem 0.55rem;
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}
.culture-band__visual.is-previewing .motion-cue,
.culture-band__visual:hover .motion-cue {
  opacity: 0;
}

/* —— Home motion bands (finished film, no production badges) —— */
.motion-band {
  position: relative;
  overflow: hidden;
  background: var(--schoch-blue-deep);
  color: #fff;
  isolation: isolate;
}
.motion-band--bleed {
  width: 100%;
  min-height: min(78vh, 46rem);
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .motion-band--bleed {
    min-height: 88vh;
  }
}
.motion-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.motion-band__media img,
.motion-band__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-width: none;
}
.motion-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.1) 0%,
    rgba(5, 13, 43, 0.5) 48%,
    rgba(5, 13, 43, 0.92) 100%
  );
  pointer-events: none;
}
.motion-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3rem;
}
.motion-band__content .headline-4,
.motion-band__content .headline-5 {
  color: var(--cream);
}
.motion-band__content .paragraph-large {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin-top: 0.75rem;
}
.motion-band .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.motion-band .cta-button:hover,
.motion-band .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.motion-band .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.motion-band .cta-button--subdued:hover,
.motion-band .cta-button--subdued:focus-visible {
  background: var(--cream);
  color: var(--schoch-blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.motion-band.is-live::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 3;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 0 rgba(254, 241, 221, 0.55);
  animation: motion-live-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes motion-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 241, 221, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(254, 241, 221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 241, 221, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-band.is-live::after {
    animation: none;
  }
}

/* —— Home hub destinations —— */
.hub-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
}
@media (min-width: 720px) {
  .hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1100px) {
  .hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hub-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  min-height: 7.5rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  color: var(--schoch-blue-deep);
  border: 1px solid rgba(14, 40, 121, 0.12);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hub-tile:hover {
  background: var(--schoch-blue);
  color: var(--cream);
  border-color: var(--schoch-blue);
}
.hub-tile--accent {
  background: var(--schoch-blue);
  color: var(--cream);
  border-color: var(--schoch-blue);
}
.hub-tile--accent:hover {
  background: var(--schoch-blue-deep);
}
.hub-tile__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hub-tile__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.875rem;
  opacity: 0.72;
}
.hub-tile:hover .hub-tile__hint,
.hub-tile--accent .hub-tile__hint {
  opacity: 0.85;
}

.text-readable {
  max-width: 36rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.lede-tight {
  max-width: 32rem;
  margin-top: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.text-readable--on-dark,
.lede-tight.text-readable--on-dark,
.paragraph-large.text-readable--on-dark,
.paragraph-large.lede-tight.text-readable--on-dark {
  color: rgba(254, 241, 221, 0.92);
}

/* Shop browse (Heinz Produkte rhythm) */
.shop-cat-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.25rem 1rem;
  scroll-snap-type: x mandatory;
}
@media (min-width: 1024px) {
  .shop-cat-rail {
    padding-left: max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem));
  }
}
.shop-cat {
  flex: 0 0 auto;
  width: min(82vw, 26rem);
  scroll-snap-align: start;
  color: inherit;
}
.shop-cat__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1020, #1a2a5c);
}
.shop-cat__media img,
.shop-cat__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-cat__media video.shop-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  padding: 0;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.shop-cat:hover .shop-cat__media video.shop-preview,
.shop-cat.is-previewing .shop-cat__media video.shop-preview {
  opacity: 1;
}
.shop-cat__media--pack {
  background: #10182e;
}
.shop-cat__media--pack img {
  object-fit: cover;
  object-position: center 40%;
  padding: 0;
}
.shop-cat__media--tone-cream {
  background: #f3ebe0;
}
.shop-cat__media--tone-deep {
  background: #0e2879;
}
/* Crisp steel on shop category tiles — no bleach blends */
.shop-cat__media--pack img,
.shop-cat__media--tone-cream img,
.shop-cat__media--tone-deep img {
  mix-blend-mode: normal;
  filter: contrast(1.1) saturate(1.04) brightness(0.96);
}
.shop-cat:hover .shop-cat__media img,
.shop-cat:hover .shop-cat__media video {
  transform: scale(1.05);
}
.shop-cat__label {
  margin-top: 0.9rem;
  font-family: var(--font-body-bold), sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--schoch-blue);
}
.shop-cat__meta {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 22rem;
}

.shop-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
  }
}
.shop-item {
  color: inherit;
  display: block;
}
.shop-item__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(165deg, var(--cream-2) 0%, #f0e6d6 100%);
  isolation: isolate;
}
.shop-item__media img,
.shop-item__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-item__media video.shop-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  padding: 0;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.shop-item:hover .shop-item__media img {
  transform: scale(1.07) rotate(-1deg);
}
.shop-item:hover .shop-item__media video.shop-preview,
.shop-item.is-previewing .shop-item__media video.shop-preview {
  opacity: 1;
}
.shop-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 65%
  );
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.shop-item:hover .shop-item__media::after {
  transform: translateX(130%);
}
.shop-item__name {
  margin-top: 0.95rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 1.05rem;
  color: var(--schoch-blue);
}
.shop-item__meta {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.shop-item__cta {
  margin-top: 0.55rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.875rem;
  color: var(--schoch-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.motion-band.is-paused .motion-band__media video {
  opacity: 0.92;
}
.film-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.9rem;
  padding: 0;
}
.film-cue::before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 2px solid var(--cream);
  background: rgba(5, 13, 43, 0.35)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fef1dd'%3E%3Cpath d='M9 7.5v9l7-4.5-7-4.5z'/%3E%3C/svg%3E")
    center / 1.1rem no-repeat;
}

.team-card__photo img {
  object-position: center 18%;
}
.rfq-aside__media img {
  object-position: center 40%;
}
.visual-band__media img,
.visual-band img {
  object-fit: cover;
  object-position: center 35%;
}
/* Team / people bands: keep heads in frame (not center-cropped) */
.visual-band--people > img,
.visual-band--people .visual-band__media img {
  object-position: center 18%;
}
.path-gate__choice::before {
  background-position: center 40%;
}

@media (prefers-reduced-motion: reduce) {
  .rail-tile__media img,
  .rail-tile__media video,
  .shop-item__media img,
  .shop-cat__media img,
  .face__photo img,
  .rail-tile__media::after,
  .shop-item__media::after {
    transition: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .world-tile__media img,
  .world-tile__media video {
    transition: none !important;
    transform: none !important;
  }
}

/* —— Produkte worlds (Agent2) —— */
.world-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
@media (min-width: 720px) {
  .world-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.world-tile {
  display: block;
  color: inherit;
  text-decoration: none;
}
.world-tile:hover {
  color: inherit;
}
.world-tile__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1020, #1a2a5c);
}
.world-tile__media img,
.world-tile__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.world-tile__media--pack {
  background: #10182e;
}
.world-tile__media--pack img {
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
}
.world-tile__media--tone-cream {
  background: #f3ebe0;
}
.world-tile__media--tone-deep {
  background: #0e2879;
}
/* Crisp steel on product-world tiles — no bleach blends */
.world-tile__media--pack img,
.world-tile__media--tone-cream img,
.world-tile__media--tone-deep img {
  mix-blend-mode: normal;
  filter: contrast(1.1) saturate(1.04) brightness(0.96);
}
.world-tile__media video.rail-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.world-tile.is-previewing .world-tile__media video.rail-preview,
.world-tile:hover .world-tile__media video.rail-preview {
  opacity: 1;
}
.world-tile:hover .world-tile__media img,
.world-tile:hover .world-tile__media video {
  transform: scale(1.04);
}
.world-tile__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.9rem 0 0;
  color: var(--schoch-blue-deep, #0e2879);
}
.world-tile__meta {
  margin: 0.35rem 0 0;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted, rgba(14, 40, 121, 0.65));
  line-height: 1.4;
}

/* =========================================================
   HOME Aufbau — Heinz structure × Schoch blue (Agent Home)
   Scoped via .page-home so other pages stay intact.
   ========================================================= */

.page-home .hero--brand {
  min-height: calc(85vh - var(--global-header-height));
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-home .hero--brand {
    min-height: calc(92svh - var(--global-header-height));
  }
}
.page-home .hero__scrim--brand {
  background:
    linear-gradient(
      180deg,
      rgba(14, 40, 121, 0.42) 0%,
      rgba(5, 13, 43, 0.5) 45%,
      rgba(5, 13, 43, 0.86) 100%
    );
}
.page-home .hero__content--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.25rem 3.5rem;
  max-width: 56rem;
}
.page-home .hero__display {
  color: var(--cream);
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(5, 13, 43, 0.35);
}
.page-home .hero__est {
  margin: 1rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(0.8rem, 1.6vw, 1.05rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(254, 241, 221, 0.92);
}
.page-home .hero__lede {
  margin-top: 1.35rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  line-height: 1.45;
}
.page-home .hero__cta-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* —— Heinz-style full-bleed infinity hero —— */
.page-home .home-infinity {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--global-header-height));
  min-height: 28rem;
  overflow: hidden;
  background: #050d2b;
  display: flex;
  align-items: flex-end;
}
.page-home .home-infinity__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.page-home .home-infinity__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 43, 0.2) 0%,
    rgba(5, 13, 43, 0.05) 45%,
    rgba(5, 13, 43, 0.75) 100%
  );
  pointer-events: none;
}
.page-home .home-infinity__bar {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .page-home .home-infinity__bar {
    padding: 2rem 2.5rem 3rem;
  }
}
.page-home .home-infinity__brand {
  margin: 0;
  font-family: var(--font-title), sans-serif;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.page-home .home-infinity__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-home .home-infinity .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-home .home-infinity .cta-button:hover,
.page-home .home-infinity .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-home .home-infinity .cta-button--subdued {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.page-home .home-infinity .cta-button--subdued:hover,
.page-home .home-infinity .cta-button--subdued:focus-visible {
  background: var(--cream);
  color: var(--schoch-blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}
@media (prefers-reduced-motion: reduce) {
  .page-home .home-infinity__video {
    display: none;
  }
  .page-home .home-infinity {
    background:
      linear-gradient(180deg, rgba(5, 13, 43, 0.45), rgba(5, 13, 43, 0.85)),
      url("/prototype/media/higgsfield/hero-poster.jpg") center / cover;
  }
}

/* Vier Produktwelten — dunkles Blau, Shop-Bilder */
.page-home .home-worlds {
  background: #0e2879;
  color: #fff;
  padding: 3.25rem 0 2.75rem;
  overflow: hidden;
  scroll-margin-top: calc(var(--global-header-height) + 0.5rem);
}
@media (min-width: 1024px) {
  .page-home .home-worlds {
    padding: 4.5rem 0 3.5rem;
  }
}
.page-home .home-worlds__title {
  color: var(--cream);
  margin: 0;
}
.page-home .home-worlds .home-products__lede {
  color: rgba(254, 241, 221, 0.82);
  max-width: 28rem;
  margin: 0.75rem 0 0;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}
.page-home .home-worlds .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-home .home-worlds .cta-button:hover,
.page-home .home-worlds .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-home .home-worlds .rail-tile__media--blend {
  background: #0e2879 !important;
  border-radius: 0;
}
.page-home .home-worlds .rail-tile__media--blend img {
  padding: 12% 14% 24% !important;
  object-fit: contain !important;
  mix-blend-mode: normal;
  filter: contrast(1.08) saturate(1.02) brightness(0.97);
  background: transparent;
}
.page-home .home-worlds .rail-tile.is-previewing img,
.page-home .home-worlds .rail-tile:hover img {
  opacity: 0;
}
.page-home .home-worlds .rail-preview {
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: normal;
}
.page-home .home-worlds .rail-tile.is-previewing .rail-preview,
.page-home .home-worlds .rail-tile:hover .rail-preview {
  opacity: 1;
}

/* Products rail on blue — Heinz UNSERE PRODUKTE scale */
.page-home .home-products {
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-home .home-products {
    padding: 5rem 0 3.25rem;
  }
}
.page-home .home-products__title {
  color: var(--cream);
}
.page-home .home-products__lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
  margin-top: 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
}
.page-home .home-products .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-home .home-products .cta-button:hover,
.page-home .home-products .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-home .product-rail--hero {
  gap: 1.15rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .page-home .product-rail--hero {
    gap: 1.5rem;
  }
}
.page-home .rail-tile--lg {
  width: min(78vw, 20rem);
}
@media (min-width: 768px) {
  .page-home .rail-tile--lg {
    width: min(42vw, 24rem);
  }
}
@media (min-width: 1280px) {
  .page-home .rail-tile--lg {
    width: 26rem;
  }
}
.page-home .rail-tile--lg .rail-tile__media {
  aspect-ratio: 3 / 4;
  border-radius: 0.65rem;
  min-height: min(52vh, 28rem);
}
.page-home .rail-tile--lg .rail-tile__media--pack {
  background: linear-gradient(165deg, #06102a 0%, #13245a 55%, #0e2879 100%);
}
.page-home .rail-tile--lg .rail-tile__media--tone-cream {
  background: linear-gradient(165deg, #3a2f22 0%, #6b5540 45%, #c4a882 100%);
}
.page-home .rail-tile--lg .rail-tile__media--tone-paper {
  background: linear-gradient(165deg, #f7efe3 0%, #efe2d0 55%, #e4d3bb 100%);
}
.page-home .rail-tile--lg .rail-tile__media--pack img,
.page-home .rail-tile--lg .rail-tile__media--pack-light img {
  padding: 6% 8% 16%;
  /* lighten bleached steel into pale ghosts — keep solid metal */
  mix-blend-mode: normal;
  filter: contrast(1.1) saturate(1.04) brightness(0.97);
}
.page-home .rail-tile--lg .rail-tile__media--tone-cream img {
  mix-blend-mode: normal;
  filter: contrast(1.12) saturate(1.05) brightness(0.95);
}
.page-home .rail-tile--lg .rail-tile__media--tone-paper img {
  mix-blend-mode: normal;
  filter: contrast(1.1) saturate(1.04) brightness(0.96);
  padding: 8% 10% 18%;
}
.page-home .rail-tile__label--on-light {
  color: var(--schoch-blue-deep);
  background: linear-gradient(transparent, rgba(247, 239, 227, 0.92));
}
.page-home .rail-tile__label--on-light .rail-tile__arrow {
  border-color: var(--schoch-blue);
  color: var(--schoch-blue);
}
.page-home .rail-tile__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: 0.04em;
  padding: 1.65rem 1.35rem;
  background: linear-gradient(transparent, rgba(5, 13, 43, 0.82));
}
.page-home .rail-tile__arrow {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  flex-shrink: 0;
}

/* Editorial path list — hub without box dashboard */
.page-home .path-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(14, 40, 121, 0.14);
}
.page-home .path-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0.15rem;
  border-bottom: 1px solid rgba(14, 40, 121, 0.14);
  color: var(--schoch-blue-deep);
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.page-home .path-list__item:hover {
  color: var(--schoch-blue);
  padding-left: 0.5rem;
}
.page-home .path-list__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-home .path-list__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}
.page-home .path-list__item:hover .path-list__hint {
  color: var(--schoch-blue);
}
.page-home .path-list__item--accent .path-list__label {
  color: var(--schoch-blue);
}

/* Film band content layout (no inline styles) */
.page-home .film-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
.page-home .film-band__content .headline-3 {
  color: var(--cream);
}
.page-home .film-band__lede {
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin-top: 0.75rem;
}
.page-home .film-band .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-home .film-band .cta-button--subdued {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* No production pulse dots / motion cues on Home */
.page-home .motion-band.is-live::after,
.page-home .culture-band__visual .motion-cue {
  display: none !important;
}
.page-home .motion-band__content .headline-3,
.page-home .motion-band__content .headline-4 {
  color: var(--cream);
}
.page-home .motion-band__content .paragraph-large {
  color: rgba(255, 255, 255, 0.92);
}

/* Stronger culture visual crop */
.page-home .culture-band__visual {
  aspect-ratio: 5 / 4;
  border-radius: 0.2rem;
}
.page-home .culture-band__visual img {
  object-position: center 28%;
}

/* Face rail breathing room */
.page-home .face-rail {
  margin-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .path-list__item {
    transition: none;
  }
}

/* =========================================================
   ZERTIFIKATE — structural Aufbau (Heinz rhythm × Schoch)
   Scoped via .page-zertifikate so Home / shop stay intact.
   ========================================================= */

.page-zertifikate .zert-hero,
.page-zertifikate .hero--brand {
  min-height: calc(78vh - var(--global-header-height));
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-zertifikate .zert-hero,
  .page-zertifikate .hero--brand {
    min-height: calc(85svh - var(--global-header-height));
  }
}
.page-zertifikate .hero__scrim--brand {
  background:
    linear-gradient(
      180deg,
      rgba(14, 40, 121, 0.38) 0%,
      rgba(5, 13, 43, 0.48) 42%,
      rgba(5, 13, 43, 0.88) 100%
    );
}
.page-zertifikate .hero__content--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.25rem 3.5rem;
  max-width: 56rem;
}
.page-zertifikate .hero__display {
  color: var(--cream);
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(5, 13, 43, 0.35);
}
.page-zertifikate .hero__est {
  margin: 1rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(0.72rem, 1.6vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 241, 221, 0.92);
  max-width: 22rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .page-zertifikate .hero__est {
    letter-spacing: 0.28em;
    max-width: none;
  }
}
.page-zertifikate .hero__lede {
  margin-top: 1.35rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  line-height: 1.45;
}
.page-zertifikate .hero__cta-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* Blue proof rail — large editorial certificates */
.page-zertifikate .zert-proof {
  padding-top: 3.25rem;
  padding-bottom: 2.75rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-zertifikate .zert-proof {
    padding-top: 4.75rem;
    padding-bottom: 3.5rem;
  }
}
.page-zertifikate .zert-proof__title {
  color: var(--cream);
}
.page-zertifikate .zert-proof__lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 30rem;
  margin-top: 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
}
.page-zertifikate .zert-proof__cta {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-zertifikate .zert-proof__cta:hover,
.page-zertifikate .zert-proof__cta:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-zertifikate .zert-proof__rail {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .page-zertifikate .zert-proof__rail {
    padding-left: max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem));
    padding-right: 1.25rem;
    gap: 1.5rem;
  }
}
.page-zertifikate .zert-proof__tile {
  flex: 0 0 auto;
  width: min(82vw, 22rem);
  scroll-snap-align: start;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .page-zertifikate .zert-proof__tile {
    width: min(48vw, 26rem);
  }
}
@media (min-width: 1280px) {
  .page-zertifikate .zert-proof__tile {
    width: 28rem;
  }
}
.page-zertifikate .zert-proof__tile:hover {
  transform: translateY(-4px);
}
.page-zertifikate .zert-proof__media {
  margin: 0;
  aspect-ratio: 3 / 4;
  min-height: min(52vh, 28rem);
  border-radius: 0.65rem;
  overflow: hidden;
  background: linear-gradient(165deg, #f7efe3 0%, #efe2d0 55%, #e4d3bb 100%);
  display: grid;
  place-items: center;
  padding: 1.35rem 1.35rem 1.75rem;
}
.page-zertifikate .zert-proof__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  max-width: none;
  filter: contrast(1.04);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-zertifikate .zert-proof__tile:hover .zert-proof__media img {
  transform: scale(1.03);
}
.page-zertifikate .zert-proof__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.15rem;
}
.page-zertifikate .zert-proof__name {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.05;
}
.page-zertifikate .zert-proof__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Cream compliance features — large doc + copy */
.page-zertifikate .zert-declare .section-head {
  margin-bottom: 2.5rem;
}
.page-zertifikate .zert-feature {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 3rem;
}
.page-zertifikate .zert-feature:first-of-type {
  margin-top: 0;
}
@media (min-width: 900px) {
  .page-zertifikate .zert-feature {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.25rem;
    margin-top: 4rem;
  }
  .page-zertifikate .zert-feature--flip .zert-feature__visual {
    order: 2;
  }
  .page-zertifikate .zert-feature--flip .zert-feature__copy {
    order: 1;
  }
}
.page-zertifikate .zert-feature__visual {
  display: block;
  background: linear-gradient(165deg, #ebe4d8 0%, #f7efe3 50%, #e8dcc8 100%);
  border-radius: 0.2rem;
  padding: 1.5rem 1.5rem 1.85rem;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-zertifikate .zert-feature__visual:hover {
  transform: translateY(-3px);
}
.page-zertifikate .zert-feature__visual img {
  width: 100%;
  max-height: min(68vh, 36rem);
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}
.page-zertifikate .zert-feature__copy .headline-4 {
  margin: 0.15rem 0 0;
  color: var(--schoch-blue);
}
.page-zertifikate .zert-feature__copy .lede-tight {
  margin-top: 0.85rem;
  max-width: 28rem;
}

/* Download grid — two columns editorial, not card mush */
.page-zertifikate .zert-dl-grid {
  display: grid;
  gap: 2.75rem 3.5rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .page-zertifikate .zert-dl-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-zertifikate .zert-dl-group__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
}
.page-zertifikate .zert-dl-group .download-item {
  padding: 1.05rem 0.1rem;
  transition: padding-left 0.25s ease;
}
.page-zertifikate .zert-dl-group .download-item:hover {
  padding-left: 0.4rem;
}

/* Path list (same editorial pattern as Home, scoped) */
.page-zertifikate .path-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(14, 40, 121, 0.14);
}
.page-zertifikate .path-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0.15rem;
  border-bottom: 1px solid rgba(14, 40, 121, 0.14);
  color: var(--schoch-blue-deep);
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.page-zertifikate .path-list__item:hover {
  color: var(--schoch-blue);
  padding-left: 0.5rem;
}
.page-zertifikate .path-list__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-zertifikate .path-list__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}
.page-zertifikate .path-list__item:hover .path-list__hint {
  color: var(--schoch-blue);
}

/* Motion band cream type on Zertifikate */
.page-zertifikate .motion-band.is-live::after {
  display: none !important;
}
.page-zertifikate .motion-band__content .headline-3,
.page-zertifikate .motion-band__content .headline-4 {
  color: var(--cream);
}
.page-zertifikate .motion-band__content .paragraph-large {
  color: rgba(255, 255, 255, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  .page-zertifikate .zert-proof__tile,
  .page-zertifikate .zert-proof__media img,
  .page-zertifikate .zert-feature__visual,
  .page-zertifikate .path-list__item,
  .page-zertifikate .zert-dl-group .download-item {
    transition: none;
  }
  .page-zertifikate .zert-proof__tile:hover,
  .page-zertifikate .zert-feature__visual:hover {
    transform: none;
  }
  .page-zertifikate .zert-proof__tile:hover .zert-proof__media img {
    transform: none;
  }
}

/* =========================================================
   JOBS — structural Aufbau (Heinz rhythm × Schoch)
   Scoped via .page-jobs so Home / Zertifikate / shop stay intact.
   ========================================================= */

.page-jobs .jobs-hero,
.page-jobs .hero--brand {
  min-height: calc(78vh - var(--global-header-height));
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-jobs .jobs-hero,
  .page-jobs .hero--brand {
    min-height: calc(85svh - var(--global-header-height));
  }
}
.page-jobs .hero__scrim--brand {
  background:
    linear-gradient(
      180deg,
      rgba(14, 40, 121, 0.4) 0%,
      rgba(5, 13, 43, 0.48) 42%,
      rgba(5, 13, 43, 0.88) 100%
    );
}
.page-jobs .hero__content--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.25rem 3.5rem;
  max-width: 56rem;
}
.page-jobs .hero__display {
  color: var(--cream);
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(5, 13, 43, 0.35);
}
.page-jobs .hero__est {
  margin: 1rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(0.72rem, 1.6vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 241, 221, 0.92);
  max-width: 22rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .page-jobs .hero__est {
    letter-spacing: 0.28em;
    max-width: none;
  }
}
.page-jobs .hero__lede {
  margin-top: 1.35rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  line-height: 1.45;
}
.page-jobs .hero__cta-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* Blue — open roles as display editorial list */
.page-jobs .jobs-roles {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-jobs .jobs-roles {
    padding-top: 4.75rem;
    padding-bottom: 4.5rem;
  }
}
.page-jobs .jobs-roles__title {
  color: var(--cream);
}
.page-jobs .jobs-roles__lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 30rem;
  margin-top: 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
}
.page-jobs .jobs-roles__cta {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-jobs .jobs-roles__cta:hover,
.page-jobs .jobs-roles__cta:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-jobs .jobs-role-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(254, 241, 221, 0.22);
}
.page-jobs .jobs-role-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0.15rem;
  border-bottom: 1px solid rgba(254, 241, 221, 0.22);
  color: var(--cream);
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.page-jobs .jobs-role-list__item:hover {
  color: #fff;
  padding-left: 0.5rem;
}
.page-jobs .jobs-role-list__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-jobs .jobs-role-list__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
  flex-shrink: 0;
}
.page-jobs .jobs-role-list__item:hover .jobs-role-list__hint {
  color: rgba(255, 255, 255, 0.92);
}

/* Cream culture — employer feel */
.page-jobs .jobs-culture .culture-band__visual {
  aspect-ratio: 5 / 4;
  border-radius: 0.2rem;
}
.page-jobs .jobs-culture .culture-band__visual img {
  object-position: center 28%;
}
.page-jobs .jobs-culture .culture-band__visual .motion-cue {
  display: none !important;
}

/* Film band — Bewerbungsfilm */
.page-jobs .film-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
.page-jobs .film-band__content .headline-3 {
  color: var(--cream);
}
.page-jobs .film-band__lede {
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin-top: 0.75rem;
}
.page-jobs .film-band .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-jobs .film-band .cta-button--subdued {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* White — Ausbildung / Dual editorial */
.page-jobs .jobs-entry__grid {
  display: grid;
  gap: 2.75rem 3.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 900px) {
  .page-jobs .jobs-entry__grid {
    grid-template-columns: 1fr 1.15fr;
  }
}
.page-jobs .jobs-entry__group-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
}
.page-jobs .path-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(14, 40, 121, 0.14);
}
.page-jobs .path-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0.15rem;
  border-bottom: 1px solid rgba(14, 40, 121, 0.14);
  color: var(--schoch-blue-deep);
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.page-jobs .path-list__item:hover {
  color: var(--schoch-blue);
  padding-left: 0.5rem;
}
.page-jobs .path-list__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-jobs .path-list__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}
.page-jobs .path-list__item:hover .path-list__hint {
  color: var(--schoch-blue);
}

/* Cream — Joana contact */
.page-jobs .jobs-contact__face {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .page-jobs .jobs-contact__face {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
    gap: 2.75rem;
  }
}
.page-jobs .jobs-contact__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.2rem;
  background: linear-gradient(165deg, #ebe4d8 0%, #f7efe3 55%, #e8dcc8 100%);
}
.page-jobs .jobs-contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-jobs .jobs-contact__face:hover .jobs-contact__photo img {
  transform: scale(1.03);
}
.page-jobs .jobs-contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  color: var(--schoch-blue);
}
.page-jobs .jobs-contact__links a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .page-jobs .jobs-role-list__item,
  .page-jobs .path-list__item,
  .page-jobs .jobs-contact__photo img {
    transition: none;
  }
  .page-jobs .jobs-contact__face:hover .jobs-contact__photo img {
    transform: none;
  }
}

/* =========================================================
   PRESSE — structural Aufbau (Heinz rhythm × Schoch)
   Scoped via .page-presse so Home / Jobs / Zertifikate stay intact.
   ========================================================= */

.page-presse .presse-hero,
.page-presse .hero--brand {
  min-height: calc(78vh - var(--global-header-height));
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-presse .presse-hero,
  .page-presse .hero--brand {
    min-height: calc(85svh - var(--global-header-height));
  }
}
.page-presse .hero__scrim--brand {
  background:
    linear-gradient(
      180deg,
      rgba(14, 40, 121, 0.4) 0%,
      rgba(5, 13, 43, 0.48) 42%,
      rgba(5, 13, 43, 0.88) 100%
    );
}
.page-presse .hero__content--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.25rem 3.5rem;
  max-width: 56rem;
}
.page-presse .hero__display {
  color: var(--cream);
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(5, 13, 43, 0.35);
}
.page-presse .hero__est {
  margin: 1rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(0.72rem, 1.6vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 241, 221, 0.92);
  max-width: 22rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .page-presse .hero__est {
    letter-spacing: 0.28em;
    max-width: none;
  }
}
.page-presse .hero__lede {
  margin-top: 1.35rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  line-height: 1.45;
}
.page-presse .hero__cta-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* Blue — editorial press features */
.page-presse .presse-stories {
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-presse .presse-stories {
    padding-top: 4.75rem;
    padding-bottom: 5rem;
  }
}
.page-presse .presse-stories__title {
  color: var(--cream);
}
.page-presse .presse-stories__lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
  margin-top: 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
}
.page-presse .presse-stories__cta {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-presse .presse-stories__cta:hover,
.page-presse .presse-stories__cta:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-presse .presse-feature {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 3.25rem;
}
.page-presse .presse-feature:first-of-type {
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .page-presse .presse-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.25rem;
    margin-top: 4.25rem;
  }
  .page-presse .presse-feature--flip .presse-feature__visual {
    order: 2;
  }
  .page-presse .presse-feature--flip .presse-feature__copy {
    order: 1;
  }
}
.page-presse .presse-feature__visual {
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 0.2rem;
  background: linear-gradient(160deg, #0b1020, #1a2a5c);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-presse .presse-feature__visual:hover {
  transform: translateY(-3px);
}
.page-presse .presse-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-presse .presse-feature__visual:hover img {
  transform: scale(1.04);
}
.page-presse .presse-feature__meta {
  margin: 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(254, 241, 221, 0.72);
}
.page-presse .presse-feature__copy .headline-4 {
  margin: 0.35rem 0 0;
  color: var(--cream);
}
.page-presse .presse-feature__copy .headline-4 a {
  color: inherit;
  text-decoration: none;
}
.page-presse .presse-feature__copy .headline-4 a:hover {
  color: #fff;
}
.page-presse .presse-feature__copy .lede-tight {
  margin-top: 0.85rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.88);
}
.page-presse .presse-feature__copy .cta-row {
  margin-top: 1.35rem;
}
.page-presse .presse-feature__copy .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-presse .presse-feature__copy .cta-button:hover,
.page-presse .presse-feature__copy .cta-button:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}

/* Cream place band */
.page-presse .presse-place .culture-band__visual {
  aspect-ratio: 5 / 4;
  border-radius: 0.2rem;
}
.page-presse .presse-place .culture-band__visual img {
  object-position: center 28%;
}
.page-presse .presse-place .culture-band__visual .motion-cue {
  display: none !important;
}

/* Film band — Einleitungsfilm */
.page-presse .film-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
.page-presse .film-band__content .headline-3 {
  color: var(--cream);
}
.page-presse .film-band__lede {
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin-top: 0.75rem;
}
.page-presse .film-band .cta-button {
  background: var(--cream);
  color: var(--schoch-blue);
}
.page-presse .film-band .cta-button--subdued {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* White — media kit editorial list */
.page-presse .presse-kit-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(14, 40, 121, 0.14);
}
.page-presse .presse-kit-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0.15rem;
  border-bottom: 1px solid rgba(14, 40, 121, 0.14);
  color: var(--schoch-blue-deep);
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.page-presse .presse-kit-list__item:hover {
  color: var(--schoch-blue);
  padding-left: 0.5rem;
}
.page-presse .presse-kit-list__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-presse .presse-kit-list__hint {
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}
.page-presse .presse-kit-list__item:hover .presse-kit-list__hint {
  color: var(--schoch-blue);
}

/* Cream — Joana press contact */
.page-presse .presse-contact__face {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .page-presse .presse-contact__face {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
    gap: 2.75rem;
  }
}
.page-presse .presse-contact__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.2rem;
  background: linear-gradient(165deg, #ebe4d8 0%, #f7efe3 55%, #e8dcc8 100%);
}
.page-presse .presse-contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-presse .presse-contact__face:hover .presse-contact__photo img {
  transform: scale(1.03);
}
.page-presse .presse-contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  color: var(--schoch-blue);
}
.page-presse .presse-contact__links a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .page-presse .presse-feature__visual,
  .page-presse .presse-feature__visual img,
  .page-presse .presse-kit-list__item,
  .page-presse .presse-contact__photo img {
    transition: none;
  }
  .page-presse .presse-feature__visual:hover,
  .page-presse .presse-feature__visual:hover img,
  .page-presse .presse-contact__face:hover .presse-contact__photo img {
    transform: none;
  }
}

/* ==========================================================================
   Anfrage — Heinz Aufbau (brand hero + path + RFQ + dial)
   Scoped via .page-anfrage so Home / Jobs / Zertifikate / Presse stay intact.
   ========================================================================== */

.page-anfrage .anfrage-hero,
.page-anfrage .hero--brand {
  min-height: 76vh;
  min-height: 76dvh;
}
@media (min-width: 900px) {
  .page-anfrage .anfrage-hero,
  .page-anfrage .hero--brand {
    min-height: 82vh;
    min-height: 82dvh;
  }
}
.page-anfrage .hero__scrim--brand {
  background:
    linear-gradient(105deg, rgba(14, 40, 121, 0.72) 0%, rgba(14, 40, 121, 0.28) 48%, rgba(10, 18, 48, 0.45) 100%),
    linear-gradient(to top, rgba(10, 18, 48, 0.55) 0%, transparent 42%);
}
.page-anfrage .hero__content--brand {
  max-width: 44rem;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}
.page-anfrage .hero__display {
  color: var(--cream, #fef1dd);
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(5, 13, 43, 0.35);
}
.page-anfrage .hero__est {
  margin: 0.85rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.88);
}
@media (min-width: 900px) {
  .page-anfrage .hero__est {
    letter-spacing: 0.18em;
  }
}
.page-anfrage .hero__lede {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.92);
}
.page-anfrage .hero__cta-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Blue — two paths as editorial features */
.page-anfrage .anfrage-paths {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
@media (min-width: 900px) {
  .page-anfrage .anfrage-paths {
    padding-top: clamp(4rem, 8vw, 6.5rem);
  }
}
.page-anfrage .anfrage-paths__title {
  color: var(--schoch-cream, #f3efe6);
}
.page-anfrage .anfrage-paths__lede {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: rgba(243, 239, 230, 0.88);
}
.page-anfrage .anfrage-paths__cta {
  background: var(--schoch-cream, #f3efe6);
  color: var(--schoch-blue, #0e2879);
}
.page-anfrage .anfrage-paths__cta:hover,
.page-anfrage .anfrage-paths__cta:focus-visible {
  background: var(--schoch-blue, #0e2879);
  color: var(--cream, #fef1dd);
  filter: none;
}
.page-anfrage .anfrage-path {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
  align-items: center;
}
.page-anfrage .anfrage-path:first-of-type {
  margin-top: 2.25rem;
}
@media (min-width: 960px) {
  .page-anfrage .anfrage-path {
    grid-template-columns: 1.15fr 1fr;
    gap: 2.75rem;
    margin-top: 3.5rem;
  }
  .page-anfrage .anfrage-path--flip .anfrage-path__visual {
    order: 2;
  }
  .page-anfrage .anfrage-path--flip .anfrage-path__copy {
    order: 1;
  }
}
.page-anfrage .anfrage-path__visual {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.55s ease;
}
.page-anfrage .anfrage-path__visual:hover {
  transform: translateY(-4px);
}
.page-anfrage .anfrage-path__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.page-anfrage .anfrage-path__visual:hover img {
  transform: scale(1.04);
}
.page-anfrage .anfrage-path__meta {
  margin: 0 0 0.5rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.7);
}
.page-anfrage .anfrage-path__copy .headline-4 {
  color: var(--schoch-cream, #f3efe6);
  margin: 0;
}
.page-anfrage .anfrage-path__copy .lede-tight {
  margin: 0.85rem 0 0;
  color: rgba(243, 239, 230, 0.9);
  max-width: 28rem;
}
.page-anfrage .anfrage-path__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.15rem 0 0;
}
.page-anfrage .anfrage-path__links a {
  color: rgba(243, 239, 230, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  font-size: 0.9375rem;
}
.page-anfrage .anfrage-path__links a:hover {
  color: #fff;
}
.page-anfrage .anfrage-path__copy .cta-row {
  margin-top: 1.35rem;
}
.page-anfrage .anfrage-path__copy .cta-button {
  background: var(--schoch-cream, #f3efe6);
  color: var(--schoch-blue, #0e2879);
}
.page-anfrage .anfrage-path__copy .cta-button:hover,
.page-anfrage .anfrage-path__copy .cta-button:focus-visible {
  background: var(--schoch-blue, #0e2879);
  color: var(--cream, #fef1dd);
  filter: none;
}
.page-anfrage .anfrage-path__copy .cta-button--subdued {
  background: transparent;
  color: var(--schoch-cream, #f3efe6);
  border: 1px solid rgba(243, 239, 230, 0.45);
}
.page-anfrage .anfrage-path__copy .cta-button--subdued:hover,
.page-anfrage .anfrage-path__copy .cta-button--subdued:focus-visible {
  background: var(--cream, #fef1dd);
  color: var(--schoch-blue, #0e2879);
  border-color: var(--cream, #fef1dd);
}

/* Cream — RFQ editorial surface */
.page-anfrage .anfrage-rfq__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .page-anfrage .anfrage-rfq__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}
.page-anfrage .anfrage-rfq__intro .headline-2 {
  color: var(--schoch-blue, #0e2879);
  line-height: 0.95;
}
.page-anfrage .anfrage-rfq__intro .lede-tight {
  margin: 1rem 0 0;
  max-width: 28rem;
}
.page-anfrage .anfrage-rfq__note {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted, #5c6470);
}
.page-anfrage .anfrage-rfq__note a {
  color: var(--schoch-blue, #0e2879);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.page-anfrage .anfrage-form {
  display: grid;
  gap: 1.15rem;
}
.page-anfrage .anfrage-form__row--2 {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .page-anfrage .anfrage-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.page-anfrage .anfrage-field {
  display: grid;
  gap: 0.4rem;
}
.page-anfrage .anfrage-field__label {
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--schoch-blue, #0e2879);
}
.page-anfrage .anfrage-field input,
.page-anfrage .anfrage-field textarea {
  width: 100%;
  padding: 0.95rem 0;
  border: none;
  border-bottom: 1px solid rgba(14, 40, 121, 0.28);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 1.0625rem;
  color: var(--schoch-deep, #0a1230);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.page-anfrage .anfrage-field input:focus,
.page-anfrage .anfrage-field textarea:focus {
  outline: none;
  border-bottom-color: var(--schoch-blue, #0e2879);
  background: rgba(14, 40, 121, 0.03);
}
.page-anfrage .anfrage-field textarea {
  min-height: 8rem;
  resize: vertical;
  padding-top: 0.65rem;
}
.page-anfrage .anfrage-field--file input[type="file"] {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px dashed rgba(14, 40, 121, 0.28);
}
.page-anfrage .anfrage-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.page-anfrage .anfrage-form__actions .cta-button {
  background: var(--schoch-blue, #0e2879);
  color: #fff;
}
.page-anfrage .anfrage-form__actions .cta-button:hover,
.page-anfrage .anfrage-form__actions .cta-button:focus-visible {
  background: var(--cream, #fef1dd);
  color: var(--schoch-blue, #0e2879);
}
.page-anfrage .anfrage-form__actions .cta-button--subdued {
  background: transparent;
  color: var(--schoch-blue, #0e2879);
  border: 1px solid rgba(14, 40, 121, 0.35);
}
.page-anfrage .anfrage-form__actions .cta-button--subdued:hover,
.page-anfrage .anfrage-form__actions .cta-button--subdued:focus-visible {
  background: var(--schoch-blue, #0e2879);
  color: var(--cream, #fef1dd);
  border-color: var(--schoch-blue, #0e2879);
}

/* White — Ablauf steps */
.page-anfrage .anfrage-steps__lede {
  margin-top: 0.75rem;
  max-width: 34rem;
}
.page-anfrage .anfrage-step-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.page-anfrage .anfrage-step-list__item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(14, 40, 121, 0.12);
  transition: padding-left 0.35s ease;
}
.page-anfrage .anfrage-step-list__item:last-child {
  border-bottom: 1px solid rgba(14, 40, 121, 0.12);
}
.page-anfrage .anfrage-step-list__item:hover {
  padding-left: 0.5rem;
}
.page-anfrage .anfrage-step-list__num {
  font-family: var(--font-display, var(--font-body-semibold)), sans-serif;
  font-size: 1.25rem;
  color: var(--schoch-blue, #0e2879);
  letter-spacing: 0.04em;
}
.page-anfrage .anfrage-step-list__label {
  margin: 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--schoch-blue, #0e2879);
  letter-spacing: 0.02em;
}
.page-anfrage .anfrage-step-list__hint {
  margin: 0.35rem 0 0;
  color: var(--text-muted, #5c6470);
  font-size: 1rem;
}

/* Cream — Direktwahl faces */
.page-anfrage .anfrage-dial__lede {
  margin-top: 0.75rem;
  max-width: 34rem;
}
.page-anfrage .anfrage-dial__cta {
  background: var(--schoch-blue, #0e2879);
  color: #fff;
}
.page-anfrage .anfrage-dial__faces {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.25rem;
}
@media (min-width: 900px) {
  .page-anfrage .anfrage-dial__faces {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.page-anfrage .anfrage-dial__person {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 560px) {
  .page-anfrage .anfrage-dial__person {
    grid-template-columns: 11rem 1fr;
    gap: 1.5rem;
  }
}
.page-anfrage .anfrage-dial__photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--schoch-blue-soft, #d9e0f2);
}
.page-anfrage .anfrage-dial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}
.page-anfrage .anfrage-dial__person:hover .anfrage-dial__photo img {
  transform: scale(1.04);
}
.page-anfrage .anfrage-dial__person .headline-5 {
  margin: 0;
  color: var(--schoch-blue, #0e2879);
}
.page-anfrage .anfrage-dial__role {
  margin: 0.35rem 0 0;
  color: var(--text-muted, #5c6470);
  font-size: 0.9375rem;
}
.page-anfrage .anfrage-dial__links {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
}
.page-anfrage .anfrage-dial__links a {
  color: var(--schoch-blue, #0e2879);
  font-size: 0.9375rem;
}
.page-anfrage .anfrage-dial__links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (prefers-reduced-motion: reduce) {
  .page-anfrage .anfrage-path__visual,
  .page-anfrage .anfrage-path__visual img,
  .page-anfrage .anfrage-step-list__item,
  .page-anfrage .anfrage-dial__photo img {
    transition: none;
  }
  .page-anfrage .anfrage-path__visual:hover,
  .page-anfrage .anfrage-path__visual:hover img,
  .page-anfrage .anfrage-dial__person:hover .anfrage-dial__photo img {
    transform: none;
  }
  .page-anfrage .anfrage-step-list__item:hover {
    padding-left: 0;
  }
}

/* ==========================================================================
   Shop hub + category (Gewindefittings) — Heinz Aufbau
   Shared via .page-shop / .page-shop-gewindefittings — corporate pages intact.
   ========================================================================== */

.page-shop .shop-hero,
.page-shop .hero--brand,
.page-shop-gewindefittings .shop-hero,
.page-shop-gewindefittings .hero--brand {
  min-height: 76vh;
  min-height: 76dvh;
}
@media (min-width: 900px) {
  .page-shop .shop-hero,
  .page-shop .hero--brand,
  .page-shop-gewindefittings .shop-hero,
  .page-shop-gewindefittings .hero--brand {
    min-height: 84vh;
    min-height: 84dvh;
  }
}
.page-shop .shop-hero .hero__video video.hero__poster,
.page-shop-gewindefittings .shop-hero .hero__video video.hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-shop .hero__scrim--brand,
.page-shop-gewindefittings .hero__scrim--brand {
  background:
    linear-gradient(105deg, rgba(14, 40, 121, 0.78) 0%, rgba(14, 40, 121, 0.32) 48%, rgba(10, 18, 48, 0.5) 100%),
    linear-gradient(to top, rgba(10, 18, 48, 0.58) 0%, transparent 42%);
}
.page-shop .hero__content--brand,
.page-shop-gewindefittings .hero__content--brand {
  max-width: 44rem;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}
.page-shop .hero__display,
.page-shop-gewindefittings .hero__display {
  color: var(--cream, #fef1dd);
  font-size: clamp(4.25rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(5, 13, 43, 0.35);
}
.page-shop .hero__est,
.page-shop-gewindefittings .hero__est {
  margin: 0.85rem 0 0;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.88);
}
@media (min-width: 900px) {
  .page-shop .hero__est,
  .page-shop-gewindefittings .hero__est {
    letter-spacing: 0.18em;
  }
}
.page-shop .hero__lede,
.page-shop-gewindefittings .hero__lede {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.92);
}
.page-shop .hero__cta-row,
.page-shop-gewindefittings .hero__cta-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Blue — large category / family worlds rail */
.page-shop .shop-worlds,
.page-shop-gewindefittings .shop-worlds {
  padding-top: clamp(3.25rem, 6vw, 5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-shop .shop-worlds,
  .page-shop-gewindefittings .shop-worlds {
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(3.25rem, 6vw, 5rem);
  }
}
.page-shop .shop-worlds__title,
.page-shop-gewindefittings .shop-worlds__title {
  color: var(--cream, #fef1dd);
}
.page-shop .shop-worlds__lede,
.page-shop-gewindefittings .shop-worlds__lede {
  margin-top: 0.75rem;
  max-width: 34rem;
  color: rgba(243, 239, 230, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
}
.page-shop .shop-worlds__cta,
.page-shop-gewindefittings .shop-worlds__cta {
  background: var(--cream, #fef1dd);
  color: var(--schoch-blue, #0e2879);
}
.page-shop .shop-worlds__cta:hover,
.page-shop .shop-worlds__cta:focus-visible,
.page-shop-gewindefittings .shop-worlds__cta:hover,
.page-shop-gewindefittings .shop-worlds__cta:focus-visible {
  background: var(--schoch-blue);
  color: var(--cream);
}
.page-shop .shop-world-rail,
.page-shop-gewindefittings .shop-world-rail {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0.5rem 1.25rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .page-shop .shop-world-rail,
  .page-shop-gewindefittings .shop-world-rail {
    padding-left: max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem));
    padding-right: 1.25rem;
    gap: 1.5rem;
  }
}
.page-shop .shop-world,
.page-shop-gewindefittings .shop-world {
  flex: 0 0 auto;
  width: min(84vw, 22rem);
  scroll-snap-align: start;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .page-shop .shop-world,
  .page-shop-gewindefittings .shop-world {
    width: min(52vw, 26rem);
  }
}
@media (min-width: 1280px) {
  .page-shop .shop-world,
  .page-shop-gewindefittings .shop-world {
    width: 28rem;
  }
}
.page-shop .shop-world:hover,
.page-shop-gewindefittings .shop-world:hover {
  transform: translateY(-4px);
}
.page-shop .shop-world__media,
.page-shop-gewindefittings .shop-world__media {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  min-height: min(54vh, 30rem);
  overflow: hidden;
  background: linear-gradient(165deg, #0b1020, #1a2a5c);
}
.page-shop .shop-world__media--pack,
.page-shop-gewindefittings .shop-world__media--pack {
  background: linear-gradient(165deg, #06102a 0%, #13245a 55%, #0e2879 100%);
  display: grid;
  place-items: center;
}
.page-shop .shop-world__media--tone-cream,
.page-shop-gewindefittings .shop-world__media--tone-cream {
  background: #f3ebe0;
}
.page-shop .shop-world__media--tone-paper,
.page-shop-gewindefittings .shop-world__media--tone-paper {
  background: #faf6ef;
}
.page-shop .shop-world__media--tone-deep,
.page-shop-gewindefittings .shop-world__media--tone-deep {
  background: #0e2879;
}
.page-shop .shop-world__media img,
.page-shop-gewindefittings .shop-world__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
  mix-blend-mode: normal;
  filter: none;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-shop .shop-world__media--pack img,
.page-shop-gewindefittings .shop-world__media--pack img {
  object-fit: cover;
  object-position: center 40%;
  padding: 0;
  mix-blend-mode: normal;
  filter: none;
}
.page-shop .shop-world__media--tone-deep img,
.page-shop-gewindefittings .shop-world__media--tone-deep img {
  padding: 0;
  filter: none;
}
.page-shop .shop-world__media--tone-cream,
.page-shop-gewindefittings .shop-world__media--tone-cream {
  background: #f3ebe0;
}
.page-shop .shop-world__media--tone-paper,
.page-shop-gewindefittings .shop-world__media--tone-paper {
  background: #faf6ef;
}
.page-shop .shop-world__media--tone-deep,
.page-shop-gewindefittings .shop-world__media--tone-deep {
  background: #0e2879;
}
.page-shop .shop-world:hover .shop-world__media img,
.page-shop-gewindefittings .shop-world:hover .shop-world__media img {
  transform: scale(1.05);
}
.page-shop .shop-world__media video.rail-preview,
.page-shop-gewindefittings .shop-world__media video.rail-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  padding: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.page-shop .shop-world:hover .shop-world__media video.rail-preview,
.page-shop .shop-world.is-previewing .shop-world__media video.rail-preview,
.page-shop-gewindefittings .shop-world:hover .shop-world__media video.rail-preview,
.page-shop-gewindefittings .shop-world.is-previewing .shop-world__media video.rail-preview {
  opacity: 1;
}
.page-shop .shop-world__label,
.page-shop-gewindefittings .shop-world__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.15rem 1.1rem 1.05rem;
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--cream, #fef1dd);
  background: linear-gradient(to top, rgba(10, 18, 48, 0.72) 0%, transparent 100%);
}
.page-shop .shop-world__label--on-light,
.page-shop-gewindefittings .shop-world__label--on-light {
  color: var(--schoch-blue, #0e2879);
  background: linear-gradient(to top, rgba(247, 239, 227, 0.92) 0%, transparent 100%);
}
.page-shop .shop-world__label span,
.page-shop-gewindefittings .shop-world__label span {
  margin-left: 0.35rem;
  opacity: 0.75;
}
.page-shop .shop-world__hint,
.page-shop-gewindefittings .shop-world__hint {
  margin: 0;
  padding: 0 0.15rem;
  font-family: var(--font-body-regular), sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 22rem;
}

/* Cream — Normteile / Katalog path bridge */
.page-shop .shop-norm__grid,
.page-shop-gewindefittings .shop-norm__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .page-shop .shop-norm__grid,
  .page-shop-gewindefittings .shop-norm__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
}
.page-shop .shop-norm__intro .headline-2,
.page-shop-gewindefittings .shop-norm__intro .headline-2 {
  color: var(--schoch-blue, #0e2879);
  line-height: 0.95;
}
.page-shop .shop-norm__intro .lede-tight,
.page-shop-gewindefittings .shop-norm__intro .lede-tight {
  margin: 1rem 0 0;
  max-width: 30rem;
}
.page-shop .shop-norm__intro .cta-row,
.page-shop-gewindefittings .shop-norm__intro .cta-row {
  margin-top: 1.5rem;
}
.page-shop .shop-path-list,
.page-shop-gewindefittings .shop-path-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(14, 40, 121, 0.14);
}
.page-shop .shop-path-list__item,
.page-shop-gewindefittings .shop-path-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0.1rem;
  border-bottom: 1px solid rgba(14, 40, 121, 0.14);
  color: inherit;
  transition: padding-left 0.25s ease;
}
.page-shop .shop-path-list__item:hover,
.page-shop-gewindefittings .shop-path-list__item:hover {
  padding-left: 0.45rem;
}
.page-shop .shop-path-list__label,
.page-shop-gewindefittings .shop-path-list__label {
  font-family: var(--font-title), sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--schoch-blue, #0e2879);
  line-height: 1.1;
}
.page-shop .shop-path-list__hint,
.page-shop-gewindefittings .shop-path-list__hint {
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted, #5c6470);
  white-space: nowrap;
}
.page-shop .shop-path-list__item:hover .shop-path-list__hint,
.page-shop-gewindefittings .shop-path-list__item:hover .shop-path-list__hint {
  color: var(--schoch-blue, #0e2879);
}
.page-shop-gewindefittings .shop-path-list--siblings {
  margin: 0;
}

/* White — Sonderteile editorial feature */
.page-shop .shop-feature,
.page-shop-gewindefittings .shop-feature {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .page-shop .shop-feature,
  .page-shop-gewindefittings .shop-feature {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.25rem;
  }
}
.page-shop .shop-feature__visual,
.page-shop-gewindefittings .shop-feature__visual {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(165deg, #0b1020, #1a2a5c);
  transition: transform 0.55s ease;
}
.page-shop .shop-feature__visual:hover,
.page-shop-gewindefittings .shop-feature__visual:hover {
  transform: translateY(-4px);
}
.page-shop .shop-feature__visual img,
.page-shop-gewindefittings .shop-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.7s ease;
}
.page-shop .shop-feature__visual:hover img,
.page-shop-gewindefittings .shop-feature__visual:hover img {
  transform: scale(1.04);
}
.page-shop .shop-feature__meta,
.page-shop-gewindefittings .shop-feature__meta {
  margin: 0 0 0.5rem;
  font-family: var(--font-body-semibold), sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted, #5c6470);
}
.page-shop .shop-feature__copy .headline-3,
.page-shop-gewindefittings .shop-feature__copy .headline-3 {
  margin: 0;
  color: var(--schoch-blue, #0e2879);
}
.page-shop .shop-feature__copy .lede-tight,
.page-shop-gewindefittings .shop-feature__copy .lede-tight {
  margin: 0.85rem 0 0;
  max-width: 28rem;
}
.page-shop .shop-feature__copy .cta-row,
.page-shop-gewindefittings .shop-feature__copy .cta-row {
  margin-top: 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-shop .shop-world,
  .page-shop .shop-world__media img,
  .page-shop .shop-feature__visual,
  .page-shop .shop-feature__visual img,
  .page-shop .shop-path-list__item,
  .page-shop-gewindefittings .shop-world,
  .page-shop-gewindefittings .shop-world__media img,
  .page-shop-gewindefittings .shop-feature__visual,
  .page-shop-gewindefittings .shop-feature__visual img,
  .page-shop-gewindefittings .shop-path-list__item {
    transition: none;
  }
  .page-shop .shop-world:hover,
  .page-shop .shop-world:hover .shop-world__media img,
  .page-shop .shop-feature__visual:hover,
  .page-shop .shop-feature__visual:hover img,
  .page-shop-gewindefittings .shop-world:hover,
  .page-shop-gewindefittings .shop-world:hover .shop-world__media img,
  .page-shop-gewindefittings .shop-feature__visual:hover,
  .page-shop-gewindefittings .shop-feature__visual:hover img {
    transform: none;
  }
  .page-shop .shop-path-list__item:hover,
  .page-shop-gewindefittings .shop-path-list__item:hover {
    padding-left: 0.1rem;
  }
}

/* =========================================================
   R14 — Brand page loader + live film + alternating + plate tones
   ========================================================= */

.schoch-loader {
  --loader-navy: var(--schoch-blue, #0e2879);
  --loader-navy-deep: var(--schoch-blue-deep, #050d2b);
  --loader-cream: var(--cream, #fef1dd);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(
      120% 80% at 50% 42%,
      var(--loader-navy) 0%,
      var(--loader-navy-deep) 78%
    );
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.schoch-loader.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.schoch-loader.is-leaving {
  pointer-events: none;
}
.schoch-loader.is-leaving .schoch-loader__brand {
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}
.schoch-loader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  width: min(72vw, 17.5rem);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.schoch-loader.is-on:not(.is-leaving) .schoch-loader__brand {
  opacity: 1;
  transform: scale(1);
}
.schoch-loader__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.schoch-loader__rule {
  display: block;
  width: min(42%, 5.5rem);
  height: 1px;
  background: rgba(254, 241, 221, 0.22);
  overflow: hidden;
  position: relative;
}
.schoch-loader__rule::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--loader-cream);
  transform: scaleX(0);
  transform-origin: left center;
}
.schoch-loader.is-on:not(.is-leaving) .schoch-loader__rule::after {
  animation: schoch-loader-draw 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
@keyframes schoch-loader-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 480px) {
  .schoch-loader__brand {
    width: min(78vw, 14.5rem);
    gap: 1.1rem;
  }
}

.live-film__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.live-film__preview,
.live-film__sound,
.live-film__preview--yt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center 40%;
}
.live-film__hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

/* Play affordance: centered ON the video frame only (Unternehmen + Team media) */
.media-play__btn {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  color: var(--cream);
  transition: opacity 0.35s ease;
}
.media-play__btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: -0.65rem;
}
.media-play__icon {
  display: block;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: #0e2879;
  box-shadow: 0 0 0 2px rgba(254, 241, 221, 0.9);
  position: relative;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.media-play__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.62rem 0 0.62rem 1.05rem;
  border-color: transparent transparent transparent #fef1dd;
  transform: translate(-30%, -50%);
}
.media-play__btn:hover .media-play__icon,
.media-play__btn:focus-visible .media-play__icon {
  transform: scale(1.05);
  background: #0a1f63;
}
[data-thumb-play] {
  position: relative;
}
[data-thumb-play].is-playing .media-play__btn {
  opacity: 0;
  pointer-events: none;
}
[data-thumb-play].is-playing video {
  pointer-events: auto;
}
@media (max-width: 640px) {
  .media-play__icon {
    width: 3.6rem;
    height: 3.6rem;
  }
  .media-play__icon::after {
    border-width: 0.52rem 0 0.52rem 0.9rem;
  }
}
.live-film.is-live:not(.is-playing) .hero__poster,
.live-film.is-live:not(.is-playing) .film-band__poster,
.live-film.is-live:not(.is-playing) .visual-band__poster {
  opacity: 0;
  pointer-events: none;
}
.live-film.is-playing .live-film__hit,
.live-film.is-playing .film-band__scrim,
.live-film.is-playing .visual-band__scrim,
.live-film.is-playing .visual-band__caption,
.live-film.is-playing .film-band__content,
.hero.live-film.is-playing .hero__scrim,
.hero.live-film.is-playing .hero__content {
  opacity: 0;
  pointer-events: none;
}
.hero.hero--live-film .hero__video {
  pointer-events: auto;
  z-index: 1;
}
.hero.hero--live-film .hero__scrim {
  pointer-events: none;
  z-index: 2;
}
.hero.hero--live-film .hero__player,
.hero.hero--live-film .live-film__stage {
  display: block;
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
}
.hero.hero--live-film .live-film__preview,
.hero.hero--live-film .live-film__sound,
.hero.hero--live-film .live-film__hit,
.hero.hero--live-film .media-play__btn {
  pointer-events: auto;
}
.hero.hero--live-film .live-film__hit.media-play__btn {
  z-index: 6;
}
.hero.hero--live-film .hero__content {
  z-index: 5;
  pointer-events: none;
}
.hero.hero--live-film .hero__content a,
.hero.hero--live-film .hero__content .cta-button {
  pointer-events: auto;
}
.hero.hero--live-film.is-live:not(.is-playing) .hero__poster {
  opacity: 0;
}
.hero.hero--live-film .live-film__preview,
.hero.hero--live-film .live-film__sound {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center 40%;
}

/* Team split hero: copy left + playable video right */
.team-hero {
  position: relative;
  background: var(--schoch-blue-deep);
  color: #fff;
  padding: calc(var(--global-header-height, 4.5rem) + 1.75rem) 0 2.5rem;
  overflow: hidden;
}
.team-hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .team-hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.5rem;
    min-height: min(58svh, 28rem);
  }
}
.team-hero__copy .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}
.team-hero__copy .breadcrumb a {
  color: rgba(254, 241, 221, 0.92);
}
.team-hero__copy .headline-3 {
  color: var(--cream);
  margin: 0 0 0.65rem;
}
.team-hero__copy .headline-5 {
  color: var(--cream);
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: 0.06em;
}
.team-hero__copy .lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
  margin: 0;
}
.team-hero__media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: #050d2b;
  isolation: isolate;
}
.team-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  max-width: none;
  display: block;
}
.team-hero__media .media-play__btn {
  z-index: 2;
}
.team-hero__media.is-playing video {
  object-fit: contain;
  background: #000;
}
.film-band.live-film .live-film__stage {
  z-index: 2;
}
.film-band.live-film.is-live:not(.is-playing) .film-band__poster {
  opacity: 0;
}
.film-band.live-film .film-band__content {
  z-index: 5;
  pointer-events: none;
}
.film-band.live-film .film-band__content a {
  pointer-events: auto;
}
.film-band.live-film .live-film__hit.media-play__btn {
  z-index: 6;
  pointer-events: auto;
}

.culture-band__grid--media-first {
  direction: ltr;
}
@media (min-width: 960px) {
  .culture-band__grid--media-first {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .culture-band__grid--media-first > .culture-band__visual {
    order: 0;
  }
  .culture-band__grid--media-first > :not(.culture-band__visual) {
    order: 1;
  }
}

.media-bleed--video {
  position: relative;
  overflow: hidden;
}
.media-bleed--video img,
.media-bleed--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.media-bleed--video video.rail-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.media-bleed--video.is-previewing video.rail-preview,
.media-bleed--video:hover video.rail-preview {
  opacity: 1;
}
.media-bleed--autoplay video {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

/* Crop discipline — faces / bands / rounded frames */
.face__photo,
.culture-band__visual,
.media-bleed,
.home-split__media,
.world-tile__media,
.shop-world__media,
.shop-cat__media,
.rail-tile__media {
  overflow: hidden;
}
.face__photo img {
  object-fit: cover;
  object-position: center 18%;
}

@media (prefers-reduced-motion: reduce) {
  .schoch-loader {
    display: none !important;
  }
  .schoch-loader__brand,
  .schoch-loader.is-leaving .schoch-loader__brand {
    transition: none;
  }
  .schoch-loader.is-on:not(.is-leaving) .schoch-loader__rule::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* —— Mobile: center media, kill 100vw bleed, playable film bands —— */
@media (max-width: 767px) {
  .hero__video iframe,
  .hero__video video,
  .hero__player iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center center;
  }

  .hero__poster,
  .film-band__poster,
  .visual-band__poster,
  .live-film__preview,
  .live-film__sound,
  .motion-band__media img,
  .motion-band__media video,
  .culture-band__visual img,
  .culture-band__visual video,
  .page-hero--media .page-hero__bg img,
  .team-hero__media video,
  .media-bleed--video img,
  .media-bleed--video video,
  .higgs-slot__media video,
  .higgs-slot__media img,
  .shop-item__media img,
  .shop-item__media video {
    object-position: center center !important;
  }

  .face__photo img {
    object-position: center 22% !important;
  }

  .page-home #team .home-split__media img {
    object-position: center 24% !important;
  }

  .culture-band__visual {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .culture-band__visual img,
  .culture-band__visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Touch: keep preview video visible while is-previewing */
  .culture-band__visual.is-previewing video,
  .rail-tile.is-previewing .rail-tile__media video.rail-preview,
  .shop-item.is-previewing .shop-preview,
  .media-bleed--video.is-previewing video.rail-preview {
    opacity: 1;
  }

  .film-band,
  .motion-band--bleed,
  .hero {
    min-height: min(72svh, 36rem);
  }

  .film-band.live-film .live-film__hit.media-play__btn,
  .visual-band.live-film .live-film__hit.media-play__btn {
    z-index: 6;
    pointer-events: auto;
  }

  .film-band.live-film .film-band__content,
  .visual-band.live-film .visual-band__caption {
    z-index: 5;
    pointer-events: none;
  }

  .film-band.live-film .film-band__content a,
  .visual-band.live-film .visual-band__caption a {
    pointer-events: auto;
  }
}


