﻿/* ---------- RESET & GLOBALS ---------- */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  :root {
    --ink: #5C1C1C;
    --ink-light: #6E2A2A;
    --gold: #C9A87C;
    --gold-light: #E0C29C;
    --cream: #FFF8F0;
    --sand: #FEF5EA;
    --white: #fff;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
  }
  img {
    display: block;
    max-width: 100%;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  .wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- TOPBAR ---------- */
  .topbar {
    background: var(--ink-light);
    color: rgba(255, 245, 235, 0.85);
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 5px 0;
  }
  .topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a {
    color: var(--gold-light);
    transition: color 0.2s;
  }
  .topbar a:hover {
    color: var(--white);
  }

  /* ---------- NAVIGATION ---------- */
  nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(110, 42, 42, 0.2);
    position: sticky;
    top: 0;
    z-index: 200;
  }
  .nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    gap: 16px;
  }
  .nav-logo img {
    height: 30px;
    width: auto;
    max-width: 140px;
    display: block;
  }
  .nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
  }
  .nav-links a {
    color: var(--ink);
    transition: color 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
  }
  .nav-cta {
    background: var(--ink-light);
    color: var(--white);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
  }
  .nav-cta:hover {
    background: var(--ink);
  }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
  }
  .btn-gold {
    background: var(--gold);
    color: var(--ink);
  }
  .btn-gold:hover {
    background: var(--gold-light);
  }
  .btn-wine {
    background: var(--ink-light);
    color: var(--white);
  }
  .btn-wine:hover {
    background: var(--ink);
  }
  .btn-out {
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.88);
  }
  .btn-out:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
  }
  .btn-outline-dark {
    border: 1px solid var(--gold);
    color: var(--ink-light);
  }
  .btn-outline-dark:hover {
    background: var(--gold);
    color: var(--white);
  }

  /* ---------- SECTION STYLES ---------- */
  section {
    padding: 22px 0;
  }
  .s-label {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 9px;
    font-weight: 400;
  }
  .s-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 500;
    color: var(--ink-light);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .s-title em {
    font-style: italic;
    color: var(--ink-light);
  }
  .s-lead {
    font-size:17px;
    line-height: 1.82;
    color: #5A4232;
  }

  /* ---------- HERO SLIDER ---------- */
  .hero {
    position: relative;
    height: 75vh;
    min-height: 460px;
    overflow: hidden;
    background: var(--ink);
    padding: 0;
  }
  .sl {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
  }
  #sl0 {
    opacity: 1;
    z-index: 2;
  }
  .sl-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
  }
  .sl-bg.active {
    transform: scale(1);
  }
  .sl-vig {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(rgba(30, 30, 30, 0.65), rgba(30, 30, 30, 0.45)),
      linear-gradient(100deg, rgba(30, 30, 30, 0.65) 0%, rgba(30, 30, 30, 0.2) 55%, transparent 78%),
      linear-gradient(to top, rgba(30, 30, 30, 0.55) 0%, transparent 48%);
  }
  .sl-vig.from-r {
    background: linear-gradient(rgba(30, 30, 30, 0.65), rgba(30, 30, 30, 0.45)),
      linear-gradient(260deg, rgba(30, 30, 30, 0.65) 0%, rgba(30, 30, 30, 0.2) 55%, transparent 78%),
      linear-gradient(to top, rgba(30, 30, 30, 0.55) 0%, transparent 48%);
  }
  .sl-vig.from-t {
    background: linear-gradient(rgba(30, 30, 30, 0.65), rgba(30, 30, 30, 0.45)),
      linear-gradient(to bottom, rgba(30, 30, 30, 0.65) 0%, rgba(30, 30, 30, 0.2) 50%, transparent 72%),
      linear-gradient(to top, rgba(30, 30, 30, 0.5) 0%, transparent 42%);
  }
  .sl-box {
    position: absolute;
    z-index: 3;
    max-width: 500px;
    padding: 28px 32px;
    background: rgba(20, 20, 20, 0.45);
    border-left: 3px solid rgba(201, 168, 124, 0.7);
  }
  .p-lm {
    left: 7%;
    top: 50%;
    margin-top: -160px;
  }
  .p-rb {
    right: 6%;
    bottom: 10%;
  }
  .p-lb {
    left: 7%;
    bottom: 10%;
  }
  .p-rm {
    right: 6%;
    top: 50%;
    margin-top: -145px;
  }
  .p-tc {
    left: calc(50% - 250px);
    top: 8%;
  }
  .sl-eye {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
  }
  .sl-box h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 3.4vw, 46px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 12px;
  }
  .sl-box h2 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .sl-box p {
    font-size:17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.74;
    margin-bottom: 20px;
  }
  .sl-acts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .sl-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
  }
  .sl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    border: none;
    transition: background 0.3s;
  }
  .sl-dot.sl-on {
    background: var(--gold);
    transform: scale(1.45);
  }
  .sl-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    width: 0;
    z-index: 10;
  }
  .sl-arr {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    z-index: 10;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.85);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 19px;
  }
  .sl-arr:hover {
    background: rgba(201, 168, 124, 0.65);
  }
  .sl-arr.prev {
    left: 18px;
  }
  .sl-arr.next {
    right: 18px;
  }
  .hero-badge {
    position: absolute;
    bottom: 38px;
    right: 0;
    background: var(--gold);
    color: var(--ink);
    padding: 14px 20px;
    text-align: center;
    font-family: var(--serif);
    line-height: 1.25;
    z-index: 10;
  }
  .hero-badge strong {
    font-size: 28px;
    display: block;
  }
  .hero-badge span {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.88;
  }

  /* ---------- TRUST BANNER ---------- */
  .trust {
    background: var(--ink-light);
    padding: 14px 0;
  }
  .trust-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .t-stat {
    text-align: center;
    color: var(--white);
  }
  .t-stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
  }
  .t-stat span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
  }
  .t-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
  }

  /* ---------- INTRO (Was uns unterscheidet) ---------- */
  .intro {
    background: var(--cream);
  }
  .intro-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .intro-main h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 500;
    color: var(--ink-light);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .intro-main p {
    font-size:17px;
    line-height: 1.7;
    color: #5A4232;
    margin-bottom: 12px;
    max-width: 560px;
  }
  blockquote {
    font-family: var(--serif);
    font-size: clamp(15px, 1.8vw, 20px);
    font-style: italic;
    color: var(--ink-light);
    line-height: 1.45;
    border-left: 4px solid var(--gold);
    padding: 8px 0 8px 18px;
    margin: 16px 0;
  }
  .side-box {
    background: var(--sand);
    padding: 10px 14px;
    border-top: 3px solid var(--gold);
    margin-bottom: 6px;
  }
  .side-box h4 {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-light);
    margin-bottom: 3px;
  }
  .side-box p {
    font-size: 11.5px;
    line-height: 1.45;
    color: #5A4232;
  }
  .side-box .num {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink-light);
    line-height: 1;
    display: block;
    margin-bottom: 2px;
  }

  /* ---------- KATEGORIEN ---------- */
  .kategorien {
    background: var(--sand);
    padding: 24px 0;
  }
  .kat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
  }
  .kat {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  .kat img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .kat:hover img {
    transform: scale(1.02);
  }
  .kat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(92, 28, 28, 0.92) 0%, rgba(92, 28, 28, 0.3) 70%, transparent 100%);
    padding: 18px 14px 14px;
  }
  .kat-tag {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
  }
  .kat-overlay h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
  }
  .kat-overlay p {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
  }
  .kat-link {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
  }
  .kat-link::after {
    content: ' →';
  }

  /* ---------- QUALITÄT (Warum ein Orientteppich?) neu: 3‑Spalten mit Bild mittig ---------- */
  .qualitaet {
    background: var(--white);
  }
  .q-header {
    text-align: left;
    margin-bottom: 32px;
  }
  .q-header .s-lead {
    max-width: 700px;
  }
  .q-three-col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
  }
  .q-left-cards,
  .q-right-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .q-item {
    background: var(--sand);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .q-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--cream);
  }
  .q-n {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--ink-light);
    opacity: 0.45;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
    text-align: right;
  }
  .q-b h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-light);
    margin-bottom: 4px;
  }
  .q-b p {
    font-size: 12px;
    color: #5A4232;
    line-height: 1.5;
  }
  .q-center-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .q-center-img img {
    width: 100%;
    height: auto;
    max-width: 320px;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  /* Responsive: unter 1000px umbrechen */
  @media (max-width: 1000px) {
    .q-three-col {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .q-center-img {
      order: -1; /* Bild nach oben */
      margin-bottom: 16px;
    }
    .q-center-img img {
      max-width: 100%;
      width: 60%;
      margin: 0 auto;
    }
    .q-left-cards,
    .q-right-cards {
      gap: 24px;
    }
    .q-left-cards .q-item,
    .q-right-cards .q-item {
      width: 100%;
    }
  }

  /* ---------- PROBELEGEN ---------- */
  .probelegen {
    background: var(--ink-light);
    padding: 0;
  }
  .prob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .prob-img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .prob-img img {
    width: 60%;
    max-height: 100%;
    object-fit: cover;
  }
  .prob-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 56px;
  }
  .prob-txt .s-label {
    color: var(--gold-light);
  }
  .prob-txt h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .prob-txt h2 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .prob-txt p {
    font-size:17px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 14px;
  }
  .prob-list {
    margin-top: 20px;
    list-style: none;
  }
  .prob-list li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
  }
  .prob-list li:last-child {
    border: none;
  }
  .prob-list li::before {
    content: '→';
    color: var(--gold);
    flex-shrink: 0;
  }
  .prob-cta {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ---------- WARUM NICHT ONLINE KAUFEN ---------- */
  .warum {
    background: var(--cream);
  }
  .warum-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .vergleich {
    border: 1px solid rgba(201, 168, 124, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .v-head {
    padding: 16px 22px;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
  }
  .v-col.ol .v-head {
    background: #F9EFE6;
    color: #A56A4A;
    border-bottom: 2px solid #EBDAC8;
  }
  .v-col.kp .v-head {
    background: var(--ink-light);
    color: var(--gold-light);
    border-bottom: 2px solid var(--gold);
  }
  .v-list {
    list-style: none;
  }
  .v-list li {
    padding: 11px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
    display: flex;
    gap: 10px;
  }
  .v-col.ol .v-list li {
    background: var(--white);
    color: #A56A4A;
  }
  .v-col.ol .v-list li::before {
    content: '—';
    color: #D9B48B;
  }
  .v-col.kp .v-list li {
    background: var(--cream);
    color: var(--ink-light);
  }
  .v-col.kp .v-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 500;
  }
  .v-col.kp .v-list li strong {
    font-weight: 500;
  }

  /* ---------- HERKUNFT ---------- */
  .herkunft {
    background: var(--ink);
    padding: 32px 0;
  }
  .herk-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 40px;
  }
  .herk-dv {
    background: rgba(201, 168, 124, 0.25);
    height: 80px;
  }
  .herk-item {
    text-align: center;
    color: var(--white);
  }
  .herk-ico {
    margin-bottom: 14px;
    color: var(--gold);
    opacity: 0.7;
    display: flex;
    justify-content: center;
  }
  .herk-item h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 8px;
  }
  .herk-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* ---------- REVIEWS ---------- */
  .revs {
    background: var(--sand);
    padding: 32px 0;
  }
  .rev-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .rev-slider::-webkit-scrollbar {
    height: 3px;
  }
  .rev-slider::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
  }
  .rev-card {
    flex: 0 0 200px;
    background: var(--white);
    border: 1px solid rgba(201, 168, 124, 0.2);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .rev-stars {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1px;
  }
  .rev-text {
    font-size: 11.5px;
    color: #5A4232;
    font-style: italic;
  }
  .rev-name {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--ink-light);
  }
  .rev-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .rev-score {
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--ink-light);
  }
  .rev-score span {
    font-size: 12px;
    color: #B87A52;
  }
  .rev-glink {
    font-size: 10.5px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ---------- ANFRAGE / KONTAKT ---------- */
  .anfrage {
    background: var(--ink-light);
    padding: 24px 0;
  }
  .anf-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .anf-left .s-label {
    color: var(--gold-light);
  }
  .anf-left h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .anf-left p {
    font-size:17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  .anf-kontakt {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 18px;
  }
  .anf-it {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    align-items: center;
  }
  .anf-ico {
    color: var(--gold);
    flex-shrink: 0;
  }
  .anf-it a,
  .anf-it span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
  }
  .anf-it a:hover {
    color: var(--gold-light);
  }
  .f-row {
    margin-bottom: 10px;
  }
  .f-row input,
  .f-row textarea,
  .f-row select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 14px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    outline: none;
  }
  .f-row input::placeholder,
  .f-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .f-row input:focus,
  .f-row textarea:focus,
  .f-row select:focus {
    border-color: var(--gold);
  }
  .f-row select option {
    background: var(--ink-light);
  }
  .f-row textarea {
    resize: vertical;
    min-height: 80px;
  }
  .f-sub {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 12px 0;
    width: 100%;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
  }
  .f-sub:hover {
    background: var(--gold-light);
  }
  .f-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
  }
  .wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 4px;
  }
  .wa-btn:hover {
    background: #1aab54;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    padding: 24px 0 16px;
  }
  .ft {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 14px;
  }
  .fb img {
    height: 34px;
    margin-bottom: 10px;
    background: var(--cream);
    padding: 4px;
    border-radius: 4px;
  }
  .fb p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }
  .fc h4 {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .fc ul {
    list-style: none;
  }
  .fc li {
    margin-bottom: 5px;
  }
  .fc li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
  }
  .fc li a:hover {
    color: var(--gold-light);
  }
  .fbot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .fbot p,
  .fbot a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
  }
  .fbot a:hover {
    color: var(--gold);
  }
  .ft-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }
  .ft-icons a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
  }
  .ft-icons a:hover {
    color: var(--gold-light);
  }

  /* ---------- MEDIA QUERIES (zusätzlich für neue Qualität) ---------- */
  @media (max-width: 1000px) {
    .intro-inner,
    .warum-inner,
    .anf-inner,
    .prob-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .kat-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .herk-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .herk-dv {
      display: none;
    }
    .prob-txt {
      padding: 24px;
    }
    .ft {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 650px) {
    .kat-grid,
    .ft {
      grid-template-columns: 1fr;
    }
    .anf-inner {
      gap: 40px;
    }
  }

  /* Overrides for dark sections (text colors) */
  .herkunft .s-label,
  .herkunft .s-title,
  .anfrage .s-label,
  .anfrage .s-title,
  .probelegen .s-label,
  .probelegen .s-title,
  .trust .s-label,
  .trust .s-title,
  .topbar .s-label,
  .topbar .s-title {
    color: var(--gold-light) !important;
  }
  .herkunft .s-title em,
  .anfrage .s-title em,
  .probelegen .s-title em,
  .trust .s-title em,
  .topbar .s-title em {
    color: var(--gold-light) !important;
  }


