/* ===== OWL Hörakustik — Design System ===== */
:root {
  --ink: #141416;
  --paper: #F7F4EF;
  --lavender: #A47E4E;
  --lavender-soft: #C9A87A;
  --lavender-deep: #7E5E36;
  --paper-2: #EFEBE3;
  --paper-3: #E5DFD3;
  --line: rgba(20,20,22,.12);
  --line-strong: rgba(20,20,22,.22);
  --muted: rgba(20,20,22,.62);

  --font-display: "Saira Semi Condensed", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-script: "Fraunces", Georgia, serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --owl-nav-height-safe: clamp(122px, 10vw, 170px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.02;
}

.h-display {
  font-size: clamp(56px, 11vw, 200px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.h-xl { font-size: clamp(48px, 7vw, 120px); letter-spacing: -0.03em; line-height: 0.94; }
.h-l  { font-size: clamp(36px, 4.5vw, 72px); letter-spacing: -0.02em; line-height: 1; }
.h-m  { font-size: clamp(24px, 2.4vw, 36px); letter-spacing: -0.01em; line-height: 1.1; }

.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 60ch;
}

.body-l { font-size: 18px; line-height: 1.55; }
.muted { color: var(--muted); }

/* ===== Layout ===== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(72px, 10vw, 160px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 96px) 0; }

.hr-thin {
  height: 1px; background: var(--line); border: 0; margin: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn--ghost {
  background: transparent; color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lavender { background: var(--lavender); border-color: var(--lavender); color: var(--ink); }
.btn--lavender:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--brown { background: var(--lavender-deep); border-color: var(--lavender-deep); color: var(--paper); }
.btn--brown:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--lg { padding: 22px 34px; font-size: 14px; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--gutter);
  background: rgba(247,244,239,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: padding .32s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247,244,239,.92);
}
.nav.is-condensed {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 10px 34px rgba(38,36,33,.06);
}
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}
.nav__logo {
  height: 146px;
  cursor: pointer;
  transform-origin: left center;
  transition: height .32s ease, transform .32s ease;
}
.nav.is-condensed .nav__logo { height: 88px; }
.nav__logo img { height: 100%; width: auto; display: block; }
.nav__links { display: flex; gap: 6px; align-items: center; }
.nav__actions { display: inline-flex; align-items: center; gap: 10px; margin-left: 12px; }
.nav__socials { display: inline-flex; align-items: center; gap: 6px; }
.nav__social { width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: rgba(247,244,239,.72); transition: width .32s ease, height .32s ease, transform .2s ease, background .2s ease, border-color .2s ease; }
.nav.is-condensed .nav__social { width: 34px; height: 34px; }
.nav__social:hover { transform: translateY(-2px); background: var(--paper-3); border-color: var(--ink); }
.nav__social svg { width: 19px; height: 19px; display: block; transition: width .32s ease, height .32s ease; }
.nav.is-condensed .nav__social svg { width: 16px; height: 16px; }
.nav__contact-cta { padding: 13px 22px; transition: padding .32s ease, font-size .32s ease, transform .25s ease, background .25s ease, color .25s ease; }
.nav.is-condensed .nav__contact-cta { padding: 10px 18px; font-size: 12px; }
.nav__link {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink);
  position: relative;
  transition: padding .32s ease, font-size .32s ease, background .2s ease;
}
.nav.is-condensed .nav__link { padding: 8px 13px; font-size: 13px; }
.nav__link:hover { background: var(--paper-3); }
.nav__link.is-active { background: var(--ink); color: var(--paper); }
.nav__cta { margin-left: 12px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: 999px;
  align-items: center; justify-content: center;
  position: relative;
  cursor: pointer;
  transition: width .32s ease, height .32s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}
.nav.is-condensed .nav__burger { width: 40px; height: 40px; }
.nav__burger:hover { background: var(--paper-3); }
.nav__burger:focus-visible {
  outline: 2px solid var(--lavender-deep);
  outline-offset: 3px;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 50%; top: 50%;
  width: 17px; height: 1.5px;
  background: var(--ink);
  border-radius: 999px;
  transform-origin: center;
  transition: transform .24s ease, opacity .18s ease, background .22s ease;
}
.nav__burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.nav__burger span:nth-child(2) { transform: translate(-50%, -50%); }
.nav__burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.nav.is-open .nav__burger { background: var(--ink); border-color: var(--ink); }
.nav.is-open .nav__burger span { background: var(--paper); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(0); }
.nav.is-open .nav__burger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 960px) {
  :root { --owl-nav-height-safe: 136px; --owl-hero-safe-gap: clamp(22px, 5vw, 44px); }
  .nav__logo { height: 112px; }
  .nav.is-condensed { padding-top: 5px; padding-bottom: 5px; }
  .nav.is-condensed .nav__logo { height: 72px; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open { background: var(--paper); }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 16px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    align-items: stretch; gap: 0;
  }
  .nav.is-open .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__actions { margin: 16px 0 0; flex-direction: column; align-items: stretch; gap: 12px; }
  .nav.is-condensed .nav__actions { margin-top: 16px; }
  .nav__socials { justify-content: center; }
  .nav__contact-cta { justify-content: center; width: 100%; }
  .nav__cta { margin: 12px 0 0; }
}

@media (max-width: 520px) {
  :root { --owl-nav-height-safe: 122px; --owl-hero-safe-gap: clamp(20px, 6vw, 34px); }
  .nav__logo { height: 98px; }
  .nav.is-condensed .nav__logo { height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav__logo,
  .nav__link,
  .nav__social,
  .nav__social svg,
  .nav__contact-cta,
  .nav__burger {
    transition-duration: .01ms !important;
  }
}

/* ===== Hero ===== */
.hero {
  /* Keep the first hero meta row below the fixed navigation on every viewport.
     The JS-maintained value stores the largest non-open nav height for the
     current device, so the hero does not jump when the header condenses. */
  padding-top: max(clamp(120px, 14vw, 200px), calc(var(--owl-nav-height-safe, clamp(122px, 10vw, 170px)) + clamp(24px, 2vw, 40px)));
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero__eyebrow-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: clamp(36px, 6vw, 80px);
  gap: 24px; flex-wrap: wrap;
  width: 100%;
  min-height: 1.6em;
}
.hero__eyebrow-row .eyebrow {
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
}
.hero__title {
  display: block;
}
.hero__title .row {
  display: flex; align-items: baseline; gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
}
.hero__title .script-word {
  color: var(--lavender-deep);
}

/* Decorative father-child tin-can illustration in the hero.
   The source graphic is stored as dark ink on transparency so it reads well on
   the light hero background. */
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero__connection-art {
  --owl-hero-art-opacity: .115;
  --owl-hero-art-y: 0px;
  --owl-hero-art-scale: 1;
  position: absolute;
  z-index: 0;
  top: clamp(92px, 10vw, 178px);
  left: 50%;
  width: min(1900px, 116vw);
  height: clamp(360px, 45vw, 650px);
  pointer-events: none;
  transform: translateX(-50%) translateY(var(--owl-hero-art-y)) scale(var(--owl-hero-art-scale));
  opacity: var(--owl-hero-art-opacity);
  mix-blend-mode: multiply;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  transition-delay: .18s;
  will-change: opacity, transform;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.96) 0%, rgba(0,0,0,.94) 56%, rgba(0,0,0,.54) 78%, rgba(0,0,0,.06) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.96) 0%, rgba(0,0,0,.94) 56%, rgba(0,0,0,.54) 78%, rgba(0,0,0,.06) 100%);
}
html.js .hero__connection-art:not(.is-in) {
  --owl-hero-art-y: 20px;
  --owl-hero-art-scale: .992;
  opacity: 0;
}
html.js .hero__connection-art.is-in {
  --owl-hero-art-y: 0px;
  --owl-hero-art-scale: 1;
  opacity: var(--owl-hero-art-opacity);
}
.hero__connection-art img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-2%);
  transform-origin: center top;
}
.hero__eyebrow-row,
.hero__title,
.hero__bottom,
.hero__strip {
  position: relative;
  z-index: 1;
}
body.theme-dark .hero__connection-art {
  --owl-hero-art-opacity: .16;
  mix-blend-mode: screen;
}
body.theme-dark .hero__connection-art img {
  filter: invert(1);
}
@media (max-width: 980px) {
  .hero {
    padding-top: calc(var(--owl-nav-height-safe, 136px) + clamp(24px, 4vw, 42px));
  }
}
@media (max-width: 520px) {
  .hero {
    padding-top: calc(var(--owl-nav-height-safe, 122px) + clamp(22px, 6vw, 32px));
  }
}
@media (max-height: 680px) and (max-width: 980px) {
  .hero {
    padding-top: calc(var(--owl-nav-height-safe, 122px) + 20px);
  }
}
@media (max-width: 980px) {
  .hero__eyebrow-row {
    justify-content: center;
    text-align: center;
    width: min(100%, 760px);
    margin-inline: auto;
    margin-bottom: clamp(12px, 3vw, 22px);
  }
  .hero__connection-art {
    position: relative;
    top: auto;
    left: 50%;
    width: min(920px, 120vw);
    height: clamp(168px, 34vw, 244px);
    margin: clamp(6px, 1.8vw, 14px) 0 clamp(-46px, -6vw, -28px);
    transform: translateX(-50%) translateY(var(--owl-hero-art-y)) scale(var(--owl-hero-art-scale));
    --owl-hero-art-opacity: .18;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.98) 0%, rgba(0,0,0,.94) 78%, rgba(0,0,0,.10) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.98) 0%, rgba(0,0,0,.94) 78%, rgba(0,0,0,.10) 100%);
  }
  .hero__connection-art img {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    max-width: none;
    transform: translateX(-50%);
  }
  .hero__title,
  .hero__bottom,
  .hero__strip {
    position: relative;
    z-index: 1;
  }
  .hero__title .row {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .hero__eyebrow-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3.4vw, 18px);
    margin-bottom: clamp(8px, 2.2vw, 14px);
  }
  .hero__eyebrow-row .eyebrow {
    justify-content: center;
    width: 100%;
  }
  .hero__eyebrow-row .eyebrow::before {
    display: none;
  }
  .hero__connection-art {
    width: 118vw;
    height: clamp(160px, 44vw, 184px);
    margin-top: 0;
    margin-bottom: clamp(-44px, -10vw, -32px);
    --owl-hero-art-opacity: .22;
  }
  .hero__connection-art img {
    left: 50%;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .hero__connection-art {
    width: 118vw;
    height: clamp(156px, 44vw, 176px);
    margin-bottom: clamp(-48px, -11vw, -36px);
  }
}
@media (max-width: 380px) {
  .hero__connection-art {
    width: 120vw;
    height: clamp(154px, 45vw, 170px);
    margin-bottom: clamp(-50px, -12vw, -38px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__connection-art {
    transition: none;
    will-change: auto;
  }
  html.js .hero__connection-art:not(.is-in) {
    --owl-hero-art-y: 0px;
    --owl-hero-art-scale: 1;
    opacity: var(--owl-hero-art-opacity);
  }
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 860px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
}
.hero__meta {
  display: flex; flex-direction: column; gap: 10px;
}
.hero__meta-label {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .18em;
  font-size: 11px; color: var(--muted);
}
.hero__meta-value {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
}
.owl-opening-status.is-open .hero__meta-label,
.owl-opening-status.is-opening-later .hero__meta-label,
.owl-opening-status.is-opening-again .hero__meta-label { color: var(--lavender-deep); }
.owl-opening-status.is-closed .hero__meta-label { color: var(--muted); }

/* Hero image strip */
.hero__strip {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 12px;
  height: clamp(280px, 38vw, 520px);
}
.hero__strip--count-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(960px, 100%);
  margin-inline: auto;
  height: clamp(300px, 42vw, 560px);
}
.hero__strip--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: min(1180px, 100%);
  margin-inline: auto;
  height: clamp(280px, 36vw, 500px);
}
.hero__strip--count-3 { grid-template-columns: 1.4fr 1fr 1.2fr; }
@media (max-width: 860px) {
  .hero__strip,
  .hero__strip--count-1,
  .hero__strip--count-2,
  .hero__strip--count-3 { grid-template-columns: 1fr; height: auto; max-width: 100%; }
  .hero__strip > * { height: 280px; }
}
.hero__strip > div {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--paper-3);
}
.hero__strip .ph { margin: 0; }
.hero__strip .ph.has-image {
  width: 100%;
  height: 100%;
  padding: 0;
  display: block;
  overflow: hidden;
}
.hero__strip .ph.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 50% 50%;
  transform: scale(1.001);
  transition: transform .25s ease, object-position .25s ease;
  will-change: transform;
}
.hero__strip .ph.has-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(20, 20, 22, .28), transparent);
  pointer-events: none;
}
.hero__strip .ph.has-image .ph__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
}

