/* ═══════════════════════════════════════════════════════════
   STOFFLIEBE ERFURT — Design Tokens
   Warme, handwerkliche Nähkurs-Identität: gedecktes Beerenrot
   (Plum) und sanftes Terrakotta auf cremefarbenem Leinen-Grund.
   ═══════════════════════════════════════════════════════════ */

   :root {
    --cream:        #FFFFFF;
    --cream-deep:   #FFF3D6;
    --ink:          #332B14;
    --ink-soft:     #6B5F3D;
    --sunflower:    #FBBA00;
    --on-sunflower: #CF0153;
    --on-sunflower-pale: #CF0153;
    --footer-accent: #544D42;
    --sunflower-deep: #E0AC1F;
    --sunflower-pale: #FFE9A8;
    --plum:         #3A2E12;
    --plum-deep:    #241C0B;
    --terracotta:   #D98A3D;
    --terracotta-deep: #B5701F;
    --white:        #FFFFFF;
  
    --border:      #EDDDA8;
    --border-soft: rgba(58, 46, 18, 0.12);
  
    --radius:    10px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(58, 46, 18, 0.12);
    --shadow-deep: 0 20px 48px rgba(58, 46, 18, 0.22);
  
    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Nunito', system-ui, sans-serif;
  }
  
  /* ── Reset ──────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; }
  
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* ── Fonts (self-hosted) ──────────────────────────── */
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Fraunces-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Fraunces-700.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Fraunces-500i.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Nunito-400.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Nunito-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Nunito-700.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/Nunito-800.woff2') format('woff2');
  }
  
  .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--on-sunflower-pale);
    background: var(--sunflower-pale);
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
    margin-bottom: 0.6rem;
  }
  .section-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    color: var(--on-sunflower);
    margin-bottom: 0.75rem;
  }
  .section-intro {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  section { padding: 4.5rem 1.5rem; }
  .container { max-width: 1120px; margin: 0 auto; }
  
  /* ── Header ─────────────────────────────────────── */
  #site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--sunflower);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(58,46,18,0.15);
    padding: 0 1.25rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
  }
  .header-inner {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .header-logo img { height: 34px; width: auto; }
  .header-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--on-sunflower);
  }
  .header-nav {
    display: none;
    gap: 1.8rem;
  }
  .header-nav a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--on-sunflower);
    transition: color 0.15s;
  }
  .header-nav a:hover { color: var(--plum); }
  .header-nav a.active { color: var(--on-sunflower); border-bottom: 2px solid var(--on-sunflower); padding-bottom: 4px; }
  .btn-primary {
    background: var(--plum);
    color: var(--sunflower);
    border-radius: 99px;
    padding: 0.65rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.15s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--plum-deep); transform: translateY(-1px); }
  .btn-secondary {
    border: 1.5px solid var(--plum);
    color: var(--plum);
    border-radius: 99px;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-block;
    transition: background 0.15s, color 0.15s;
  }
  .btn-secondary:hover { background: var(--plum); color: var(--sunflower); }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
  }
  .menu-toggle span { width: 22px; height: 2px; background: var(--plum); border-radius: 2px; }
  
  .header-cta { display: none; }
  
  @media (min-width: 900px) {
    .header-nav { display: flex; }
    .header-cta { display: inline-block; }
    .menu-toggle { display: none; }
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--cream);
    z-index: 190;
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .mobile-nav .btn-primary { margin-top: 1.5rem; text-align: center; color: var(--sunflower); }
  
  /* ── Hero ───────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 1.5rem 4rem;
    overflow: hidden;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    background-color: var(--plum-deep);
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 1.4s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58,46,18,0.35) 0%, rgba(58,46,18,0.55) 55%, rgba(58,46,18,0.9) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: var(--white);
  }
  .hero-content .section-label { background: var(--sunflower); color: var(--on-sunflower); }
  .hero-content h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 5.5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.25);
  }
  .hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.75rem;
    max-width: 520px;
  }
  .hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
  .hero-actions .btn-secondary { border-color: var(--white); color: var(--white); }
  .hero-actions .btn-secondary:hover { background: var(--white); color: var(--plum); }
  
  /* ── Intro-Kacheln: Nähkurse / Plotten ────────────── */
  .intro-tiles {
    padding-top: 4rem;
  }
  .tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  @media (min-width: 720px) {
    .tiles-grid { grid-template-columns: 1fr 1fr; }
  }
  .tile {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
  }
  .tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--sunflower-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.4rem;
  }
  .tile h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 0.6rem;
  }
  .tile p { color: var(--ink-soft); font-size: 0.95rem; }
  
  /* ── Über mich / Story ────────────────────────────── */
  .story {
    background: var(--cream-deep);
  }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  @media (min-width: 900px) {
    .story-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  }
  .story-text p {
    margin-bottom: 1.1rem;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
  }
  .story-text p:last-child { margin-bottom: 0; }
  .story-signature {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--plum);
  }
  .story-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
  .story-gallery img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }
  .story-gallery > *:first-child { grid-row: span 2; min-height: 300px; }
  
  /* ── Kurse ─────────────────────────────────────── */
  .courses { background: var(--cream); }
  .courses-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .courses-head .section-intro { margin-bottom: 0; }
  .courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  @media (min-width: 640px) {
    .courses-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 1000px) {
    .courses-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .course-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .course-card[hidden] { display: none; }
  .course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }
  .course-card--full {
    background: #fdf1ec;
    border-color: var(--terracotta-deep);
    opacity: 0.85;
    padding-top: 3.4rem;
  }
  .course-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: var(--terracotta-deep);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
  }
  .btn-primary--disabled {
    display: block;
    cursor: not-allowed;
    background: var(--ink-soft);
    color: var(--white);
    opacity: 0.7;
    pointer-events: none;
  }
  .course-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .course-meta {
    list-style: none;
    font-size: 0.86rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  .course-meta li {
    display: flex;
    gap: 0.5rem;
    padding: 0.28rem 0;
    border-bottom: 1px dashed var(--border-soft);
  }
  .course-meta li:last-child { border-bottom: none; }
  .course-meta .meta-icon { flex-shrink: 0; width: 1.1rem; text-align: center; }
  .course-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--terracotta-deep);
    margin-bottom: 1rem;
  }
  .course-card .btn-primary {
    text-align: center;
    width: 100%;
  }
  .courses-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    background: var(--sunflower-pale);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
  }
  
  /* ── Rezensionen ──────────────────────────────────── */
  .ratings { background: var(--cream-deep); }
  .rating-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 720px) {
    .rating-container { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 1100px) {
    .rating-container { grid-template-columns: repeat(3, 1fr); }
  }
  .rating-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
  }
  .stars { color: var(--on-sunflower-pale); font-size: 0.95rem; margin-bottom: 0.6rem; letter-spacing: 0.05em; }
  .rating-text {
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }
  .rating-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.8rem;
    color: var(--ink-soft);
  }
  .rating-meta strong { color: var(--plum); font-weight: 700; }
  .rating-reply {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px dashed var(--border-soft);
    font-size: 0.85rem;
    color: var(--ink-soft);
  }
  .rating-reply strong {
    display: block;
    color: var(--plum);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
  }
  
  /* ── Blog ─────────────────────────────────────────── */
  .blog { background: var(--cream); }
  .blog-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  @media (min-width: 720px) {
    .blog-container { grid-template-columns: repeat(3, 1fr); }
  }
  .blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    display: block;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }
  .blog-card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream-deep);
  }
  .blog-card-body { padding: 1.4rem 1.5rem; }
  .blog-date {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--on-sunflower-pale);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--plum);
    margin: 0.5rem 0 0.6rem;
    line-height: 1.35;
  }
  .blog-card-body p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
    line-height: 1.55;
  }
  .blog-readmore {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--on-sunflower-pale);
  }
  #blog-more-wrap { text-align: center; margin-top: 2.5rem; }
  
  /* Blog-Detailseite */
  .blog-back-sticky { margin-bottom: 1.5rem; }
  .blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-soft);
  }
  .blog-back:hover { color: var(--terracotta-deep); }
  .blog-post-view {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
  }
  .blog-post-view h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 0.6rem;
    line-height: 1.25;
  }
  .blog-post-content { margin-top: 1.75rem; }
  .blog-post-content p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.75; color: var(--ink); }
  .blog-post-content strong { color: var(--plum); }
  .blog-post-content img {
    border-radius: var(--radius-lg);
    margin: 0.5rem 0 1.5rem;
    box-shadow: var(--shadow-soft);
  }
  
  /* ── Plotten-Teaser (eigene Sektion, aus Original-Unterseite) ── */
  .plotten { background: var(--cream-deep); }
  .plotten-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  @media (min-width: 900px) {
    .plotten-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  }
  .plotten-text p { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
  .plotten-text p:last-child { margin-bottom: 0; }
  .plotten-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  
  /* ── Kontakt / Footer ─────────────────────────────── */
  footer {
    background: var(--sunflower);
    color: var(--plum);
    padding: 3.5rem 1.5rem 2rem;
  }
  .footer-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
  }
  @media (min-width: 720px) {
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  }
  .footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
  .footer-brand p { color: var(--plum); font-size: 0.95rem; max-width: 320px; }
  .footer-col h2 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: var(--footer-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .footer-col a, .footer-col p {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--footer-accent);
    margin-bottom: 0.55rem;
  }
  .footer-col a:hover { color: var(--plum-deep); text-decoration: underline; }
  .footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
  .footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(58,46,18,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background 0.15s;
  }
  .footer-social a:hover { background: var(--plum); }
  .footer-social a svg { fill: var(--footer-accent); transition: fill 0.15s; }
  .footer-social a:hover svg { fill: var(--sunflower); }
  .footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(58,46,18,0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--footer-accent);
  }
  .footer-bottom a { color: var(--footer-accent); }
  .footer-bottom a:hover { color: var(--plum-deep); }
  .footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
  
  /* ── Unterseiten: Page-Header mit Slideshow ───────── */
  .page-header {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 1.5rem 3rem;
    overflow: hidden;
  }
  .page-header .hero-img { position: absolute; inset: 0; }
  .page-header-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--white);
  }
  .page-header-content .section-label { background: var(--sunflower); color: var(--on-sunflower); }
  .page-header-content h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 4.6vw, 2.9rem);
    line-height: 1.18;
    text-shadow: 0 2px 18px rgba(0,0,0,0.3);
  }
  .page-header-content p {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
    max-width: 520px;
  }
  
  /* Generische Slideshow (für Kurse-Kopf, Plotten-Galerie) */
  .slideshow {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
  }
  .slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .slideshow .slide.active { opacity: 1; }
  .slideshow-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
  }
  .slideshow-dots span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
  }
  .slideshow-dots span.active { background: var(--white); }
  
  /* Plotten-Galerie: mehrere kleine Slideshows nebeneinander wirken zu unruhig,
     deshalb eine große Slideshow mit Miniaturleiste darunter */
  .plotten-gallery { margin-top: 2.5rem; }
  .plotten-gallery .slideshow {
    width: 100%;
    height: clamp(220px, 42vw, 480px);
    margin-bottom: 0.75rem;
  }
  .plotten-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    max-width: 100%;
    min-width: 0;
  }
  .plotten-thumbs img {
    width: 72px; height: 54px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.15s;
    flex-shrink: 0;
  }
  .plotten-thumbs img.active { opacity: 1; outline: 2px solid var(--sunflower-deep); outline-offset: 2px; }
  
  /* ── FAQ-Akkordeon ─────────────────────────────────── */
  .faq-list { max-width: 760px; }
  .faq-item {
    border-bottom: 1px solid var(--border-soft);
  }
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0.25rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--plum);
  }
  .faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sunflower-pale);
    color: var(--on-sunflower-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform 0.2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .faq-answer p {
    padding: 0 0.25rem 1.15rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  /* Aktiver Nav-Link im Mobile-Menü (Cream-Hintergrund, andere Kontrastfarbe nötig als im gelben Header) */
  .mobile-nav a.active { color: var(--terracotta-deep); }
  
  /* Für Screenreader/Struktur nötige, aber optisch nicht gewünschte Überschriften
     (z.B. wenn eine Section bereits einen sichtbaren Titel hat, aber die
     Heading-Hierarchie eine zusätzliche Zwischenebene braucht) */
  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }