@font-face {
  font-family: "Jost";
  src: url("/fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maven Pro";
  src: url("/fonts/maven-pro/MavenPro-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vollkorn";
  src: url("/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* =========================
   GLOBAL BASE (optional)
========================= */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

blockquote:not(.review-quote) {
    position: relative;
    margin: 3rem auto 0 auto;
    padding: 2.5rem 2rem;
    max-width: 700px;

    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.5;
    text-align: center;

    color: var(--text-dark);

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

blockquote.no-bg {
	color: #fff;
    background: unset!important;
    backdrop-filter: unset!important;
    -webkit-backdrop-filter: unset!important;
    border-radius: unset!important;
    border: unset!important;
    box-shadow: unset!important;
	
}

/* =========================
   COOKIE BANNER
========================= */



  :root {
    --consent-bg: rgba(250, 247, 242, 0.94);
    --consent-border: rgba(31, 47, 44, 0.10);
    --consent-shadow: 0 24px 60px rgba(16, 26, 24, 0.18);
    --consent-text: #1f2f2c;
    --consent-text-soft: rgba(31, 47, 44, 0.72);
    --consent-accent: #1f3a34;
    --consent-accent-hover: #18302b;
    --consent-secondary-bg: rgba(31, 58, 52, 0.08);
    --consent-secondary-hover: rgba(31, 58, 52, 0.12);
    --consent-ghost-bg: transparent;
    --consent-ghost-hover: rgba(31, 58, 52, 0.06);
    --consent-line: rgba(31, 47, 44, 0.08);
    --consent-radius: 24px;
  }

  .consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 13, 0.24);
    backdrop-filter: blur(3px);
    z-index: 9990;
  }
  
  .consent-overlay[hidden],
	.consent-banner[hidden] {
	  display: none !important;
	}

  .consent-banner {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(92vw, 560px);
    z-index: 9991;
    color: var(--consent-text);
    font-family: "Jost", "Maven Pro", Arial, sans-serif;
  }

  .consent-banner__inner {
    background: var(--consent-bg);
    border: 1px solid var(--consent-border);
    border-radius: var(--consent-radius);
    box-shadow: var(--consent-shadow);
    backdrop-filter: blur(18px);
    padding: 24px 24px 18px;
  }

  .consent-banner__topline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
	justify-content:center;
  }

  .consent-banner__icon {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex: 0 0 auto;
	position: absolute;
    top: -50px;
    background-color: white;
    border-radius: 100%;
  }

  .consent-banner__eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--consent-text-soft);
    font-weight: 500;
	display:none!important;
  }

  .consent-banner__title {
    margin: 35px 0 10px;
    font-family: "Jost", "Maven Pro", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  .consent-banner__text {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--consent-text-soft);
    max-width: 48ch;
  }

  .consent-banner__options {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .consent-option {
    display: block;
    border-radius: 5px;
    padding: 3px 7px;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
  }

  .consent-option:hover {
    background: rgba(255,255,255,0.56);
    border-color: rgba(31, 47, 44, 0.14);
  }

  .consent-option--locked {
    cursor: default;
  }

  .consent-option--locked:hover {
    background: rgba(255,255,255,0.38);
    border-color: var(--consent-line);
  }

  .consent-option__left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .consent-option input[type="checkbox"] {
    accent-color: var(--consent-accent);
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin: 0;
  }

  .consent-option__label-wrap {
    display: flex;
    align-items: center;
  }

  .consent-option__title {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--consent-text);
  }

  .consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
	justify-content:space-between;
  }

  .consent-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-family: "Jost", "Maven Pro", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  }

  .consent-btn:hover {
    transform: translateY(-1px);
  }

  .consent-btn--primary {
    background: var(--consent-accent);
    color: #fff;
  }

  .consent-btn--primary:hover {
    background: var(--consent-accent-hover);
  }

  .consent-btn--secondary {
    background: var(--consent-secondary-bg);
    color: var(--consent-text);
  }

  .consent-btn--secondary:hover {
    background: var(--consent-secondary-hover);
  }

  .consent-btn--ghost {
    background: var(--consent-ghost-bg);
    color: var(--consent-text-soft);
  }

  .consent-btn--ghost:hover {
    background: var(--consent-ghost-hover);
    color: var(--consent-text);
  }

  .consent-banner__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
  }

  .consent-banner__footer a {
    color: var(--consent-text-soft);
    text-decoration: none;
  }

  .consent-banner__footer a:hover {
    color: var(--consent-text);
  }

  @media (max-width: 640px) {
    .consent-banner {
      left: 16px;
      right: 16px;
      width: auto;
      bottom: 16px;
      transform: none;
    }

    .consent-banner__inner {
      padding: 20px 18px 16px;
      border-radius: 20px;
    }

    .consent-banner__title {
      max-width: none;
      font-size: clamp(26px, 8vw, 34px);
    }

    .consent-banner__actions {
      display: grid;
      grid-template-columns: 1fr;
    }

    .consent-btn {
      width: 100%;
    }
  }

.video-consent-placeholder {
  width: 100%;
  height: 100%;
  min-height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
}

.video-consent-placeholder__inner {
  max-width: 440px;
}

.video-consent-placeholder__inner p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.video-consent-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "Jost", "Maven Pro", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background: #ffffff;
  color: #1f2f2c;
}

.youtube-frame, .youtube-frame-wrap, .youtube-embed-wrap {
	padding-bottom:unset!important;
	aspect-ratio:16 / 9;
}


/* =========================
   COOKIE BANNER END
========================= */

/* Großes Anführungszeichen */
blockquote:not(.review-quote)::before {
    content: "“";
    position: absolute;
    top: -25px;
    left: 20px;

    font-family: var(--font-serif);
    font-size: 10rem;
    line-height: 1;

    color: var(--accent);
    opacity: 0.6;
}

/* optional: dezenter Abschluss unten */
blockquote:not(.review-quote)::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);

    width: 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0.5;
}

/* Dark Mode Anpassung */
.dark-bg blockquote:not(.review-quote) {
    background: rgba(26, 26, 26, 0.4);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-bg blockquote:not(.review-quote)::before {
    color: var(--accent);
    opacity: 0.4;
}

.dark-bg blockquote:not(.review-quote)::after {
    background: var(--accent);
}

.site-header.bright:not(.scrolled) a {
	color:white!important;
	text-shadow: 0 0px 5px BLACK;
}

.site-header.bright:not(.scrolled) a img {
	filter: brightness(0) invert(1);
}
.site-header.dark.scrolled a img {
	filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(92%) contrast(92%);
    opacity: 0.8;
}

.site-header.always-dark a img {
	filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(92%) contrast(92%);
    opacity: 0.8;
}
/* =========================
   Reviews Block
========================= */

#googleReviewsBlock {
  margin-top: 48px;
}


/* =========================
   Summary (oben)
========================= */

.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: #f7f7f8;
  border: 1px solid #e7e7ea;
  border-radius: 20px;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-score strong {
  font-size: 1.2rem;
  line-height: 1;
}

.reviews-score span {
  color: #6f6f76;
  font-size: 0.95rem;
}

.reviews-link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.reviews-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}


/* =========================
   Grid Layout
========================= */

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}


/* =========================
   Card
========================= */

.review-card {
  display: flex;
  flex-direction: column;
  align-items:center;
  padding: 28px 24px 24px;
  background: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}


/* =========================
   Avatar (groß)
========================= */

.review-avatar--large {
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
}

.review-avatar--large img,
.review-avatar-fallback {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.review-avatar-fallback {
  background: #ececf1;
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 72px;
  font-size: 1.2rem;
}


/* =========================
   Quote Style
========================= */

.review-quote {
  position: relative;
  margin: 0 0 24px;
  padding-left: 22px;
}

.review-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 2.8rem;
  color: #d6d6dc;
  font-family: Georgia, serif;
}

.review-text {
  margin: 0;
  color: #222;
  line-height: 1.75;
  font-size: 1rem;
}


/* =========================
   Footer (Name + Sterne)
========================= */

.review-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #efeff3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-author {
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.review-author:hover {
  text-decoration: underline;
}

.review-meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-rating {
  letter-spacing: 1px;
  font-size: 1.95rem;
  color: orange;
}

.review-time {
  color: #7a7a82;
  font-size: 0.9rem;
  display:none;
}


/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 1100px) {
  .reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 700px) {
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .review-avatar--large {
    width: 64px;
    height: 64px;
  }

  .review-avatar--large img,
  .review-avatar-fallback {
    width: 64px;
    height: 64px;
  }

  .review-avatar-fallback {
    line-height: 64px;
  }

  .review-quote {
    padding-left: 18px;
  }

  .review-quote::before {
    font-size: 2.2rem;
    top: -8px;
  }

  .review-text {
    font-size: 0.97rem;
  }
}