/* ===== Placeholder image ===== */
.ph {
  width: 100%; height: 100%;
  margin: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(20,20,22,.06) 0 1px,
      transparent 1px 14px
    ),
    var(--paper-3);
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px;
}
.ph--ink {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(247,244,239,.07) 0 1px,
      transparent 1px 14px
    ),
    var(--ink);
  color: var(--paper);
}
.ph--lavender {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(20,20,22,.10) 0 1px,
      transparent 1px 14px
    ),
    var(--lavender);
}
.ph__label {
  font-family: monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(247,244,239,.85);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
}
.ph--ink .ph__label { background: rgba(20,20,22,.6); color: var(--paper); }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  background: var(--paper);
}
.marquee__track {
  display: flex; gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee__item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lavender);
  display: inline-block;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ===== Cards / Services ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  max-width: 80vw;
  margin:auto;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; max-width: 100vw; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; max-width: 100vw; } }
.svc {
  background: var(--paper);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
  position: relative;
  transition: background .3s ease, color .3s ease;
}
.svc:hover { background: var(--ink); color: var(--paper); }
.svc:hover .svc__num { color: var(--lavender); }
.svc__num {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .12em;
  color: var(--muted);
  font-feature-settings: "tnum";
}
.svc__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.svc__desc {
  font-size: 15px; line-height: 1.55; opacity: .82;
  margin-top: auto;
}
.svc__arrow {
  position: absolute; right: 24px; top: 32px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid currentColor; border-radius: 50%;
  opacity: .5;
  transition: transform .3s ease, opacity .3s ease;
}
.svc:hover .svc__arrow { opacity: 1; transform: rotate(-45deg); }

