@charset "UTF-8";
/* abstracts: Variablen & Mixins */
/* abstracts/_index.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "RobotoSlab", serif;
}

a {
  color: #B2A376;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: rgb(156.8457943925, 139.6728971963, 88.1542056075);
}

/* abstracts/_index.scss */
/* base styles */
/* abstracts: Variablen & Mixins */
@font-face {
  font-family: "RobotoSlab";
  src: url("../Fonts/RobotoSlab-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../Fonts/RobotoSlab.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../Fonts/RobotoSlab-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* ---------------------------------------------------
   Basis-Reset und Textverhalten
--------------------------------------------------- */
body {
  color: #4a545b;
  font-family: "RobotoSlab", serif;
  line-height: 1.6;
}

/* ---------------------------------------------------
   Überschriften-Farblogik:
   - Erste (übergeordnete) Überschrift: Markenfarbe
   - Untergeordnete Überschriften: Standardtextfarbe
--------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
  color: var(--heading-secondary-color);
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  color: var(--heading-primary-color);
}
h1 + h2, h1 + h3, h1 + h4,
h2 + h2,
h2 + h3,
h2 + h4,
h3 + h2,
h3 + h3,
h3 + h4,
h4 + h2,
h4 + h3,
h4 + h4,
h5 + h2,
h5 + h3,
h5 + h4,
h6 + h2,
h6 + h3,
h6 + h4 {
  color: var(--heading-secondary-color);
  text-transform: none;
}

:root {
  --mainFontFamily: RobotoSlab, serif;
  --bodyBgColor: var(--bodyBg, #fff);
  --heading-primary-color: #B2A376;
  --heading-secondary-color: #4a545b;
}

html {
  font-size: 17px;
}

body {
  font-family: var(--mainFontFamily);
}

body,
p {
  font-weight: 300;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 1.55em;
}

h3 {
  font-size: 1.2em;
}

h4 {
  font-size: 1.05em;
}

/* components */
.c-section:has(.frame-type-banderole),
.c-section > .contentWidth.content:has(.frame-type-banderole) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

article.ce-banderole {
  position: relative;
  width: 100%;
  margin: 0 auto 120px;
  overflow: visible;
  --panel-w: 56%;
  --panel-pad: clamp(8px, 2vw, 24px);
  /* ⚠️ Default-Reihenfolge & Slot-Höhen */
  --row-header: 1;
  --row-address: 2;
  --row-subheader: 3;
  --row-links: 4;
  --row-media: 5;
  --row-body: 6;
  /* Platzhalterhöhen (leere Slots behalten Platz) */
  --h-header: auto;
  --h-address: 1.1rem;
  --h-subheader: 1.6rem;
  --h-links: 0;
  --h-media: auto;
  --h-body: 0;
}
@media (max-width: 1024px) {
  article.ce-banderole {
    --panel-w: 62%;
  }
}
@media (max-width: 768px) {
  article.ce-banderole {
    --panel-w: 72%;
  }
}
@media (max-width: 640px) {
  article.ce-banderole {
    --panel-w: 84%;
  }
}
article.ce-banderole .ce-banderole__art {
  position: relative;
  width: var(--panel-w);
  margin: 0 auto;
  line-height: 0;
  z-index: 1;
}
article.ce-banderole .ce-banderole__logo {
  display: block;
  width: 100%;
  margin-inline: auto;
  filter: drop-shadow(14px 14px 10px rgba(0, 0, 0, 0.25));
}
article.ce-banderole .ce-banderole__logo-portrait,
article.ce-banderole .ce-banderole__logo-landscape {
  display: block;
  width: 100%;
}
article.ce-banderole .ce-banderole__logo-portrait svg,
article.ce-banderole .ce-banderole__logo-landscape svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
article.ce-banderole .ce-banderole__logo-portrait .logo-bg,
article.ce-banderole .ce-banderole__logo-landscape .logo-bg {
  fill: var(--logo-bg-color, color-mix(in srgb, #B2A376 55%, #353535));
}
article.ce-banderole .ce-banderole__logo-portrait {
  display: block;
}
article.ce-banderole .ce-banderole__logo-portrait svg {
  width: var(--banderole-portrait-width, 430px);
}
article.ce-banderole .ce-banderole__logo-landscape {
  display: none;
}
article.ce-banderole .ce-banderole__logo-landscape svg {
  width: var(--banderole-landscape-width, 700px);
}
@media screen and (min-aspect-ratio: 5/4) {
  article.ce-banderole .ce-banderole__logo-portrait {
    display: none;
  }
  article.ce-banderole .ce-banderole__logo-landscape {
    display: block;
  }
}
article.ce-banderole .ce-banderole__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  box-sizing: border-box;
  padding-inline: calc(var(--panel-pad) + 1rem);
  padding-top: 0;
  padding-bottom: 0.5rem;
  line-height: 1.4;
  pointer-events: none;
}
article.ce-banderole .ce-banderole__inner a {
  pointer-events: auto;
}
article.ce-banderole .ce-banderole__inner {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto 1fr;
  align-content: start;
  overflow: hidden;
}
article.ce-banderole .ce-banderole__inner .slot {
  grid-column: 1;
  min-height: 0;
}
article.ce-banderole .ce-banderole__inner .slot--header {
  grid-row: var(--row-header);
  min-height: var(--h-header);
}
article.ce-banderole .ce-banderole__inner .slot--address {
  grid-row: var(--row-address);
  min-height: var(--h-address);
}
article.ce-banderole .ce-banderole__inner .slot--subheader {
  grid-row: var(--row-subheader);
  min-height: var(--h-subheader);
}
article.ce-banderole .ce-banderole__inner .slot--links {
  grid-row: var(--row-links);
  min-height: var(--h-links);
}
article.ce-banderole .ce-banderole__inner .slot--media {
  grid-row: var(--row-media);
  min-height: var(--h-media);
  justify-self: center;
  width: 100%;
}
article.ce-banderole .ce-banderole__inner .slot--body {
  grid-row: var(--row-body);
  min-height: var(--h-body);
}
article.ce-banderole .ce-banderole__inner .slot--header header {
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  display: flow-root;
}
article.ce-banderole .ce-banderole__inner .slot--header header > h2 {
  margin: 0;
  text-align: center;
  justify-self: center;
  color: #fff;
  line-height: 1.1;
  font-size: clamp(1.25rem, 4.5vw, 2rem);
  letter-spacing: 0.01em;
}
@media screen and (orientation: landscape) and (min-width: 1024px) {
  article.ce-banderole .ce-banderole__inner .slot--header header > h2 {
    font-size: 2rem;
    line-height: 0.8;
    letter-spacing: 0.02em;
  }
}
article.ce-banderole .ce-banderole__inner .slot--address .ce-banderole__addressline {
  margin-top: 1.25rem;
  text-align: center;
  line-height: 1.3;
  color: #5c0a0a;
}
article.ce-banderole .ce-banderole__inner .slot--address .ce-banderole__addressline span {
  display: inline-block;
}
article.ce-banderole .ce-banderole__inner .slot--subheader h3 {
  margin: 0.35rem auto 0;
  text-align: center;
  justify-self: center;
  line-height: 1.15;
  font-size: clamp(1rem, 3.2vw, 1.625rem);
}
article.ce-banderole .ce-banderole__inner .slot--links .ce-banderole__links {
  margin: 0.75rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
  max-width: 65ch;
}
article.ce-banderole .ce-banderole__inner .slot--links .ce-banderole__links li {
  list-style: none;
}
article.ce-banderole .ce-banderole__inner .slot--links .ce-banderole__links a {
  text-decoration: none;
}
article.ce-banderole .ce-banderole__inner .slot--media .ce-banderole__content-media {
  display: flex;
  justify-content: center;
  margin: 0.75rem auto 0;
  min-height: 0;
  width: 100%;
}
article.ce-banderole .ce-banderole__inner .slot--media .ce-banderole__content-image {
  display: block;
  width: 100%;
  height: auto;
}
article.ce-banderole .ce-banderole__inner .slot--body .ce-textpic {
  justify-self: center;
  width: 100%;
  min-height: 0;
}
article.ce-banderole .ce-banderole__inner .slot--body .ce-textpic .ce-bodytext {
  max-width: 65ch;
  margin: 1.5rem auto 0;
  text-align: center;
  line-height: 1.5;
  font-size: clamp(0.95rem, 2.4vw, 1.0625rem);
}
@media (max-width: 420px) {
  article.ce-banderole .ce-banderole__inner .slot--header header > h2 {
    line-height: 1.08;
  }
  article.ce-banderole .ce-banderole__inner .slot--body .ce-textpic .ce-bodytext {
    margin-top: 1.1rem;
  }
}
article.ce-banderole .ce-banderole__cta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  height: clamp(144px, 60%, 288px);
  display: block;
  background: none;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}

/* Optional: Presets per data-order */
article.ce-banderole[data-order=media-first] {
  --row-media: 1;
  --row-header: 2;
  --row-address: 3;
  --row-subheader: 4;
  --row-links: 5;
  --row-body: 6;
}

article.ce-banderole[data-order=links-last] {
  --row-links: 6;
}

/* Feste Paletten – .checker-red soll genau diese Farbtöne verwenden */
.text-light {
  color: #aca9a9;
}

.text-dark {
  color: #4a545b;
}

.text-default {
  color: #4a545b;
}

.bg-white {
  background-color: #fff;
  color: #4a545b;
}

.bg-black {
  background-color: #000;
  color: #aca9a9;
}

.bg-light {
  background-color: #fff;
  color: #4a545b;
}

.bg-dark {
  background-color: #353535;
  color: #aca9a9;
}

.bg-default {
  background-color: #fff;
  color: #4a545b;
}

.border {
  border: 1px solid #d1d9e0;
  border-radius: 0px;
}

.border-light {
  border: 1px solid #454343;
  border-radius: 0px;
}

.border-dark {
  border: 1px solid #aca9a9;
  border-radius: 0px;
}

.border-white {
  border: 1px solid #fff;
  border-radius: 0px;
}

.border-black {
  border: 1px solid #000;
  border-radius: 0px;
}

.border-0 {
  border: 0;
}

.rounded {
  border-radius: 0px;
}

.rounded-0 {
  border-radius: 0;
}

html,
body {
  overflow-x: clip;
}

.stroh-checker-strip {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100svw;
  transform: translateX(-50%);
}
@supports not (width: 100svw) {
  .stroh-checker-strip {
    width: 100vw;
  }
}
.stroh-checker-strip {
  height: 130px;
  /* pro Einheit 32: 96 / 120 / 160 px */
  z-index: 0;
  pointer-events: none;
  border-bottom: 3px solid #000;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.4);
}

@supports (width: 100lvw) and (width: 100dvw) {
  .stroh-checker-strip {
    min-width: 100lvw;
    max-width: 100dvw;
  }
}
/* ============================================
   A) Checker-Varianten
   ============================================ */
.stroh-checker-strip[data-bg=checker-red] {
  --s: 32px;
  background-image: conic-gradient(#97191d 25%, #431b1c 0 50%, #391b1d 0 75%, #671019 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

.stroh-checker-strip[data-bg=checker-green] {
  --s: 32px;
  background-image: conic-gradient(#1e4423 25%, #16331a 0 50%, #102216 0 75%, #25532a 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

.stroh-checker-strip[data-bg=checker-blue] {
  --s: 32px;
  background-image: conic-gradient(#243c66 25%, #1a2c4d 0 50%, #121c2b 0 75%, #2e4f80 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

.stroh-checker-strip[data-bg=checker-dark] {
  --s: 32px;
  background-image: conic-gradient(#1c1c1e 25%, #0f0f10 0 50%, #131315 0 75%, #2a2a2c 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

.stroh-checker-strip[data-bg=checker-light] {
  --s: 32px;
  background-image: conic-gradient(#f6f7f8 25%, #e6e8eb 0 50%, #d9dde1 0 75%, #edeff1 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

/* Fallback */
.stroh-checker-strip:not([data-bg]),
.stroh-checker-strip[data-bg=""],
.stroh-checker-strip[data-bg=none] {
  --s: 32px;
  background-image: conic-gradient(#1c1c1e 25%, #0f0f10 0 50%, #131315 0 75%, #2a2a2c 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

/* ============================================
   B) Solide Hintergründe (bg-*)
   ============================================ */
.stroh-checker-strip[data-bg=bg-light] {
  background-color: #fff !important;
  background-image: none !important;
}

.stroh-checker-strip[data-bg=bg-dark] {
  background-color: #353535 !important;
  background-image: none !important;
}

.stroh-checker-strip[data-bg=bg-white] {
  background-color: #fff !important;
  background-image: none !important;
}

.stroh-checker-strip[data-bg=bg-black] {
  background-color: #000 !important;
  background-image: none !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .stroh-checker-strip {
    height: 120px;
    /* pro Einheit 24: 72 / 96 / 120 px */
  }
  .stroh-checker-strip[data-bg=checker-red] {
    --s: 24px;
    background-image: conic-gradient(#97191d 25%, #431b1c 0 50%, #391b1d 0 75%, #671019 0);
    background-size: calc(var(--s) * 2) calc(var(--s) * 2);
    background-position: center top;
    background-repeat: repeat;
  }
  .stroh-checker-strip[data-bg=checker-green] {
    --s: 24px;
    background-image: conic-gradient(#1e4423 25%, #16331a 0 50%, #102216 0 75%, #25532a 0);
    background-size: calc(var(--s) * 2) calc(var(--s) * 2);
    background-position: center top;
    background-repeat: repeat;
  }
  .stroh-checker-strip[data-bg=checker-blue] {
    --s: 24px;
    background-image: conic-gradient(#243c66 25%, #1a2c4d 0 50%, #121c2b 0 75%, #2e4f80 0);
    background-size: calc(var(--s) * 2) calc(var(--s) * 2);
    background-position: center top;
    background-repeat: repeat;
  }
  .stroh-checker-strip[data-bg=checker-dark] {
    --s: 24px;
    background-image: conic-gradient(#1c1c1e 25%, #0f0f10 0 50%, #131315 0 75%, #2a2a2c 0);
    background-size: calc(var(--s) * 2) calc(var(--s) * 2);
    background-position: center top;
    background-repeat: repeat;
  }
  .stroh-checker-strip[data-bg=checker-light] {
    --s: 24px;
    background-image: conic-gradient(#f6f7f8 25%, #e6e8eb 0 50%, #d9dde1 0 75%, #edeff1 0);
    background-size: calc(var(--s) * 2) calc(var(--s) * 2);
    background-position: center top;
    background-repeat: repeat;
  }
}
/* --- Letzter Fallback für sehr alte Engines --- */
@supports not (width: 100vw) {
  .stroh-checker-strip {
    left: 0;
    transform: none;
    width: 100%;
  }
}
/* Container */
.addresses--horizontal {
  display: grid;
  gap: 0.75rem;
}

/* Liste zurücksetzen */
.addresses-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.addresses-list > li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.4;
  font-size: 0.75rem;
  color: inherit;
  /* oder: vars.$sw-color-brand-primary */
  /* Beispiel, falls du *explizit* Primärfarbe willst:
     color: vars.$sw-color-brand-primary;
  */
}

/* Links neutral */
.addresses-list a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Iconzeile */
.addresses-list .addresses-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Icons (inkl. <a>) */
.addresses-icon,
.addresses-icon a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* SVG */
.addresses-icon .icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor !important;
}

/* Desktop: eine Zeile mit Trennern */
@media (min-width: 768px) {
  .addresses-list {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .addresses-list > li {
    display: inline-flex;
    padding: 0;
    color: inherit;
    /* oder vars.$sw-color-brand-primary */
  }
  .addresses-list > li:not(:last-child):not(.addresses-icons)::after {
    content: "•";
    margin-left: 0.5rem;
    color: inherit;
    /* Trenner erbt Farbe */
  }
  .addresses-list > li {
    font-size: 0.875rem;
  }
}
/* responsive Standard */
.addresses-item-img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* optional bei Crops */
}

/* falls Thumbnails hart gedeckelt werden sollen */
.addresses--two-col .addresses-item-img {
  width: 528px;
  /* optische Breite im Layout */
  max-width: 100%;
  /* schrumpft auf kleineren Screens */
}

.klaro .cookie-notice .cm-btn,
.klaro .context-notice .cm-btn,
.klaro .cookie-modal .cm-btn,
.klaro .cm-modal .cm-btn,
.klaro .cm-notice .cm-btn,
.klaro .cookie-notice button,
.klaro .context-notice button,
.klaro .cookie-modal button,
.klaro .cm-modal button,
.klaro .cm-notice button {
  min-height: 2.05rem;
  padding: 0.42rem 0.8rem;
  border: 0 solid color-mix(in srgb, #fff 35%, #353535);
  background: color-mix(in srgb, #fff 17%, #353535);
  color: #fff;
  border-radius: 0px;
  font-size: 0.82rem;
  font-weight: 400;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.klaro .cookie-notice:hover,
.klaro .cookie-notice:focus-within,
.klaro .context-notice:hover,
.klaro .context-notice:focus-within,
.klaro .cookie-modal:hover,
.klaro .cookie-modal:focus-within,
.klaro .cm-modal:hover,
.klaro .cm-modal:focus-within,
.klaro .cm-notice:hover,
.klaro .cm-notice:focus-within {
  border-radius: 0px;
  box-shadow: none;
  outline: 0;
}

.klaro .cookie-notice .cm-btn:hover,
.klaro .cookie-notice .cm-btn:focus,
.klaro .cookie-notice .cm-btn:focus-visible,
.klaro .context-notice .cm-btn:hover,
.klaro .context-notice .cm-btn:focus,
.klaro .context-notice .cm-btn:focus-visible,
.klaro .cookie-modal .cm-btn:hover,
.klaro .cookie-modal .cm-btn:focus,
.klaro .cookie-modal .cm-btn:focus-visible,
.klaro .cm-modal .cm-btn:hover,
.klaro .cm-modal .cm-btn:focus,
.klaro .cm-modal .cm-btn:focus-visible,
.klaro .cm-notice .cm-btn:hover,
.klaro .cm-notice .cm-btn:focus,
.klaro .cm-notice .cm-btn:focus-visible,
.klaro .cookie-notice button:hover,
.klaro .cookie-notice button:focus,
.klaro .cookie-notice button:focus-visible,
.klaro .context-notice button:hover,
.klaro .context-notice button:focus,
.klaro .context-notice button:focus-visible,
.klaro .cookie-modal button:hover,
.klaro .cookie-modal button:focus,
.klaro .cookie-modal button:focus-visible,
.klaro .cm-modal button:hover,
.klaro .cm-modal button:focus,
.klaro .cm-modal button:focus-visible,
.klaro .cm-notice button:hover,
.klaro .cm-notice button:focus,
.klaro .cm-notice button:focus-visible,
.klaro .cm-notice .cm-btn:focus-visible {
  background: color-mix(in srgb, #fff 21%, #353535);
  border-color: color-mix(in srgb, #fff 40%, #353535);
  color: #fff;
  border-radius: 0px;
  box-shadow: none;
  outline: 0;
}

.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--accentColor, #B2A376);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stroh-language-prompt {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  background: color-mix(in srgb, #000 48%, transparent);
}

.stroh-language-prompt__inner {
  width: min(30rem, 100vw - 2rem);
  border: 0;
  border-radius: 0px;
  background: color-mix(in srgb, #353535 97%, transparent);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 5px 5px 10px rgba(0, 0, 0, 0.19);
  padding: 1.2rem 1.2rem 1.05rem;
  backdrop-filter: blur(4px);
}

.stroh-language-prompt__title {
  margin: 0 0 0.55rem;
  font-weight: 400;
  font-size: 1rem;
  color: var(--accentColor, #B2A376);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stroh-language-prompt__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, #fff 72%, #353535);
}

.stroh-language-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.stroh-language-prompt__button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.05rem;
  min-width: 0;
  width: 100%;
  padding: 0.42rem 0.8rem;
  border: 0 solid color-mix(in srgb, #fff 35%, #353535);
  border-radius: 0px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.stroh-language-prompt__button--ghost {
  background: color-mix(in srgb, #fff 17%, #353535);
  border-color: color-mix(in srgb, #fff 35%, #353535);
  color: var(--accentColor, #B2A376);
}

.stroh-language-prompt__button--ghost:hover,
.stroh-language-prompt__button--ghost:focus-visible {
  background: color-mix(in srgb, #fff 21%, #353535);
  border-color: color-mix(in srgb, #fff 40%, #353535);
  color: #fff;
}

.stroh-language-prompt__button--primary,
.stroh-language-prompt__button--primary:visited {
  background: color-mix(in srgb, #fff 17%, #353535);
  border-color: color-mix(in srgb, #fff 35%, #353535);
  color: #fff;
}

.stroh-language-prompt__button--primary:hover,
.stroh-language-prompt__button--primary:focus-visible {
  background: color-mix(in srgb, #fff 21%, #353535);
  border-color: color-mix(in srgb, #fff 40%, #353535);
  color: #fff;
}

@media (max-width: 640px) {
  .stroh-language-prompt__actions {
    flex-direction: column;
  }
  .stroh-language-prompt__button {
    width: 100%;
  }
}
/* Minimal: nur Layout + Umschaltung. Farben/Buttons kommen global. */
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.map-links .btn--map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0.42rem 0.8rem;
  border-radius: 0px;
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  /* keine festen Farben – erbt aus globalen Link/Button-Styles */
}
.map-links {
  /* Desktop: Web-Link sichtbar, App-Link aus */
}
.map-links .link--web {
  display: inline-flex;
}
.map-links .link--app {
  display: none;
}
.map-links {
  /* Mobile/Touch: App-Link sichtbar, Web-Link aus */
}
@media (hover: none) and (pointer: coarse) {
  .map-links .link--web {
    display: none;
  }
  .map-links .link--app {
    display: inline-flex;
  }
}

/* Brandline – zusammengeführt aus _socialFooter.scss und _socialIcons.scss */
.stroh-brandline-wrapper {
  /* Component-scoped Design Tokens */
  --bl-logo-color: #B2A376;
  --bl-hover: rgb(196.3504672897, 184.9252336449, 150.6495327103);
  --bl-gap: 24px;
  --bl-icon-box: 2rem;
  --bl-icon-size: 20px;
  --bl-line-w: 10rem;
  --bl-line-h: 1px;
  --bl-logo-w: 120px;
  --bl-logo-offset-y: -18px;
  --bl-mt: 48px;
  --bl-mb: 10px;
  --bl-border-w: 1px;
  --bl-border-style: solid;
  color: #454343;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--bl-gap);
  margin-top: var(--bl-mt);
  margin-bottom: var(--bl-mb);
}
.stroh-brandline-wrapper > a,
.stroh-brandline-wrapper > a:link,
.stroh-brandline-wrapper > a:visited {
  color: inherit;
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (width < 768px) {
  .stroh-brandline-wrapper {
    --bl-gap: 16px;
    --bl-icon-box: 34px;
    --bl-icon-size: 16px;
    --bl-line-w: 40px;
    --bl-logo-w: 80px;
    --bl-logo-offset-y: -12px;
    --bl-mt: 16px;
    --bl-mb: 16px;
  }
}
.stroh-brandline-wrapper .stroh-brandline-intro,
.stroh-brandline-wrapper .stroh-brandline-outro {
  font-size: 0.75rem;
  font-style: italic;
  white-space: nowrap;
  transition: color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 768px) {
  .stroh-brandline-wrapper .stroh-brandline-intro,
  .stroh-brandline-wrapper .stroh-brandline-outro {
    display: none;
  }
}
.stroh-brandline-wrapper .stroh-brandline-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--bl-gap);
  /* Icon Buttons */
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--bl-icon-box);
  height: var(--bl-icon-box);
  padding: 0;
  line-height: 0;
  border-width: var(--bl-border-w);
  border-style: var(--bl-border-style);
  border-color: #454343;
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-icon a:focus-visible {
  outline: 2px solid var(--bl-hover);
  outline-offset: 2px;
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-icon a .icon {
  display: inline-block;
  width: var(--bl-icon-size);
  height: var(--bl-icon-size);
  color: #454343;
  transition: color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-icon a .icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-icon a > svg {
  display: block;
  width: var(--bl-icon-size);
  height: var(--bl-icon-size);
  fill: currentColor;
}
.stroh-brandline-wrapper .stroh-brandline-list {
  /* Icon hover/focus */
}
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-icon:hover .icon,
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-icon a:focus-visible .icon,
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-icon:hover > a > svg,
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-icon a:focus-visible > svg {
  color: var(--bl-hover);
  fill: var(--bl-hover);
}
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-icon:hover a,
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-icon a:focus-visible {
  border-color: var(--bl-hover);
}
.stroh-brandline-wrapper .stroh-brandline-list {
  /* Linien */
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-line {
  position: relative;
  width: var(--bl-line-w);
  height: var(--bl-line-h);
  background-color: currentColor;
  opacity: 1;
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bl-hover);
  transform: scaleX(0);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-line-left::after {
  transform-origin: right;
}
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-line-right::after {
  transform-origin: left;
}
@supports selector(:has(*)) {
  .stroh-brandline-wrapper .stroh-brandline-list:has(.stroh-brandline-icon-left:hover) .stroh-brandline-line-left::after, .stroh-brandline-wrapper .stroh-brandline-list:has(.stroh-brandline-icon-left a:focus-visible) .stroh-brandline-line-left::after, .stroh-brandline-wrapper .stroh-brandline-list:has(.stroh-brandline-icon-right:hover) .stroh-brandline-line-right::after, .stroh-brandline-wrapper .stroh-brandline-list:has(.stroh-brandline-icon-right a:focus-visible) .stroh-brandline-line-right::after, .stroh-brandline-wrapper .stroh-brandline-list:has(.stroh-brandline-image:hover) .stroh-brandline-line-left::after, .stroh-brandline-wrapper .stroh-brandline-list:has(.stroh-brandline-image:hover) .stroh-brandline-line-right::after {
    transform: scaleX(1);
    opacity: 1;
  }
}
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-line-left:hover::after,
.stroh-brandline-wrapper .stroh-brandline-list .stroh-brandline-line-right:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.stroh-brandline-wrapper .stroh-brandline-list {
  /* Logo */
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image {
  position: relative;
  top: var(--bl-logo-offset-y);
  width: var(--bl-logo-w);
  height: auto;
  display: block;
  display: flex;
  color: var(--bl-logo-color);
  transition: color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image:hover, .stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image:focus-within {
  color: var(--bl-hover);
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image img,
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image svg {
  display: block;
  width: 100%;
  height: auto;
  color: currentColor;
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image a.js-stroh-scroll-to-top {
  cursor: pointer;
  display: inline-block;
  color: inherit;
}
.stroh-brandline-wrapper .stroh-brandline-list li.stroh-brandline-image a.js-stroh-scroll-to-top:focus-visible {
  outline: 2px solid var(--bl-hover);
  outline-offset: 2px;
}
.stroh-brandline-wrapper > a:hover,
.stroh-brandline-wrapper > a:focus-visible {
  color: var(--bl-hover);
}
@supports selector(:has(*)) {
  .stroh-brandline-wrapper:has(.stroh-brandline-icon:hover) .stroh-brandline-intro,
  .stroh-brandline-wrapper:has(.stroh-brandline-icon:hover) .stroh-brandline-outro, .stroh-brandline-wrapper:has(.stroh-brandline-icon a:focus-visible) .stroh-brandline-intro,
  .stroh-brandline-wrapper:has(.stroh-brandline-icon a:focus-visible) .stroh-brandline-outro {
    color: var(--bl-hover);
  }
  .stroh-brandline-wrapper:has(.stroh-brandline-icon:hover) > a, .stroh-brandline-wrapper:has(.stroh-brandline-icon a:focus-visible) > a {
    color: var(--bl-hover);
  }
}
.stroh-brandline-wrapper .stroh-brandline-list:hover ~ a .stroh-brandline-outro,
.stroh-brandline-wrapper .stroh-brandline-list:focus-within ~ a .stroh-brandline-outro {
  color: var(--bl-hover);
}

#menu #language-menu ul {
  font-weight: 400;
  text-transform: none !important;
}
#menu #section-menu {
  margin-top: 1rem;
  border-top: 1px solid #aca9a9;
  /* ---------------------------------------
          Adresse
  --------------------------------------- */
}
#menu #section-menu .section-menu__address {
  text-align: center;
  font-size: 0.8rem;
  background: #353535;
}
#menu #section-menu {
  /* ---------------------------------------
          Logo
  --------------------------------------- */
}
#menu #section-menu .section-menu__logo {
  position: relative;
  margin: 2rem auto 1rem auto;
  display: block;
  width: 200px;
  height: auto;
  transition: color 0.3s ease;
}
#menu #section-menu .section-menu__logo a {
  color: #aca9a9;
}
#menu #section-menu .section-menu__logo a:hover {
  color: rgb(156.8457943925, 139.6728971963, 88.1542056075);
}
#menu #section-menu .section-menu__logo svg {
  width: 100%;
  height: auto;
  display: block;
  color: inherit;
}
#menu #section-menu .section-menu__logo svg [fill]:not([fill=none]) {
  fill: currentColor !important;
}
#menu #section-menu .section-menu__logo svg [stroke]:not([stroke=none]) {
  stroke: currentColor !important;
}
#menu #section-menu {
  /* ---------------------------------------
          Menü-Links
  --------------------------------------- */
}
#menu #section-menu ul {
  font-weight: 400;
}
#menu #section-menu ul a {
  color: #4a545b;
}
#menu #section-menu ul a:hover {
  color: rgb(156.8457943925, 139.6728971963, 88.1542056075);
}
#menu #section-menu {
  /* ---------------------------------------
      Zusatz-Link unter Menü-Links
  --------------------------------------- */
}
#menu #section-menu .section-menu__extra-link {
  display: block;
  width: 100%;
  text-align: center;
}
#menu #section-menu .section-menu__extra-link .label {
  position: relative;
  display: inline-block;
  line-height: 1;
  /* stabile Höhe */
  white-space: nowrap;
  /* kein Umbruch */
}
#menu #section-menu .section-menu__extra-link .label .icon {
  --icon-size: 40px;
  --icon-nudge-y: 2px;
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(calc(-50% + var(--icon-nudge-y)));
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: 0;
}
#menu #section-menu .section-menu__extra-link .label .icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
#menu {
  /* ---------------------------------------
      Social Links
  --------------------------------------- */
}
#menu #social-links {
  background: #353535;
}
#menu #social-links ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
#menu #social-links ul li a {
  color: rgb(156.8457943925, 139.6728971963, 88.1542056075);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
#menu #social-links ul li a:hover {
  color: rgb(156.8457943925, 139.6728971963, 88.1542056075);
}
#menu #social-links ul li a svg {
  width: 24px;
  height: 24px;
  display: block;
  color: inherit;
}
#menu #social-links ul li a svg [fill]:not([fill=none]) {
  fill: currentColor !important;
}
#menu #social-links ul li a svg [stroke]:not([stroke=none]) {
  stroke: currentColor !important;
}

/* utilities */
.bg-light {
  background-color: #fff;
  color: #000;
}

.bg-dark {
  background-color: #353535;
  color: #fff;
}

.bg-brand {
  background-color: #B2A376;
  color: #000;
}

.bg-brand-2 {
  background-color: rgb(156.8457943925, 139.6728971963, 88.1542056075);
  color: #000;
}

.bg-brand-3 {
  background-color: rgb(124.6001682243, 113.3500841121, 79.5998317757);
  color: #fff;
}

.bg-gray-100 {
  background-color: rgb(242.25, 242.25, 242.25);
  color: #000;
}

.bg-gray-900 {
  background-color: rgb(50.35, 50.35, 50.35);
  color: #fff;
}

.checker-green {
  --s: 64px;
  background-image: conic-gradient(rgb(99.7680560748, 152.6638878505, 82.1361121495) 25%, rgb(79.0168224299, 117.6663551402, 66.1336448598) 0 50%, rgb(66.627682243, 96.544635514, 56.655364486) 0 75%, rgb(91.0999626168, 139.4000747664, 74.9999252336) 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
  background-color: rgb(111.8861401869, 174.3277196262, 91.0722803738);
  color: #000;
}

.checker-blue {
  --s: 64px;
  background-image: conic-gradient(rgb(74.0760186916, 93.1880093458, 150.5239813084) 25%, rgb(58.9915514019, 72.8957757009, 114.6084485981) 0 50%, rgb(50.023271028, 60.761635514, 92.976728972) 0 75%, rgb(67.3478317757, 84.7239158879, 136.8521682243) 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
  background-color: rgb(79.1403738318, 103.3701869159, 176.0596261682);
  color: #000;
}

.checker-red, .frame-checker-red {
  --s: 64px;
  background-image: conic-gradient(#97191d 25%, #431b1c 0 50%, #391b1d 0 75%, #671019 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

.checker-dark, .frame-checker-dark {
  --s: 64px;
  background-image: conic-gradient(#1c1c1e 25%, #0f0f10 0 50%, #131315 0 75%, #2a2a2c 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

.checker-light, .frame-checker-light {
  --s: 64px;
  background-image: conic-gradient(#f6f7f8 25%, #e6e8eb 0 50%, #d9dde1 0 75%, #edeff1 0);
  background-size: calc(var(--s) * 2) calc(var(--s) * 2);
  background-position: center top;
  background-repeat: repeat;
}

#logo {
  mix-blend-mode: exclusion;
}

.scrolled #logo {
  max-width: 1.1rem;
}

.scrolled #logo:hover {
  max-width: 270px;
}

#logo svg path {
  fill: #fff !important;
}

.home h1 {
  font-size: 7vw;
}

.home .btn,
.home .btn:visited {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  font-weight: 400;
  border-radius: 0px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home .btn:hover,
.home .btn:visited:hover {
  background-color: #fff;
  color: color-mix(in srgb, #353535 62%, #fff);
}

@media screen and (min-width: 2000px) {
  .c-section.home h1 {
    font-size: 6em;
  }
}
@media screen and (max-width: 960px) {
  .home {
    padding: 1.8rem !important;
  }
  .home .content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .home h1 {
    font-size: 11vw;
  }
}
/* layout-specific */
footer section {
  padding-top: 3em !important;
  padding-bottom: 0em !important;
}

/* abstracts: Variablen & Mixins */
#c-microfooter.c-section {
  padding-top: 0;
  padding-bottom: 0;
  color: var(--accentColor);
  background-color: transparent;
}

nav#footer-menu ul {
  font-size: 0.8rem;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav#footer-menu ul li {
  display: block;
  height: 100%;
  text-align: center;
  align-content: center;
}
nav#footer-menu ul li:not(:first-child)::before {
  content: "• ";
  margin-left: 0.3em;
}

/*# sourceMappingURL=main.css.map */