/* ===== Hörsystem cards ===== */
.hs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .hs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .hs-grid { grid-template-columns: 1fr; } }

.hs-card {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 28px 24px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  transition: transform .35s ease, background .3s ease;
}
.hs-card:hover { transform: translateY(-4px); }
.hs-card.is-feat { background: var(--ink); color: var(--paper); }
.hs-card.is-feat .hs-card__tag { color: var(--lavender); }
.hs-card.is-feat .hs-card__visual .ph { 
  background: 
    repeating-linear-gradient(45deg, rgba(247,244,239,.07) 0 1px, transparent 1px 14px),
    #1d1d1f;
}
.hs-card__tag {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hs-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hs-card__visual {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-3);
  min-height: 0;
  margin-top: 4px;
}
.hs-card__desc { font-size: 14px; opacity: .8; line-height: 1.5; }
.hs-card__cta {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.hs-card__cta::after {
  content: "→";
  transition: transform .25s ease;
}
.hs-card:hover .hs-card__cta::after { transform: translateX(6px); }


/* Consistent product imagery for hearing-system cards. The frame is square on
   every device; individual subjects can still be fine-tuned per Hörsystem via
   OWL Details -> Produktbild-Ausschnitt. */
.hs-card__visual .ph,
.hs-detail__visual .ph {
  background: #fff;
}
.hs-card__visual .ph.has-image,
.hs-detail__visual .ph.has-image {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
.hs-card__visual .ph.has-image img,
.hs-detail__visual .ph.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: clamp(14px, 2vw, 28px);
}
.hs-card__visual .ph.has-image .ph__label,
.hs-detail__visual .ph.has-image .ph__label {
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
}


/* ===== Masters ===== */
.masters {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 800px) { .masters { grid-template-columns: 1fr; } }
.master {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper-3);
  width: 100%;
}
.master .ph { height: 100%; }
.master__caption {
  position: absolute;
  inset: auto 16px 16px;
  background: rgba(247,244,239,.94);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.master__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.master__role {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  margin-top: 6px;
  color: var(--muted);
}
.master__since {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 22px;
  color: var(--lavender-deep);
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat:last-child { border-right: 0; }
@media (max-width: 800px) { .stat:nth-child(2n) { border-right: 0; } }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num .unit { color: var(--lavender-deep); }
.stat__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  margin-top: 12px;
  color: var(--muted);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

/* ===== News ===== */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
  display: flex; flex-direction: column;
  transition: transform .3s ease;
}
.news-card:hover { transform: translateY(-4px); }
.news-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card.is-feat { grid-row: span 1; }
.news-card.is-feat .news-card__img { aspect-ratio: 16/11; }
.news-card__body { padding: 22px 24px 26px; }
.news-card__meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--muted);
}
.news-card__meta .pill {
  padding: 4px 10px; background: var(--lavender); color: var(--ink);
  border-radius: 999px; letter-spacing: .1em;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-top: 12px;
}
.news-card.is-feat .news-card__title { font-size: 32px; }

/* ===== Contact ===== */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .contact-block { grid-template-columns: 1fr; } }
.contact-block__left {
  padding: 48px 44px;
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column; gap: 28px;
}
.contact-block__right {
  padding: 0;
  background: var(--paper-3);
  min-height: 440px;
  position: relative;
}
.hours {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-display);
}
.hours__row {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(247,244,239,.12);
  font-size: 15px;
}
.hours__day {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hours__time {
  margin-left: auto;
  text-align: right;
}
.hours__row.is-today { color: var(--lavender); }
.hours__state {
  display: inline-flex; align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 3px 8px 2px;
  font-size: 9px; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lavender);
  white-space: nowrap;
}
.hours__state:empty { display: none; }
.hours__row.is-closed .hours__state { opacity: .75; }
.hours__specials {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(247,244,239,.18);
}
.hours__special-title {
  margin-bottom: 8px;
  color: var(--lavender);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hours__row--special {
  align-items: flex-start;
  border-bottom-color: rgba(247,244,239,.08);
}
.hours__row--special .hours__day { align-items: flex-start; }
.hours__row--special .hours__time {
  display: grid;
  gap: 4px;
  max-width: 46%;
}
.hours__note {
  display: block;
  color: rgba(247,244,239,.68);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.35;
}
@media (max-width: 560px) {
  .hours__row--special { flex-direction: column; gap: 6px; }
  .hours__row--special .hours__time { max-width: 100%; margin-left: 0; text-align: left; }
}


/* ===== Map ===== */
.map {
  width: 100%; height: 100%; min-height: 440px;
  background:
    radial-gradient(circle at 30% 40%, rgba(164,126,222,.18), transparent 60%),
    repeating-linear-gradient(0deg, rgba(20,20,22,.06) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(20,20,22,.06) 0 1px, transparent 1px 40px),
    var(--paper-2);
  position: relative;
  overflow: hidden;
}
.map--google {
  min-height: 440px;
  background: var(--paper-3);
}
.map--google::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(20,20,22,.08);
  background: linear-gradient(180deg, rgba(247,244,239,.06), rgba(20,20,22,.04));
}
.map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.08) saturate(.9) contrast(.98);
}

.map--google-optin {
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  padding: clamp(20px, 4vw, 38px);
  background:
    radial-gradient(circle at 18% 16%, rgba(164,126,222,.24), transparent 44%),
    radial-gradient(circle at 78% 72%, rgba(196,153,108,.22), transparent 46%),
    repeating-linear-gradient(0deg, rgba(20,20,22,.045) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(20,20,22,.045) 0 1px, transparent 1px 42px),
    var(--paper-2);
}
.map--google-optin .map__preview {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .76;
  transform: scale(1.02);
  transition: opacity .32s ease, transform .32s ease, visibility .32s ease;
}
.map--google-optin .map__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,244,239,.18), rgba(247,244,239,.58)),
    radial-gradient(circle at 50% 42%, transparent 0 22%, rgba(247,244,239,.44) 52%, rgba(247,244,239,.72) 100%);
}
.map--google-optin .map__pin {
  z-index: 1;
}
.map--google-optin .map__google-card,
.map--google-optin .map__directions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
}
.map--google-optin.is-loaded {
  padding: 0;
  background: var(--paper-3);
}
.map--google-optin.is-loaded .map__preview,
.map--google-optin.is-loaded .map__consent-card,
.map--google-optin.is-loaded .map__noscript {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.map--google-optin.is-loaded .map__google-card,
.map--google-optin.is-loaded .map__directions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.map--google-optin.is-loading .map__consent-button {
  cursor: progress;
  opacity: .7;
}
.map__consent-card {
  position: relative;
  z-index: 3;
  width: min(460px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(20,20,22,.10);
  border-radius: 30px;
  background: rgba(247,244,239,.95);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 26px 70px rgba(20,20,22,.18);
  backdrop-filter: blur(16px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.map__consent-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--ink) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, transparent 0 14px, var(--lavender) 15px 16px, transparent 17px),
    rgba(164,126,222,.22);
  box-shadow: inset 0 0 0 1px rgba(20,20,22,.08);
}
.map__consent-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20,20,22,.08);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
}
.map__consent-card strong {
  display: block;
  max-width: 360px;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.02;
}
.map__consent-card p {
  max-width: 390px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.map__consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.map__consent-button,
.map__consent-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 17px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .11em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.map__consent-button {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 36px rgba(20,20,22,.20);
  cursor: pointer;
}
.map__consent-link {
  border: 1px solid rgba(20,20,22,.16);
  background: rgba(247,244,239,.72);
  color: var(--ink);
}
.map__consent-button:hover,
.map__consent-button:focus-visible,
.map__consent-link:hover,
.map__consent-link:focus-visible {
  transform: translateY(-1px);
}
.map__consent-button:focus-visible,
.map__consent-link:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
}
.map__noscript {
  position: absolute;
  left: clamp(14px, 3vw, 24px);
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 4;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(247,244,239,.94);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 12px 30px rgba(20,20,22,.14);
}
.map__noscript a {
  text-decoration: underline;
}

.map__google-card {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  left: clamp(16px, 3vw, 28px);
  z-index: 2;
  max-width: min(320px, calc(100% - 32px));
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(247,244,239,.94);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(20,20,22,.16);
  backdrop-filter: blur(12px);
}
.map__google-badge,
.map__directions {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  border-radius: 999px;
}
.map__google-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--paper);
  background: rgba(20, 20, 22, .86);
}
.map__google-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.map__google-card span:last-child {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.map__directions {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lavender);
  box-shadow: 0 18px 40px rgba(20, 20, 22, .18);
}
.map__directions:hover,
.map__directions:focus-visible {
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .map, .contact-block__right { min-height: 380px; }
  .map__google-card { top: 14px; left: 14px; right: 14px; max-width: none; }
  .map__directions { left: 14px; bottom: 14px; }
  .map--google-optin { padding: 16px; }
  .map__consent-card { border-radius: 24px; padding: 22px 18px; }
  .map__consent-card strong { font-size: 24px; }
  .map__consent-actions { align-items: stretch; flex-direction: column; }
  .map__consent-button, .map__consent-link { width: 100%; }
}
.map__roads {
  position: absolute; inset: 0;
}
.map__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map__pin-dot {
  width: 18px; height: 18px;
  background: var(--lavender);
  border: 3px solid var(--ink);
  border-radius: 50%;
  position: relative;
}
.map__pin-pulse {
  position: absolute; inset: -8px;
  border: 2px solid var(--lavender);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map__pin-label {
  background: var(--ink); color: var(--paper);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 120px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(247,244,239,.14);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }
.footer__logo { width: 320px; max-width: 100%; }
.footer__col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  margin-bottom: 18px;
  color: var(--lavender);
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  opacity: .85;
}
.footer__col a:hover { opacity: 1; color: var(--lavender); }
.footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; opacity: .65;
  flex-wrap: wrap; gap: 12px;
}
.footer__big {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: .8;
  text-align: center;
  margin: 64px 0 32px;
  color: var(--paper);
  opacity: .94;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: .4s; }

.parallax-img {
  transition: transform .25s linear;
  will-change: transform;
}

/* ===== Tin-can string motif divider ===== */
.string-divider {
  display: flex; align-items: center; gap: 16px;
  padding: 36px 0;
  color: var(--muted);
}
.string-divider .line {
  flex: 1; height: 1px;
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 10px);
  opacity: .5;
}
.string-divider .can {
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  position: relative;
}
.string-divider .can::before {
  content: "";
  position: absolute; inset: -3px 4px auto;
  height: 3px; background: var(--ink);
  border-radius: 2px;
}

/* ===== Page header ===== */
.page-hero {
  padding-top: clamp(140px, 16vw, 220px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.page-hero__row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}

/* ===== Service detail ===== */
.svc-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 60px;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .3s ease, color .3s ease;
  cursor: pointer;
}
.svc-row:hover { padding-left: 16px; color: var(--lavender-deep); }
.svc-row__num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--muted);
  letter-spacing: .1em;
}
.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.svc-row__desc { font-size: 15px; color: var(--muted); line-height: 1.5; }
.svc-row__arrow {
  width: 40px; height: 40px;
  border: 1px solid currentColor; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: .4;
  transition: opacity .3s ease, transform .3s ease;
  justify-self: end;
}
.svc-row:hover .svc-row__arrow { opacity: 1; transform: rotate(-45deg); background: var(--lavender); border-color: var(--lavender); color: var(--ink); }
@media (max-width: 800px) {
  .svc-row { grid-template-columns: 60px 1fr 50px; }
  .svc-row__desc { grid-column: 2 / 3; }
}

/* ===== Hörsysteme detail ===== */
.hs-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: clamp(48px, 6vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}
.hs-detail.is-reverse { grid-template-columns: 1.2fr 1fr; }
.hs-detail.is-reverse .hs-detail__copy { order: 2; }
@media (max-width: 900px) { .hs-detail, .hs-detail.is-reverse { grid-template-columns: 1fr; } .hs-detail.is-reverse .hs-detail__copy { order: initial; } }

.hs-detail__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hs-detail__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  line-height: .8;
  font-weight: 500;
  color: var(--lavender-soft);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.hs-detail__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 28px;
}
.hs-detail__copy .lead { margin-top: 4px; }
.hs-detail__bullets {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 28px;
  list-style: none; padding: 0;
}
.hs-detail__bullets li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 16px;
  display: flex; align-items: center; gap: 14px;
}
.hs-detail__bullets li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lavender);
}

/* ===== Form ===== */
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  opacity: .7;
}
.form-row input, .form-row textarea, .form-row select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247,244,239,.3);
  padding: 10px 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  outline: none;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--lavender); }

/* ===== Über uns ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

.timeline {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.timeline__item {
  position: relative; padding-bottom: 36px;
}
.timeline__item::before {
  content: ""; position: absolute;
  left: -38px; top: 6px;
  width: 12px; height: 12px;
  background: var(--lavender);
  border-radius: 50%;
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 6px;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin-bottom: 6px;
}
.timeline__desc { font-size: 15px; color: var(--muted); }

/* ===== News page ===== */
.news-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.news-row {
  display: grid;
  grid-template-columns: 120px 1fr 280px 60px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .3s ease;
  cursor: pointer;
}
.news-row:hover { padding-left: 12px; }
.news-row__date {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--muted);
}
.news-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.news-row__cat {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}
.news-row__visual {
  width: 100%; aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) {
  .news-row { grid-template-columns: 1fr; gap: 16px; }
  .news-row__visual { max-width: 100%; aspect-ratio: 16/9; }
}

/* ===== Filter pills ===== */
.filter-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-pill {
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink);
  transition: all .2s ease;
}
.filter-pill.is-active, .filter-pill:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

/* ===== Quote ===== */
.quote-block {
  padding: clamp(48px, 6vw, 100px) 0;
  text-align: center;
  display: grid;
  place-items: center;
}
.quote-block .reveal {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}
.quote-block__text {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.quote-block__attr {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--muted);
  max-width: 42ch;
  text-align: center;
  text-wrap: balance;
}
.quote-block__text em {
  color: var(--lavender-deep);
  font-style: italic;
}

/* ===== Big phone CTA ===== */
.phone-cta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 28px 36px;
  background: var(--lavender);
  border-radius: 999px;
  width: fit-content;
}
.phone-cta__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.phone-cta__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--ink);
  opacity: .7;
}

/* ===== Falling can (right-edge scroll animation) ===== */
.fc-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
}

/* Das scrollende Dosentelefon nutzt nun zwei synchron laufende Ebenen:
   eine dunkle Basisebene und eine helle Ebene. JavaScript maskiert die helle
   Ebene nur auf die dunklen Hintergrundbereiche im Viewport. Dadurch bleibt
   das Telefon auf hellen Hintergruenden dunkel und wird nur dort hell, wo Dose
   oder Schnur tatsaechlich ueber einem dunklen Bereich liegen. */
.fc-wrap--dynamic-invert {
  --fc-dark: #141416;
  --fc-light: #F7F4EF;
}
.fc-wrap--dynamic-invert .fc-rope {
  stroke: var(--fc-dark);
  opacity: .78;
}
.fc-wrap--dynamic-invert .fc-can img {
  filter: none;
}
.fc-light-layer {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .08s linear;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.fc-light-layer .fc-rope {
  stroke: var(--fc-light);
  opacity: .95;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .18));
}
.fc-light-layer .fc-can img {
  filter: invert(1) contrast(1.04) saturate(.96);
}
.fc-svg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.fc-rope {
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 2px 8px rgba(45, 35, 28, .10));
}
.fc-can {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  will-change: transform, top, left;
  pointer-events: none;
}
.fc-can img { display: block; }
@media (max-width: 760px) {
  .fc-wrap { display: none; }
}

/* Reserve right-edge space on large screens so cans never overlap content */
@media (min-width: 1100px) {
  :root { --maxw: 1240px; }
  .container { padding-right: calc(var(--gutter) + 80px); }
  .nav { padding-right: calc(var(--gutter) + 80px); }
}

/* ===== Hero with falling tin can ===== */
.hwc-wrap {
  position: relative;
  height: 220vh;
}
.hwc-stick {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hwc-content {
  position: absolute;
  inset: 0;
  padding-top: clamp(120px, 14vw, 180px);
  z-index: 2;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hwc-content .hero__bottom { margin-top: clamp(40px, 5vw, 64px); }
.hwc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hwc-can {
  position: absolute;
  overflow: hidden;
  z-index: 3;
  will-change: transform, top, left;
  pointer-events: none;
}
.hwc-can img { display: block; pointer-events: none; }
.hwc-hint {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted);
  transition: opacity .3s ease;
  z-index: 4;
}
.hwc-hint__line {
  width: 1px; height: 32px;
  background: currentColor;
  animation: hintPulse 1.6s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.4); opacity: .3; }
}

/* ===== CanString animation ===== */
.canstring-wrap {
  position: relative;
  height: 220vh;
  pointer-events: none;
  z-index: 1;
}
.canstring-stick {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.canstring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.canstring-can {
  position: absolute;
  overflow: hidden;
  will-change: transform, top, left;
}
.canstring-can img { display: block; pointer-events: none; }
.canstring-hint {
  position: absolute;
  left: 50%; bottom: 64px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted);
  transition: opacity .3s ease;
}
.canstring-hint__line {
  width: 1px; height: 36px;
  background: currentColor;
  animation: hintPulse 1.6s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .4; }
}

/* ===== Tweak overrides ===== */
body.theme-light { background: var(--paper); }
body.accent-mint { --lavender: oklch(0.78 0.12 160); --lavender-soft: oklch(0.88 0.08 160); --lavender-deep: oklch(0.55 0.14 160); }
body.accent-coral { --lavender: oklch(0.78 0.12 30); --lavender-soft: oklch(0.88 0.08 30); --lavender-deep: oklch(0.55 0.14 30); }
body.accent-blue  { --lavender: oklch(0.78 0.12 240); --lavender-soft: oklch(0.88 0.08 240); --lavender-deep: oklch(0.55 0.14 240); }
body.accent-default { /* defaults */ }

body.theme-dark {
  --paper: #141416;
  --paper-2: #1d1d20;
  --paper-3: #25252a;
  --ink: #F7F4EF;
  --line: rgba(247,244,239,.12);
  --line-strong: rgba(247,244,239,.22);
  --muted: rgba(247,244,239,.6);
}
body.theme-dark .nav { background: rgba(20,20,22,.78); }
body.theme-dark .ph {
  background: 
    repeating-linear-gradient(45deg, rgba(247,244,239,.05) 0 1px, transparent 1px 14px),
    var(--paper-3);
}

/* ===== Version 1.0.38: Mobile Kontaktbereich, Öffnungszeiten & Karte ===== */
.contact-block,
.contact-block__left,
.contact-block__right,
.hours,
.map {
  min-width: 0;
}

.contact-block__left,
.contact-block__right,
.map {
  max-width: 100%;
}

.hours__row,
.hours__day,
.hours__time {
  min-width: 0;
}

.hours__row {
  width: 100%;
}

.hours__time {
  overflow-wrap: anywhere;
}

.map {
  overflow: hidden;
}

.map__iframe {
  display: block;
  max-width: 100%;
}

@media (max-width: 760px) {
  .contact-block {
    width: 100%;
    border-radius: clamp(18px, 6vw, var(--r-lg));
    overflow: hidden;
  }

  .contact-block__left {
    padding: clamp(30px, 8vw, 42px) clamp(18px, 5.8vw, 28px);
    gap: 24px;
  }

  .contact-block__left > div {
    min-width: 0;
  }

  .contact-block__left .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .phone-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    padding: clamp(19px, 5.8vw, 26px) clamp(18px, 5.8vw, 28px);
    gap: 8px;
  }

  .phone-cta__num {
    width: 100%;
    font-size: clamp(25px, 8vw, 38px);
    letter-spacing: -.035em;
    white-space: nowrap;
  }

  .phone-cta__label {
    width: 100%;
  }

  .hours {
    gap: 4px;
  }

  .hours__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 12px;
    row-gap: 5px;
    padding: 10px 0;
  }

  .hours__day {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    min-width: 0;
  }

  .hours__day > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hours__state {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .hours__time {
    margin-left: 0;
    justify-self: end;
    max-width: min(44vw, 190px);
    text-align: right;
    line-height: 1.28;
  }

  .hours__row--special {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hours__row--special .hours__time {
    justify-self: stretch;
    max-width: 100%;
    text-align: left;
  }

  .hours__row--special .hours__time > span:first-child {
    display: block;
  }

  .hours__note {
    max-width: 34ch;
  }

  .hours__specials {
    margin-top: 16px;
    padding-top: 16px;
  }

  .hours__special-title {
    text-align: center;
  }

  .contact-block__right {
    min-height: 0;
  }

  .map,
  .map--google {
    height: clamp(360px, 105vw, 500px);
    min-height: 0;
  }

  .map__google-card {
    top: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 13px 14px 14px;
    border-radius: 20px;
    text-align: center;
  }

  .map__google-badge {
    margin-bottom: 8px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .map__google-card strong {
    font-size: 17px;
  }

  .map__google-card span:last-child {
    font-size: 12px;
    line-height: 1.35;
  }

  .map__directions {
    left: 50%;
    right: auto;
    bottom: 14px;
    min-width: min(232px, calc(100% - 28px));
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .map__directions:hover,
  .map__directions:focus-visible {
    transform: translateX(-50%) translateY(-1px);
  }

  .map--google-optin {
    min-height: 420px;
    height: auto;
    padding: 18px;
  }

  .map__consent-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 420px) {
  .contact-block {
    border-radius: 18px;
  }

  .contact-block__left {
    padding-left: 16px;
    padding-right: 16px;
  }

  .phone-cta {
    padding-left: 15px;
    padding-right: 15px;
  }

  .phone-cta__num {
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .hours__row:not(.hours__row--special) {
    grid-template-columns: minmax(0, 1fr);
  }

  .hours__row:not(.hours__row--special) .hours__time {
    justify-self: start;
    max-width: 100%;
    text-align: left;
  }

  .hours__state {
    font-size: 8px;
    padding: 3px 7px 2px;
  }

  .map,
  .map--google {
    height: clamp(340px, 116vw, 460px);
  }

  .map__google-card {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 12px 12px 13px;
  }

  .map__directions {
    bottom: 12px;
    min-width: min(214px, calc(100% - 24px));
    padding: 11px 14px;
    font-size: 10px;
  }
}

@media (max-width: 340px) {
  .phone-cta__num {
    font-size: 21px;
  }

  .hours__row {
    font-size: 14px;
  }

  .map__google-card strong {
    font-size: 15px;
  }
}

/* ===== Version 1.0.39: Mobile Öffnungszeiten-Ausrichtung & Kartenbutton ===== */
@media (max-width: 760px) {
  .contact-block .hours__row:not(.hours__row--special) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 16px;
    row-gap: 6px;
    text-align: left;
  }

  .contact-block .hours__row:not(.hours__row--special) .hours__day {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-block .hours__row:not(.hours__row--special) .hours__day > span:first-child {
    width: auto;
    text-align: left;
  }

  .contact-block .hours__row:not(.hours__row--special) .hours__time {
    justify-self: end;
    max-width: min(44vw, 190px);
    margin-left: 0;
    text-align: right;
    white-space: normal;
  }

  .contact-block .hours__state {
    text-align: left;
  }

  .contact-block .hours__row--special {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: start;
    column-gap: 14px;
    row-gap: 8px;
  }

  .contact-block .hours__row--special .hours__day {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-block .hours__row--special .hours__day > span:first-child {
    width: auto;
  }

  .contact-block .hours__row--special .hours__time {
    justify-self: end;
    max-width: min(46vw, 190px);
    text-align: right;
  }

  .contact-block .hours__row--special .hours__note {
    max-width: 24ch;
    margin-left: auto;
    text-align: right;
  }

  .contact-block .map__directions,
  .contact-block .map--google.is-loaded .map__directions,
  .contact-block .map--google-optin.is-loaded .map__directions {
    left: 50%;
    right: auto;
    bottom: clamp(18px, 5vw, 28px);
    display: inline-flex;
    justify-content: center;
    width: min(232px, calc(100% - 48px));
    min-width: 0;
    max-width: calc(100% - 48px);
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .contact-block .map__directions:hover,
  .contact-block .map__directions:focus-visible,
  .contact-block .map--google.is-loaded .map__directions:hover,
  .contact-block .map--google.is-loaded .map__directions:focus-visible,
  .contact-block .map--google-optin.is-loaded .map__directions:hover,
  .contact-block .map--google-optin.is-loaded .map__directions:focus-visible {
    transform: translateX(-50%) translateY(-1px);
  }
}

@media (max-width: 420px) {
  .contact-block .hours__row:not(.hours__row--special) {
    grid-template-columns: minmax(0, 1fr) max-content;
    text-align: left;
  }

  .contact-block .hours__row:not(.hours__row--special) .hours__day {
    justify-content: flex-start;
  }

  .contact-block .hours__row:not(.hours__row--special) .hours__time {
    justify-self: end;
    max-width: 44vw;
    text-align: right;
  }

  .contact-block .hours__row--special {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-block .hours__row--special .hours__day,
  .contact-block .hours__row--special .hours__time,
  .contact-block .hours__row--special .hours__note {
    justify-self: start;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .contact-block .map__directions,
  .contact-block .map--google.is-loaded .map__directions,
  .contact-block .map--google-optin.is-loaded .map__directions {
    width: min(220px, calc(100% - 40px));
    max-width: calc(100% - 40px);
    bottom: 20px;
  }
}

/* ===== Version 1.0.39: Mobile Oeffnungszeiten-Zeilen und Kartenbutton verfeinert ===== */
@media (max-width: 760px) {
  .hours__row:not(.hours__row--special) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: start;
    column-gap: 14px;
    row-gap: 6px;
    text-align: left;
  }

  .hours__row:not(.hours__row--special) .hours__day {
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .hours__row:not(.hours__row--special) .hours__time {
    justify-self: end;
    margin-left: 0;
    max-width: none;
    text-align: right;
    white-space: nowrap;
  }

  .hours__row:not(.hours__row--special) .hours__state {
    white-space: normal;
    text-align: left;
  }

  .map__directions {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px;
    width: auto;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transform: none !important;
  }

  .map__directions:hover,
  .map__directions:focus-visible {
    transform: translateY(-1px) !important;
  }
}

@media (max-width: 420px) {
  .hours__row:not(.hours__row--special) {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .hours__row:not(.hours__row--special) .hours__time {
    justify-self: end;
    max-width: none;
    text-align: right;
    white-space: nowrap;
  }

  .map__directions {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px;
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 340px) {
  .hours__row:not(.hours__row--special) {
    column-gap: 10px;
    font-size: 14px;
  }

  .hours__row:not(.hours__row--special) .hours__time {
    font-size: 14px;
  }
}

/* ===== Version 1.0.39: Mobile opening-hours alignment and map CTA safety ===== */
@media (max-width: 700px) {
  .hours__row:not(.hours__row--special) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    align-items: center !important;
    gap: 6px 14px !important;
    text-align: left !important;
  }

  .hours__row:not(.hours__row--special) .hours__day {
    min-width: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .hours__row:not(.hours__row--special) .hours__time {
    justify-self: end !important;
    max-width: none !important;
    margin-left: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  .map,
  .map--google,
  .map--google-optin {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .map__directions {
    left: clamp(14px, 4vw, 18px) !important;
    right: clamp(14px, 4vw, 18px) !important;
    bottom: clamp(14px, 4vw, 20px) !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transform: none !important;
    white-space: nowrap !important;
  }

  .map__directions:hover,
  .map__directions:focus-visible {
    transform: translateY(-1px) !important;
  }
}

/* ===== Version 1.0.41: Sonderzeiten wie regulaere Oeffnungszeiten ausrichten ===== */
.hours__row--special,
.contact-block .hours__row--special {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content !important;
  align-items: start !important;
  gap: 6px 14px !important;
  text-align: left !important;
}

.hours__row--special .hours__day,
.contact-block .hours__row--special .hours__day {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px 8px !important;
  text-align: left !important;
}

.hours__row--special .hours__day > span:first-child,
.contact-block .hours__row--special .hours__day > span:first-child {
  min-width: 0 !important;
  width: auto !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

.hours__row--special .hours__state,
.contact-block .hours__row--special .hours__state {
  justify-self: start !important;
  max-width: 100% !important;
  text-align: left !important;
  white-space: normal !important;
}

.hours__row--special .hours__time,
.contact-block .hours__row--special .hours__time {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  align-self: start !important;
  display: block !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.hours__row--special .hours__note,
.contact-block .hours__row--special .hours__note {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  justify-self: stretch !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 420px) {
  .hours__row--special,
  .contact-block .hours__row--special {
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 6px 10px !important;
    font-size: 14px !important;
  }

  .hours__row--special .hours__time,
  .contact-block .hours__row--special .hours__time {
    max-width: 38vw !important;
    font-size: 14px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 320px) {
  .hours__row--special,
  .contact-block .hours__row--special {
    grid-template-columns: minmax(0, 1fr) !important;
    text-align: center !important;
  }

  .hours__row--special .hours__day,
  .hours__row--special .hours__time,
  .hours__row--special .hours__note,
  .contact-block .hours__row--special .hours__day,
  .contact-block .hours__row--special .hours__time,
  .contact-block .hours__row--special .hours__note {
    grid-column: 1 !important;
    justify-self: center !important;
    text-align: center !important;
  }

  .hours__row--special .hours__day,
  .contact-block .hours__row--special .hours__day {
    justify-content: center !important;
  }

  .hours__row--special .hours__time,
  .contact-block .hours__row--special .hours__time {
    grid-row: 2 !important;
    max-width: 100% !important;
  }

  .hours__row--special .hours__note,
  .contact-block .hours__row--special .hours__note {
    grid-row: 3 !important;
  }
}


/* ===== Version 1.0.41: Hero-Metarow sicher unterhalb der festen Navigation ===== */
.hero__eyebrow-row {
  width: 100%;
  min-height: 1.6em;
}
@media (max-width: 980px) {
  .hero__eyebrow-row {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}


/* ===== Version 1.0.41: Hero-Kicker sicher unter fixer Navigation ===== */
.hero {
  scroll-margin-top: calc(var(--owl-nav-height-safe, clamp(122px, 10vw, 170px)) + 24px);
}


/* ===== Version 1.0.45: Einheitliche Hoersystem-Produktbilder ===== */
.owl-hearing-cards .hs-card__visual {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  background: #fff;
}

.owl-hearing-cards .hs-card__visual .ph {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  background: #fff;
  border-radius: inherit;
}

.owl-hearing-cards .hs-card__visual .ph.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  background: #fff;
}

.owl-hearing-cards .hs-card.is-feat .hs-card__visual .ph,
.owl-hearing-cards .hs-card.is-feat .hs-card__visual .ph.has-image img {
  background: #fff;
}

@media (max-width: 600px) {
  .owl-hearing-cards .hs-card__visual {
    max-width: min(320px, 100%);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.owl-hearing-details .hs-detail__visual .ph {
  background: #fff;
}

.owl-hearing-details .hs-detail__visual .ph.has-image img {
  object-fit: contain;
  background: #fff;
}
