:root {
    --navy: #0f2536;
    --navy-2: #1a3a52;
    --blue: #3d7ea6;
    --blue-deep: #2c5f80;
    --paper: #fbf8f1;
    --sand: #f0eadb;
    --ink: #182430;
    --muted: #6a7480;
    --line: #e2dac9;
    --line-dark: rgba(255,255,255,0.16);
    --max: 1240px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Jost', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.005em;
  }

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

  /* Silbentrennung (per Body-Klass umschaltbar, siehe Globale Einstellungen) */
  body.hyphenate h1, body.hyphenate h2, body.hyphenate h3,
  body.hyphenate p, body.hyphenate li, body.hyphenate blockquote {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
  }

  .container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

  .eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 12.5px; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--blue);
  }

  /* hairline ornament */
  .rule {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; color: var(--blue); margin: 0 auto;
  }
  .rule::before, .rule::after {
    content: ""; height: 1px; width: 60px; background: currentColor; opacity: .5;
  }
  .rule span { font-size: 9px; transform: rotate(45deg); }

  /* ============ HEADER ============ */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 90;
    overflow: hidden;
    transition: background .4s ease, border-color .4s ease, color .4s ease;
    border-bottom: 1px solid transparent;
  }
  .header-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
  }
  .brand { cursor: pointer; line-height: 1; display: flex; align-items: center; gap: 14px; }
  .brand img.logo { height: 126px; width: auto; margin: -18px 0; }
  .brand-text { display: none; }
  .brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px; font-weight: 600;
    letter-spacing: 0.01em;
  }
  .brand .sub {
    font-size: 10.5px; letter-spacing: 0.22em;
    text-transform: uppercase; opacity: .65;
    margin-top: 5px; font-weight: 400;
  }
  nav.main { display: flex; gap: 30px; align-items: center; }
  nav.main a {
    font-size: 14px; font-weight: 400;
    letter-spacing: 0.04em;
    position: relative; padding: 3px 0;
    transition: opacity .2s;
  }
  nav.main a::after {
    content: ""; position: absolute; left: 0; right: 100%;
    bottom: -2px; height: 1px; background: currentColor;
    transition: right .3s ease;
  }
  nav.main a:hover::after, nav.main a.active::after { right: 0; }

  /* header states — immer mit Hintergrund */
  header {
    background: rgba(251, 248, 241, 0.96);
    backdrop-filter: blur(10px);
    border-color: var(--line);
    color: var(--ink);
  }

  .menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: inherit; align-items: center; gap: 11px;
    font-family: 'Jost', sans-serif; font-size: 13px;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 8px 2px;
    min-height: 44px;
  }
  .menu-toggle .bars { display: flex; flex-direction: column; gap: 5px; }
  .menu-toggle .bars span {
    width: 26px; height: 1.5px; background: currentColor;
    transition: transform 0.38s cubic-bezier(0.77,0,0.175,1), opacity 0.25s ease;
    transform-origin: center;
  }
  .menu-toggle.open { position: relative; z-index: 130; }
  .menu-toggle.open > span:first-child { opacity: 0; }
  .menu-toggle.open .bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.open .bars span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle.open .bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ============ MOBILE MENU ============ */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 120;
    background: var(--navy);
    color: var(--paper);
    display: flex; flex-direction: column;
    padding: 22px 40px 48px;
    visibility: hidden; opacity: 0; pointer-events: none;
    -webkit-clip-path: circle(0% at calc(100% - 40px) 37px);
    clip-path: circle(0% at calc(100% - 40px) 37px);
    /* visibility erst NACH der Animation auf hidden (Delay 0.55s),
       damit das Schließen sichtbar bleibt */
    transition: -webkit-clip-path 0.55s cubic-bezier(0.77,0,0.175,1),
                clip-path 0.55s cubic-bezier(0.77,0,0.175,1),
                opacity 0.3s ease,
                visibility 0s linear 0.55s;
    overflow-y: auto;
  }
  .mobile-menu.open {
    visibility: visible; opacity: 1; pointer-events: auto;
    -webkit-clip-path: circle(170% at calc(100% - 40px) 37px);
    clip-path: circle(170% at calc(100% - 40px) 37px);
    /* beim Öffnen sofort sichtbar (kein Delay) → Menü geht direkt auf */
    transition: -webkit-clip-path 0.55s cubic-bezier(0.77,0,0.175,1),
                clip-path 0.55s cubic-bezier(0.77,0,0.175,1),
                opacity 0.3s ease,
                visibility 0s;
  }
  .mobile-menu-head {
    display: flex; justify-content: space-between; align-items: center;
  }
  .mobile-menu-head .name { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; }
  .mobile-menu-logo { height: 56px; width: auto; }
  .mobile-close {
    position: absolute; top: 14px; right: 26px;
    background: none; border: none; cursor: pointer; color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
  }
  .mobile-close svg { width: 22px; height: 22px; }
  .mobile-menu nav {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    gap: 4px; padding: 24px 0;
  }
  .mobile-menu nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 8vw, 52px);
    font-weight: 500; line-height: 1.25;
    color: var(--paper);
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease, color .25s;
  }
  .mobile-menu nav a:hover { color: var(--blue); }
  .mobile-menu.open nav a { opacity: 1; transform: translateY(0); }
  .mobile-menu.open nav a:nth-child(1) { transition-delay: .12s; }
  .mobile-menu.open nav a:nth-child(2) { transition-delay: .17s; }
  .mobile-menu.open nav a:nth-child(3) { transition-delay: .22s; }
  .mobile-menu.open nav a:nth-child(4) { transition-delay: .27s; }
  .mobile-menu.open nav a:nth-child(5) { transition-delay: .32s; }
  .mobile-menu.open nav a:nth-child(6) { transition-delay: .37s; }
  .mobile-menu.open nav a:nth-child(7) { transition-delay: .42s; }
  .mobile-member-btn {
    display: inline-flex; align-items: center; gap: 10px;
    align-self: flex-start;
    padding: 14px 28px; margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--paper); font-family: 'Jost', sans-serif;
    font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background .2s, border-color .2s;
  }
  .mobile-member-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .mobile-member-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
  .mobile-menu-foot {
    padding-top: 28px; border-top: 1px solid var(--line-dark);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    font-size: 13px; letter-spacing: 0.08em; color: rgba(251,248,241,.6);
  }
  .mobile-menu-foot a { color: var(--paper); }

  main { position: relative; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 100vh; height: 100dvh;
    min-height: 540px;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 16s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(15,37,54,0.55) 0%, rgba(15,37,54,0.12) 32%, rgba(15,37,54,0.35) 62%, rgba(15,37,54,0.88) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: var(--max);
    margin: 0 auto; padding: 0 40px 92px;
    color: var(--paper);
  }
  .hero-content .eyebrow {
    color: rgba(251,248,241,0.92);
    opacity: 0; transform: translateY(14px);
    animation: rise .9s ease .3s forwards;
  }
  .hero-content h1 {
    font-size: clamp(40px, 8vw, 104px);
    font-weight: 500; line-height: 0.98;
    margin: 22px 0 26px;
    max-width: 13ch;
    text-shadow: 0 2px 40px rgba(15,37,54,0.3);
    opacity: 0; transform: translateY(20px);
    animation: rise 1s ease .45s forwards;
  }
  .hero-content h1 em { font-style: italic; color: #bcd9ea; }
  .hero-content .tagline {
    font-size: 19px; font-weight: 300;
    max-width: 480px; color: rgba(251,248,241,0.88);
    margin-bottom: 36px;
    opacity: 0; transform: translateY(16px);
    animation: rise 1s ease .6s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; transform: translateY(16px);
    animation: rise 1s ease .75s forwards;
  }
  @keyframes rise { to { opacity: 1; transform: translateY(0); } }
  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    color: rgba(251,248,241,0.7);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: rise 1s ease 1s forwards;
  }
  .hero-scroll .dash {
    width: 1px; height: 40px;
    background: linear-gradient(rgba(251,248,241,0.7), transparent);
  }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 13.5px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border: 1px solid transparent;
    transition: all .25s;
    min-height: 46px;
  }
  .btn svg { width: 13px; height: 13px; }
  .btn-solid { background: var(--blue); color: #fff; }
  .btn-solid:hover { background: var(--blue-deep); }
  .btn-line { background: transparent; color: inherit; border-color: currentColor; }
  .btn-line:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }
  .btn-dark { background: var(--navy); color: var(--paper); }
  .btn-dark:hover { background: var(--blue); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }

  /* ============ SECTION BASICS ============ */
  .section { padding: 110px 0; }
  .section.sand { background: var(--sand); }
  .section.navy { background: var(--navy); color: var(--paper); }
  .section-intro { text-align: center; max-width: 720px; margin: 0 auto 72px; }
  .section-intro .eyebrow { display: inline-block; margin-bottom: 22px; }
  .section-intro h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 500;
  }
  .section-intro p { color: var(--muted); margin-top: 18px; font-weight: 300; font-size: 18px; }
  .navy .section-intro p { color: rgba(251,248,241,0.7); }

  /* ---- Video-Block (Home, Über uns, Beitrag) ---- */
  .block-video { padding: 72px 40px; }
  .block-video-inner { max-width: var(--max); margin: 0 auto; }
  .block-video .block-video-head {
    text-align: center; max-width: 720px; margin: 0 auto 48px;
  }
  .block-video .block-video-head .eyebrow {
    display: inline-block; margin: 0 0 20px; color: var(--blue);
  }
  .block-video .block-video-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.5vw, 56px); font-weight: 500; line-height: 1.1;
    color: var(--navy); margin: 0; padding: 0;
  }
  .block-video-frame {
    position: relative; width: 100%;
    background: #000; overflow: hidden; border-radius: 10px;
    aspect-ratio: 16 / 9; /* Fallback, wird inline überschrieben */
  }
  .block-video-frame iframe,
  .block-video-frame video {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: 0; display: block;
    object-fit: cover;
  }

  /* In Prosa-Spalten (Über uns / Beitrag) volle Spaltenbreite, weniger Abstand */
  .ueber-story-inner .block-video,
  .post-prose .block-video { padding: 24px 0; }
  .ueber-story-inner .block-video-inner,
  .post-prose .block-video-inner { max-width: none; }

  /* Zweispaltig: Text + Video nebeneinander */
  .block-video-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
  }
  .block-video--text-rechts .block-video-text  { order: 2; }
  .block-video--text-rechts .block-video-media { order: 1; }
  .block-video--split .block-video-head--left {
    text-align: left; max-width: none; margin: 0 0 18px;
  }
  .block-video--split .block-video-head--left .eyebrow { margin-bottom: 16px; }
  .block-video--split .block-video-head h2 { font-size: clamp(26px, 3vw, 40px); }
  .block-video-body {
    font-size: 18px; line-height: 1.75; font-weight: 300; color: var(--ink);
  }
  .block-video-body p { margin: 0 0 1em; }
  .block-video-body p:last-child { margin-bottom: 0; }
  .block-video-body a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

  /* Text oben · Video unten: zentrierte Intro über dem Video */
  .block-video-intro { max-width: 760px; margin: 0 auto 44px; }
  .block-video-intro .block-video-head { margin: 0 0 16px; }
  .block-video-body--center { text-align: center; }

  @media (max-width: 820px) {
    .block-video-grid { grid-template-columns: 1fr; gap: 28px; }
    .block-video--text-rechts .block-video-text,
    .block-video--text-rechts .block-video-media { order: 0; }
  }

  /* ============ STATEMENT ============ */
  .statement {
    text-align: center; max-width: 900px; margin: 0 auto;
    padding: 20px 0;
  }
  .statement p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.32; font-weight: 400;
    color: var(--ink);
  }
  .statement p em { font-style: italic; color: var(--blue-deep); }
  .statement .rule { margin-top: 40px; }

  /* ============ CONCERT LIST + TICKETS ============ */
  .concerts { border-top: 1px solid var(--line); }
  .navy .concerts { border-color: var(--line-dark); }
  .concert {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 36px; align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .3s ease;
  }
  .navy .concert { border-color: var(--line-dark); }
  .concert:hover { padding-left: 14px; }
  .concert-date { text-align: left; }
  .concert-date .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 500; line-height: .9;
  }
  .concert-date .mo {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); margin-top: 7px;
  }
  .navy .concert-date .mo { color: rgba(251,248,241,0.55); }
  .concert-main h3 {
    font-size: 30px; font-weight: 500; line-height: 1.05;
    transition: color .2s;
  }
  .concert-main h3 a { color: inherit; }
  .concert-main h3 a::after { content: ""; position: absolute; inset: 0; z-index: 0; }
  .concert-main h3:hover { color: var(--blue); }
  .concert-meta {
    font-size: 14px; color: var(--muted);
    margin-top: 6px; display: flex; gap: 18px; flex-wrap: wrap;
    letter-spacing: 0.02em;
  }
  .navy .concert-meta { color: rgba(251,248,241,0.6); }
  .concert-action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
  .ticket-tag {
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
  }
  .navy .ticket-tag { color: rgba(251,248,241,0.6); }
  .empty-hint { color: var(--muted); font-weight: 300; padding: 40px 0; }
  .navy .empty-hint { color: rgba(251,248,241,0.6); }

  /* ============ ABOUT ============ */
  .about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; align-items: stretch;
  }
  .about-img { overflow: hidden; min-height: 520px; background: var(--navy-2); }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-text {
    padding: 90px 0 90px 72px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .about-text .inner { max-width: none; padding-left: 0; }
  .about-text .eyebrow { margin-bottom: 22px; }
  .about-text h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; font-weight: 500; }
  .about-text p { color: var(--muted); margin-bottom: 18px; font-weight: 300; max-width: 460px; }
  .about-text .btn { margin-top: 14px; align-self: flex-start; }

  /* Bild + Text: Bild rechts */
  .about-split--reverse .about-img { order: 2; }
  .about-split--reverse .about-text { order: 1; padding: 90px 0 90px 72px; }

  /* Bild + Text: Hintergrundfarbe Textspalte */
  .about-text--navy {
    background: var(--navy);
    color: var(--paper);
  }
  .about-text--navy p { color: rgba(251,248,241,0.7); }
  .about-text--navy .btn-ghost {
    color: var(--paper);
    border-color: rgba(251,248,241,0.4);
  }
  .about-text--navy .btn-ghost:hover {
    background: var(--paper);
    color: var(--navy);
    border-color: var(--paper);
  }
  .about-text--sand { background: var(--sand); }

  /* ============ REPERTOIRE ============ */
  .rep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
  .rep-block h3 {
    font-size: 28px; font-weight: 500;
    padding-bottom: 16px; margin-bottom: 6px;
    border-bottom: 1px solid var(--line-dark);
  }
  .rep-block .tag {
    font-family: 'Jost', sans-serif;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--blue); margin: 4px 0 22px;
  }
  .rep-block ul { list-style: none; }
  .rep-block li {
    padding: 12px 0; border-bottom: 1px solid var(--line-dark);
    font-size: 16px; font-weight: 300;
    display: flex; justify-content: space-between; gap: 12px;
  }
  .rep-block .by { color: rgba(251,248,241,0.5); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 15px; }

  /* ============ NEWS GRID (Beitrags-Raster) ============ */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .news-card {
    position: relative;
    display: flex; flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,37,54,0.10); }
  .news-card .thumb { aspect-ratio: 3/2; overflow: hidden; background: var(--sand); }
  .news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
  .news-card:hover .thumb img { transform: scale(1.05); }
  .news-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
  .news-card .meta { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
  .news-card h3 { font-size: 25px; font-weight: 500; line-height: 1.15; margin-bottom: 10px; }
  .news-card h3 a { color: inherit; }
  .news-card h3 a::after { content: ""; position: absolute; inset: 0; }
  .news-card h3 a:hover { color: var(--blue); }
  .news-card p { font-size: 15px; color: var(--muted); font-weight: 300; }
  .news-more { text-align: center; margin-top: 56px; }

  /* ============ PAGE HEADER ============ */
  .page-top {
    padding: 150px 0 70px;
    background: var(--navy); color: var(--paper);
    text-align: center;
  }
  .page-top .eyebrow { color: var(--blue); display: inline-block; margin-bottom: 22px; }
  .page-top h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 500; }
  .page-top .intro { max-width: 560px; margin: 20px auto 0; color: rgba(251,248,241,0.72); font-weight: 300; font-size: 18px; }

  /* ============ ÜBER-UNS BLOCKS ============ */

  /* Über uns: feste Randabstände auf großen Screens (statt zentrierter „Insel").
     Inhalt nutzt die volle Breite mit konstantem Abstand zum Rand; die
     Lesespalte (Fakten + Fließtext) bleibt für die Lesbarkeit begrenzt. */
  #page-ueber-uns .container { max-width: none; padding: 0 64px; }
  #page-ueber-uns .ueber-main-inner { max-width: 1120px; margin: 0 auto; }

  /* Block 1: Hero */
  .ueber-hero {
    background: var(--navy); color: var(--paper);
    padding: 120px 0 100px; text-align: center;
  }
  .ueber-hero .eyebrow { color: var(--blue); margin-bottom: 20px; display: inline-block; }
  .ueber-hero h1 { font-size: clamp(42px, 7vw, 88px); font-weight: 500; line-height: 1.1; }
  .ueber-hero-intro {
    max-width: 600px; margin: 28px auto 0;
    font-size: 19px; font-weight: 300; line-height: 1.75;
    color: rgba(251,248,241,0.7);
  }

  /* Block 2+3: Fakten-Sidebar + Fließtext */
  .ueber-main { padding: 90px 0; background: var(--paper); }
  .ueber-main-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
  }
  .ueber-fact {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 3px;
  }
  .ueber-fact:first-child { border-top: 1px solid var(--line); }
  .ueber-fact-key {
    font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
  }
  .ueber-fact-val {
    font-size: 17px; font-weight: 500; color: var(--navy);
  }
  .ueber-story-inner p { font-size: 19px; color: var(--ink); margin-bottom: 24px; font-weight: 300; line-height: 1.75; }
  .ueber-story-inner p:first-child { font-size: 22px; }
  .ueber-story-inner h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 500; margin: 52px 0 18px; }
  .ueber-story-inner h3 { font-size: 24px; font-weight: 500; margin: 40px 0 14px; }
  .ueber-story-inner blockquote {
    border-left: 3px solid var(--blue); margin: 36px 0;
    padding: 4px 0 4px 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 28px); font-weight: 500; line-height: 1.5; color: var(--navy);
  }

  /* Block 4: Fotos */
  .ueber-photos { padding: 0 0 80px; background: var(--paper); }
  .ueber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px; gap: 10px;
  }
  .ueber-bild { margin: 0; overflow: hidden; background: var(--sand); }
  .ueber-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
  .ueber-bild:hover img { transform: scale(1.04); }
  .ueber-bild--featured { grid-column: span 2; grid-row: span 2; }

  /* Mitglieder-Auflistung (Block im Fließtext) */
  .mitglieder { margin: 40px 0 8px; }
  .mitglieder-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 500;
    text-align: center; margin: 0 0 14px; color: var(--navy);
  }
  .mitglieder-intro {
    max-width: 640px; margin: 0 auto 38px; text-align: center;
    font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--muted);
  }
  .mitglieder-grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 28px 24px;
  }
  .mitglied-card { margin: 0; }
  .mitglied-foto {
    position: relative; aspect-ratio: 3 / 4; overflow: hidden;
    background: var(--sand); border: 1px solid var(--line);
  }
  .mitglied-foto img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s ease;
  }
  .mitglied-card:hover .mitglied-foto img { transform: scale(1.04); }
  .mitglied-foto-platzhalter {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 500;
    color: var(--blue); opacity: 0.55;
  }
  .mitglied-info { padding: 14px 2px 0; }
  .mitglied-name {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1.15;
  }
  .mitglied-meta {
    display: block; font-size: 14px; line-height: 1.4; color: var(--muted); margin-top: 5px;
  }
  .mitglied-instr { color: var(--ink); }
  .mitglied-seit { font-size: 13px; }

  /* Block 5: Mitmachen CTA */
  .ueber-cta {
    background: var(--navy); color: var(--paper);
    text-align: center; padding: 100px 0;
  }
  .ueber-cta h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 500; }
  .ueber-cta p {
    max-width: 540px; margin: 22px auto 36px;
    font-size: 18px; font-weight: 300; line-height: 1.75;
    color: rgba(251,248,241,0.7);
  }
  .ueber-cta .btn-line { border-color: rgba(255,255,255,0.35); color: var(--paper); }
  .ueber-cta .btn-line:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: var(--paper); }

  /* Responsive */
  @media (max-width: 860px) {
    .ueber-main-inner { grid-template-columns: 1fr; gap: 40px; }
    .ueber-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ueber-bild--featured { grid-column: span 2; grid-row: span 1; }
  }
  @media (max-width: 500px) {
    .ueber-hero { padding: 80px 0 64px; }
    .ueber-story { padding: 64px 0; }
    .ueber-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .ueber-bild--featured { grid-column: span 1; }
    .ueber-cta { padding: 80px 0 100px; }
    .mitglieder-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
    .mitglied-name { font-size: 19px; }
  }

  /* ============ ARTICLE ============ */
  .article { display: grid; grid-template-columns: 240px 1fr; gap: 80px; padding: 80px 0 110px; }
  .article-aside { position: sticky; top: 110px; align-self: start; }
  .article-aside h4 { font-family: 'Jost', sans-serif; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
  .facts { list-style: none; }
  .facts li { display: flex; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .facts .k { color: var(--muted); letter-spacing: 0.02em; }
  .facts .v { font-weight: 500; }
  .article-body { max-width: 700px; }
  .article-body p { font-size: 19px; color: var(--ink); margin-bottom: 24px; font-weight: 300; line-height: 1.7; }
  .article-body p:first-child { font-size: 22px; }
  .article-body h2 { font-size: 34px; font-weight: 500; margin: 50px 0 18px; }
  .article-body h3 { font-size: 26px; font-weight: 500; margin: 40px 0 14px; }
  .article-body ul, .article-body ol { margin: 0 0 24px 1.4em; }
  .article-body li { font-size: 19px; color: var(--ink); font-weight: 300; line-height: 1.7; margin-bottom: 8px; }
  .article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
  .article-body code { font-family: monospace; font-size: 0.88em; background: var(--sand); padding: 2px 6px; border-radius: 3px; }
  .article-body hr { border: none; border-top: 1px solid var(--line); margin: 44px 0; }
  .article-body blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-style: italic; line-height: 1.3;
    color: var(--blue-deep); padding-left: 28px;
    border-left: 2px solid var(--blue); margin: 40px 0;
  }
  .article-figure { margin: 44px 0; }
  .article-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
  .article-figure figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; font-family: 'Cormorant Garamond', serif; }

  /* Kirby image block: data-ratio / data-crop */
  figure[data-ratio] { width: 100%; overflow: hidden; margin: 36px 0; }
  figure[data-ratio] img { width: 100%; display: block; }
  figure[data-ratio] figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; font-family: 'Cormorant Garamond', serif; }
  figure[data-ratio="1/1"]  { aspect-ratio: 1/1; }
  figure[data-ratio="16/9"] { aspect-ratio: 16/9; }
  figure[data-ratio="10/8"] { aspect-ratio: 10/8; }
  figure[data-ratio="21/9"] { aspect-ratio: 21/9; }
  figure[data-ratio="7/5"]  { aspect-ratio: 7/5; }
  figure[data-ratio="4/3"]  { aspect-ratio: 4/3; }
  figure[data-ratio="5/3"]  { aspect-ratio: 5/3; }
  figure[data-ratio="3/2"]  { aspect-ratio: 3/2; }
  figure[data-ratio="3/1"]  { aspect-ratio: 3/1; }
  figure[data-crop][data-ratio] img { height: 100%; object-fit: cover; }

  /* ============ CONCERT DETAIL ============ */
  .detail-top { padding: 130px 0 0; }
  .back-link { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); display: inline-flex; gap: 8px; align-items: center; transition: gap .2s; min-height: 40px; }
  .back-link:hover { gap: 12px; color: var(--ink); }
  .detail-head { padding: 24px 0 36px; }
  .detail-head .eyebrow { display: block; margin-bottom: 16px; }
  .detail-head h1 { font-size: clamp(34px, 5.5vw, 68px); font-weight: 500; max-width: 800px; }
  .detail-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    padding: 44px 0 110px;
    align-items: start;
  }
  .detail-sidebar { position: sticky; top: 110px; }
  .detail-sidebar-poster { width: 100%; display: block; border: 1px solid var(--line); margin-bottom: 28px; }
  .detail-facts { border-top: 1px solid var(--line); margin-bottom: 20px; }
  .detail-facts .f { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); gap: 12px; }
  .detail-facts .k { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; }
  .detail-facts .v { font-weight: 500; font-size: 15px; text-align: right; }
  .detail-prose { margin-top: 0; }
  .detail-prose p { font-size: 18px; color: var(--ink); margin-bottom: 22px; font-weight: 300; line-height: 1.7; }
  .detail-prose h2 { font-size: 30px; font-weight: 500; margin: 40px 0 16px; }
  .detail-ticket-box {
    padding: 20px 22px;
    background: var(--sand);
    border: 1px solid var(--line);
    border-left: 4px solid var(--blue-deep);
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 4px;
  }
  .detail-ticket-box--full {
    flex-direction: row; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
    padding: 26px 32px;
    margin-bottom: 0;
  }
  .detail-ticket-box--full .price { font-size: 30px; }
  .detail-ticket-box--free { margin-bottom: 20px; }
  .detail-ticket-box .lbl {
    font-family: 'Jost', sans-serif;
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-bottom: 6px;
  }
  .detail-ticket-box .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 500; line-height: 1;
  }
  .detail-ticket-box--free {
    padding: 14px 22px;
    border-left-width: 3px;
  }
  .detail-ticket-box--free .lbl { margin-bottom: 2px; }
  .detail-ticket-box--free .price { font-size: 17px; font-family: 'Jost', sans-serif; font-weight: 400; color: var(--blue-deep); }

  /* ============ POST DETAIL ============ */
  .post-head { max-width: 760px; margin: 0 auto; padding: 28px 0 40px; text-align: center; }
  .post-head .meta { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
  .post-head h1 { font-size: clamp(32px, 5.5vw, 64px); font-weight: 500; margin-bottom: 18px; }
  .post-head .lead { font-size: 20px; color: var(--muted); font-weight: 300; }
  .post-figure { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 56px; background: var(--sand); }
  .post-figure img { width: 100%; height: 100%; object-fit: cover; }
  .post-prose { max-width: 680px; margin: 0 auto; padding-bottom: 110px; }
  .post-prose--gallery { padding-bottom: 56px; }
  .post-prose p { font-size: 19px; margin-bottom: 24px; font-weight: 300; line-height: 1.7; }
  .post-prose h2 { font-size: 30px; font-weight: 500; margin: 40px 0 16px; }
  .post-prose h3 { font-size: 22px; font-weight: 500; margin: 32px 0 12px; }
  .post-prose blockquote { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; line-height: 1.3; color: var(--blue-deep); padding-left: 24px; border-left: 2px solid var(--blue); margin: 36px 0; }
  .post-prose ul, .post-prose ol { margin: 0 0 24px 1.4em; }
  .post-prose li { font-size: 19px; font-weight: 300; line-height: 1.7; margin-bottom: 6px; }
  .post-prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
  .post-prose code { font-family: monospace; font-size: 0.88em; background: var(--sand); padding: 2px 6px; border-radius: 3px; }
  .post-prose hr { border: none; border-top: 1px solid var(--line); margin: 44px 0; }

  /* ---- Post-Fotogalerie ---- */
  .post-gallery-wrap {
    background: var(--sand);
    padding: 64px 0 96px;
  }
  .post-gallery-heading {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .pgal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
  .post-gallery-heading { margin-bottom: 0; }
  .pgal-arrows { display: none; gap: 8px; }

  .post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
  }
  .post-gallery-grid .g {
    overflow: hidden;
    background: var(--sand);
    cursor: zoom-in;
    aspect-ratio: 4/3;
  }
  .post-gallery-grid .g img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
  }
  .post-gallery-grid .g:hover img { transform: scale(1.04); }

  /* ============ GALLERY ============ */
  .gallery { columns: 3; column-gap: 18px; padding: 60px 0 110px; }
  .gallery .g { margin-bottom: 18px; overflow: hidden; break-inside: avoid; background: var(--sand); cursor: zoom-in; }
  .gallery .g img { width: 100%; transition: transform .6s; }
  .gallery .g:hover img { transform: scale(1.04); }

  /* Lightbox */
  .lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,24,36,0.96);
    display: none; align-items: center; justify-content: center;
    padding: 64px 80px;
    gap: 0;
  }
  .lightbox.open { display: flex; }
  .lb-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; min-width: 0; }
  .lightbox img { max-width: 100%; max-height: calc(100vh - 128px); object-fit: contain; display: block; }
  .lightbox .lb-close {
    position: absolute; top: 18px; right: 22px;
    background: none; border: none; color: var(--paper); cursor: pointer;
    width: 44px; height: 44px; opacity: 0.7; transition: opacity .2s;
    display: flex; align-items: center; justify-content: center;
  }
  .lightbox .lb-close:hover { opacity: 1; }
  .lightbox .lb-close svg { width: 26px; height: 26px; }
  .lb-nav {
    flex-shrink: 0;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--paper); cursor: pointer;
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, opacity .2s; opacity: 0.8;
  }
  .lb-nav:hover { background: rgba(255,255,255,0.18); opacity: 1; }
  .lb-nav:disabled, .lb-nav[aria-disabled="true"] { opacity: 0.2; cursor: default; pointer-events: none; }
  .lb-nav svg { width: 24px; height: 24px; pointer-events: none; }
  .lb-counter {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 13px; letter-spacing: 0.08em;
    font-family: 'Jost', sans-serif;
  }
  @media (max-width: 620px) {
    .lightbox { padding: 56px 12px 48px; gap: 8px; }
    .lb-nav { width: 44px; height: 44px; }
  }

  /* ============ CONTACT ============ */
  .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 60px 0 110px; align-items: start; }
  .contact-info h3 { font-family: 'Jost', sans-serif; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 30px 0 10px; font-weight: 600; }
  .contact-info h3:first-child { margin-top: 0; }
  .contact-info .big { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--blue-deep); display: block; margin: 6px 0; }
  .contact-info a { color: var(--ink); border-bottom: 1px solid var(--line); }
  .contact-info a:hover { border-color: var(--blue); color: var(--blue); }
  .socials { display: flex; gap: 10px; margin-top: 12px; }
  .socials a { width: 44px; height: 44px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all .2s; }
  .socials a:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .form-wrap { display: flex; flex-direction: column; }
  .form-type-toggle {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line); border-bottom: none;
    background: var(--sand);
  }
  .ftype-btn {
    padding: 14px 10px;
    background: none; border: none; border-right: 1px solid var(--line);
    font-family: 'Jost', sans-serif; font-size: 11.5px;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; color: var(--muted); font-weight: 500;
    transition: background .2s, color .2s;
  }
  .ftype-btn:last-child { border-right: none; }
  .ftype-btn:hover { background: rgba(15,37,54,0.05); color: var(--ink); }
  .ftype-btn.active { background: var(--blue-deep); color: var(--paper); }
  .form-panel.form--hidden { display: none; }
  .form { border: 1px solid var(--line); padding: 40px; background: var(--paper); }
  .form .sub { color: var(--muted); margin-bottom: 26px; font-size: 15px; font-weight: 300; }
  .frow { margin-bottom: 16px; }
  .frow label { display: block; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 7px; color: var(--muted); font-weight: 500; }
  .frow input, .frow textarea, .frow select { width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--paper); font-family: 'Jost', sans-serif; font-size: 16px; color: var(--ink); transition: border .2s; min-height: 46px; }
  .frow input:focus, .frow textarea:focus, .frow select:focus { outline: none; border-color: var(--blue); }
  .frow textarea { resize: vertical; min-height: 110px; }
  .frow-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .frow-check { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 18px; font-size: 14px; color: var(--muted); font-weight: 300; }
  .frow-check input { width: auto; min-height: 0; margin-top: 4px; }
  /* Datenschutz-Link in der Einwilligungs-Zeile hervorheben */
  .frow-check a {
    color: var(--blue); font-weight: 600;
    text-decoration: underline; text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
  }
  .frow-check a:hover { color: var(--blue-deep); }
  .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .form-note { padding: 16px 18px; font-size: 15px; margin-bottom: 22px; border: 1px solid var(--line); }
  .form-note.ok { border-color: #2e7d52; color: #2e7d52; background: rgba(46,125,82,0.06); }
  .form-note.err { border-color: #b5462f; color: #b5462f; background: rgba(181,70,47,0.06); }
  .field-error { display: block; color: #b5462f; font-size: 12.5px; margin-top: 6px; }

  /* ============ FOOTER ============ */
  footer { background: var(--navy); color: rgba(251,248,241,0.85); padding: 84px 0 30px; }
  .footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
  .footer-mark { text-align: center; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); margin-bottom: 48px; }
  .footer-mark .name { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 500; color: var(--paper); }
  .footer-mark .rule { margin-top: 20px; color: var(--blue); }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
  .footer-col h4 { font-family: 'Jost', sans-serif; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,248,241,0.45); margin-bottom: 16px; font-weight: 600; }
  .footer-col a { display: block; color: var(--paper); margin-bottom: 9px; font-size: 14px; font-weight: 300; opacity: .85; }
  .footer-col a:hover { opacity: 1; color: #bcd9ea; }
  .footer-col p { font-size: 14px; color: rgba(251,248,241,0.55); font-weight: 300; max-width: 280px; }
  .footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; font-size: 12.5px; color: rgba(251,248,241,0.45); letter-spacing: 0.04em; }
  .footer-bottom > :last-child { text-align: right; }
  .footer-credit { text-align: center; }
  .footer-credit a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(251,248,241,0.3); transition: color .2s, border-color .2s; }
  .footer-credit a:hover { color: rgba(251,248,241,0.85); border-color: rgba(251,248,241,0.6); }

  a.brand { color: inherit; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1080px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  }
  @media (max-width: 940px) {
    .container { padding: 0 26px; }
    /* Über uns: ab hier wieder normale Seitenränder (nicht die festen 64px) */
    #page-ueber-uns .container { padding: 0 26px; }
    .header-inner { padding: 10px 26px; }
    .brand img.logo { height: 72px; margin: -10px 0; }
    nav.main { display: none; }
    .menu-toggle { display: inline-flex; }
    .section { padding: 80px 0; }
    .block-video { padding: 56px 26px; }
    .hero-content { padding: 0 26px 72px; }
    .about-split { grid-template-columns: 1fr; }
    .about-img { min-height: 300px; order: -1; }
    .about-text { padding: 48px 0 64px; }
    .about-text .inner { padding-left: 26px; }
    .about-split--reverse .about-img { order: -1; }
    .about-split--reverse .about-text { padding: 48px 0 64px; }
    .rep-grid { grid-template-columns: 1fr; gap: 40px; }
    .article { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 80px; }
    .article-aside { position: static; }
    .detail-layout { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 80px; }
    .detail-sidebar { position: static; }
    .detail-sidebar-poster { max-width: 320px; }
    .contact { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .gallery { columns: 2; }
    .page-top { padding: 120px 0 56px; }
    .concert { grid-template-columns: 72px 1fr; gap: 14px 18px; }
    .concert-date .day { font-size: 38px; }
    .concert-main h3 { font-size: 22px; }
    .concert-action { grid-column: 2; align-items: flex-start; margin-top: 4px; }
    .detail-top { padding: 100px 0 0; }
  }
  @media (max-width: 620px) {
    .news-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .frow-split { grid-template-columns: 1fr; }
    .gallery { columns: 1; }
    .post-gallery-wrap { padding: 48px 0 64px; }
    .pgal-arrows { display: flex; }
    .pgal-prev, .pgal-next {
      width: 38px; height: 38px;
      border: 1.5px solid var(--navy);
      border-radius: 50%;
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      padding: 0;
      flex-shrink: 0;
    }
    .pgal-prev svg, .pgal-next svg { width: 18px; height: 18px; }
    .post-gallery-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 12px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .post-gallery-grid::-webkit-scrollbar { display: none; }
    .post-gallery-grid .g { flex: 0 0 80vw; scroll-snap-align: start; aspect-ratio: 4/3; }
    .concert { grid-template-columns: 56px 1fr; gap: 10px 14px; padding: 18px 0; }
    .concert-date .day { font-size: 28px; }
    .concert-date .mo { font-size: 10px; margin-top: 3px; }
    .concert-main h3 { font-size: 18px; }
    .concert-meta { font-size: 12.5px; gap: 10px; }
    .concert-action { grid-column: 2; margin-top: 2px; }
    .detail-ticket-box { flex-direction: column; align-items: flex-start; }
    .form { padding: 28px 22px; }
    .section { padding: 64px 0; }
    .block-video { padding: 44px 26px; }
    .hero { height: 100svh; min-height: 520px; align-items: flex-end; }
    .hero-bg { position: absolute; inset: 0; height: 100%; }
    .hero-overlay {
      background: linear-gradient(
        to bottom,
        rgba(15,37,54,0.25) 0%,
        rgba(15,37,54,0.05) 25%,
        rgba(15,37,54,0.55) 60%,
        rgba(15,37,54,0.93) 100%
      );
    }
    .hero-content { background: transparent; padding: 0 24px 56px; max-width: none; margin: 0; }
    .hero-content .eyebrow { color: rgba(188,217,234,0.95); }
    .hero-content h1 { font-size: clamp(38px, 11vw, 60px); margin: 10px 0 16px; max-width: none; }
    .hero-content .tagline { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn { padding: 13px 22px; font-size: 14px; }
    .footer-bottom { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom > :last-child { text-align: center; }
  }

  /* ============ MITGLIEDERBEREICH ============ */

  /* ---- Login-Seite ---- */
  .mlogin {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 100px 20px 60px;
    background: var(--navy);
    overflow: hidden;
  }
  .mlogin-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(61,126,166,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 20%, rgba(61,126,166,0.12) 0%, transparent 60%);
  }
  .mlogin-bg-overlay {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 39px,
      rgba(255,255,255,0.025) 39px, rgba(255,255,255,0.025) 40px
    );
  }
  .mlogin-wrap { position: relative; z-index: 1; width: 100%; max-width: 440px; }
  .mlogin-card {
    background: #fff; padding: 48px 48px 40px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  }
  .mlogin-brand {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 28px; margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  .mlogin-logo { height: 44px; width: auto; }
  .mlogin-site {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px; font-weight: 600; color: var(--navy);
  }
  .mlogin-head { margin-bottom: 28px; }
  .mlogin-head .eyebrow { margin-bottom: 10px; }
  .mlogin-head h1 { font-size: 38px; font-weight: 500; line-height: 1; }
  .mlogin-intro {
    margin: -10px 0 24px; font-size: 15px; line-height: 1.6;
    color: var(--muted); font-weight: 300;
  }
  .mlogin-intro strong { color: var(--ink); font-weight: 500; }
  .member-msg {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 16px; font-size: 14px; margin-bottom: 20px;
    border-radius: 0; border: 1px solid;
  }
  .member-msg svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
  .member-msg--warn { border-color: #c08a2c; color: #7a5200; background: rgba(192,138,44,0.07); }
  .member-msg--err  { border-color: #b5462f; color: #b5462f; background: rgba(181,70,47,0.06); }
  .mlogin-form { display: flex; flex-direction: column; gap: 18px; }
  .mlogin-field label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px;
  }
  .mlogin-input-wrap {
    position: relative;
  }
  .mlogin-input-wrap svg {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; color: var(--muted); pointer-events: none;
  }
  .mlogin-input-wrap input {
    width: 100%; padding: 13px 14px 13px 42px;
    border: 1px solid var(--line); background: var(--paper);
    font-family: "Jost", sans-serif; font-size: 16px; color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    min-height: 48px;
  }
  .mlogin-input-wrap input:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(61,126,166,0.12);
  }
  .mlogin-btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 24px; min-height: 52px;
    background: var(--navy); color: #fff;
    font-family: "Jost", sans-serif; font-size: 14px;
    font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; margin-top: 4px;
    transition: background .25s;
  }
  .mlogin-btn svg { width: 16px; height: 16px; }
  .mlogin-btn:hover { background: var(--blue); }
  .mlogin-hint {
    display: flex; align-items: center; gap: 7px; justify-content: center;
    margin-top: 22px; font-size: 13px; color: var(--muted); font-weight: 300;
  }
  .mlogin-hint svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* ---- Member-Bar ---- */
  .mbar {
    background: var(--navy-2); color: var(--paper);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky; top: 90px; z-index: 80;
    /* schiebt die Leiste unter den fixierten Header — bündig, ohne Lücke
       (Header-Höhe = Logo 126px mit -18px Rand = 90px) */
    margin-top: 90px;
  }
  .mbar-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding-top: 0; padding-bottom: 0;
    height: 56px;
  }
  /* -22px gleicht das Eigen-Padding des ersten Links aus,
     damit „Dashboard" bündig mit Logo/Inhalt beginnt */
  .mbar-nav { display: flex; height: 100%; margin-left: -22px; }
  .mbar-link {
    display: flex; align-items: center; gap: 8px;
    padding: 0 22px; height: 100%;
    font-size: 13.5px; letter-spacing: 0.03em;
    color: rgba(251,248,241,0.65);
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
    white-space: nowrap;
  }
  .mbar-link svg { width: 17px; height: 17px; flex-shrink: 0; }
  .mbar-link:hover { color: var(--paper); background: rgba(255,255,255,0.05); }
  .mbar-link.is-active {
    color: var(--paper); border-bottom-color: var(--blue);
  }
  .mbar-user {
    display: flex; align-items: center; gap: 12px;
    flex-shrink: 0;
  }
  .mbar-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
  }
  .mbar-userinfo {
    display: flex; flex-direction: column; line-height: 1.2;
    text-align: right;
  }
  .mbar-username { font-size: 13.5px; font-weight: 500; }
  .mbar-role {
    font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(251,248,241,0.45);
  }
  /* ---- Gemeinsame Seiten-Elemente ---- */
  .member-content { padding-bottom: 100px; }
  .mpage-top {
    padding: 48px 0 40px;
    background: var(--navy); color: var(--paper);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mpage-top .eyebrow { color: var(--blue); display: inline-block; margin-bottom: 12px; }
  .mpage-top h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 500; }
  .mpage-sub { margin-top: 12px; color: rgba(251,248,241,0.6); font-weight: 300; font-size: 16px; max-width: 540px; }
  .mpage-back {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(251,248,241,0.5); margin-bottom: 18px;
    transition: color .2s; min-height: 36px;
  }
  .mpage-back svg { width: 14px; height: 14px; }
  .mpage-back:hover { color: rgba(251,248,241,0.85); }
  .mdash-empty {
    display: flex; align-items: center; gap: 10px;
    padding: 28px 0; color: var(--muted); font-weight: 300; font-style: italic;
    font-size: 15px;
  }
  .mdash-empty svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); }
  .mdash-badge {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--navy); color: var(--paper);
    padding: 3px 10px; white-space: nowrap; flex-shrink: 0; align-self: center;
  }

  /* ---- Dashboard ---- */
  .mdash-hero {
    padding: 56px 0 56px;
    background: var(--navy); color: var(--paper);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mdash-hero .eyebrow { color: var(--blue); display: inline-block; margin-bottom: 14px; }
  .mdash-hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 500; }
  .mdash-welcome { color: rgba(251,248,241,0.7); font-weight: 300; font-size: 17px; margin-top: 14px; max-width: 520px; }
  .mdash-meta { margin-top: 20px; }
  .mdash-role-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    color: rgba(251,248,241,0.75);
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .mdash-role-badge svg { width: 14px; height: 14px; }
  .mdash-body {
    padding-top: 52px; padding-bottom: 80px;
    display: flex; flex-direction: column; gap: 28px;
  }
  .mdash-section {
    background: #fff; border: 1px solid var(--line); padding: 32px;
  }
  /* Termine (60%) + Flaschenpost (40%) nebeneinander */
  .mdash-row {
    display: grid; grid-template-columns: 3fr 2fr;
    gap: 28px; align-items: start;
  }
  .mdash-row > .mdash-section { margin: 0; }
  .mdash-row > .mdash-section:only-child { grid-column: 1 / -1; }
  .mdash-lied-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .mdash-lied-row .mdash-lied-count { margin-bottom: 0; }
  .mdash-section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; padding-bottom: 18px;
    border-bottom: 1px solid var(--line); gap: 16px;
  }
  .mdash-section-head h2 {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 500;
  }
  .mdash-section-head h2 svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
  .mdash-more {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); white-space: nowrap; flex-shrink: 0;
    transition: gap .2s;
  }
  .mdash-more svg { width: 12px; height: 12px; }
  .mdash-more:hover { gap: 9px; }
  .mdash-events { display: flex; flex-direction: column; gap: 0; }
  .mdash-event {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 0; border-bottom: 1px solid var(--line);
  }
  .mdash-event:last-child { border-bottom: none; }
  .mdash-event--vorstand { background: rgba(15,37,54,0.02); }
  .mdash-event-cal {
    display: flex; flex-direction: column; align-items: center;
    min-width: 50px; text-align: center;
    padding: 8px 10px;
    background: var(--sand); border: 1px solid var(--line);
    flex-shrink: 0;
  }
  .mdash-event-cal-mo {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue); font-weight: 600;
  }
  .mdash-event-cal-day {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px; font-weight: 500; line-height: 1; color: var(--navy);
  }
  .mdash-event-info { flex: 1; }
  .mdash-event-info strong { display: block; font-size: 16px; font-weight: 600; }
  .mdash-event-meta { font-size: 13px; color: var(--muted); margin-top: 3px; }
  .mdash-lied-count {
    display: flex; align-items: baseline; gap: 10px;
    margin-bottom: 20px;
  }
  .mdash-lied-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px; font-weight: 500; line-height: 1; color: var(--navy);
  }
  .mdash-lied-label { font-size: 16px; color: var(--muted); font-weight: 300; }

  /* ---- Termine-Seite ---- */
  .mtermine-wrap {
    padding-top: 52px; padding-bottom: 80px;
    display: flex; flex-direction: column; gap: 48px;
  }
  .mtermine-col {}
  .mtermine-col--past { opacity: .75; }
  .mtermine-group-title {
    display: flex; align-items: center; gap: 10px;
    font-family: "Jost", sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 20px;
  }
  .mtermine-group-title svg { width: 16px; height: 16px; color: var(--blue); }
  .mtermine-group-title--muted { color: var(--muted); }
  .mtermine-group-title--muted svg { color: var(--muted); }
  .mtermine-count {
    margin-left: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 22px; height: 22px; padding: 0 6px;
    background: var(--blue); color: #fff;
    font-size: 11px; font-weight: 700; border-radius: 11px;
  }
  .mtermine-count--muted { background: var(--muted); }
  .mtermine-list { display: flex; flex-direction: column; gap: 14px; }

  /* Kommende Termine – Karten im Kalender-Stil */
  .mtermin-card {
    display: flex; align-items: stretch;
    border: 1px solid var(--line); background: #fff;
    border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  }
  .mtermin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15,37,54,0.10);
    border-color: rgba(15,37,54,0.16);
  }
  .mtermin-card:hover .mtermin-chevron { transform: translateX(3px); color: var(--blue); }
  .mtermin-card--vs { background: rgba(15,37,54,0.02); }

  /* Kalender-Datumsblock */
  .mtermin-date {
    flex-shrink: 0; width: 76px;
    display: flex; flex-direction: column; align-items: center;
    background: var(--sand);
    border-right: 1px solid var(--line);
    text-align: center;
  }
  .mtermin-mon {
    width: 100%; padding: 5px 0;
    background: var(--navy); color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .mtermin-card--blue  .mtermin-mon { background: var(--blue); }
  .mtermin-card--green .mtermin-mon { background: #2e7d52; }
  .mtermin-card--gold  .mtermin-mon { background: #c08a2c; }
  .mtermin-card--muted .mtermin-mon { background: var(--muted); }
  .mtermin-day {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px; font-weight: 600; line-height: 1; color: var(--navy);
    margin-top: 9px;
  }
  .mtermin-year { font-size: 11px; color: var(--muted); margin: 3px 0 9px; }

  /* Karten-Inhalt */
  .mtermin-body {
    flex: 1; min-width: 0;
    padding: 15px 20px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .mtermin-top { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; flex-wrap: wrap; }
  .mtermin-art {
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px;
  }
  .mtermin-art--blue  { background: rgba(61,126,166,0.12); color: var(--blue-deep); }
  .mtermin-art--navy  { background: rgba(15,37,54,0.08); color: var(--navy); }
  .mtermin-art--green { background: rgba(46,125,82,0.12); color: #1e5c38; }
  .mtermin-art--gold  { background: rgba(192,138,44,0.14); color: #7a5200; }
  .mtermin-art--muted { background: var(--sand); color: var(--muted); }
  .mtermin-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px; font-weight: 600; line-height: 1.15; color: var(--navy);
    margin: 0 0 8px;
  }
  .mtermin-facts {
    display: flex; gap: 8px 16px; flex-wrap: wrap;
    font-size: 13.5px; color: var(--muted);
  }
  .mtermin-facts span { display: inline-flex; align-items: center; gap: 5px; }
  .mtermin-facts svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--blue); }
  .mtermin-files {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 9px; font-size: 12.5px; color: var(--blue-deep); font-weight: 600;
  }
  .mtermin-files svg { width: 14px; height: 14px; flex-shrink: 0; }
  .mtermin-chevron {
    align-self: center; flex-shrink: 0;
    width: 18px; height: 18px; margin-right: 16px;
    color: #c7cdd4; transition: transform .2s ease, color .2s ease;
  }

  /* Vergangene Termine – kompakte Liste */
  .mtermine-list--past { gap: 2px; }
  .mtermin-past {
    display: flex; align-items: baseline; gap: 6px 16px; flex-wrap: wrap;
    padding: 13px 14px; border-radius: 8px;
    text-decoration: none; color: inherit;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
  }
  .mtermin-past:last-child { border-bottom: none; }
  .mtermin-past:hover { background: var(--sand); }
  .mtermin-past:hover .mtermin-past-title { color: var(--blue-deep); }
  .mtermin-past-date { color: var(--muted); font-size: 13px; min-width: 128px; flex-shrink: 0; }
  .mtermin-past-title { font-weight: 600; color: var(--navy); flex: 1; min-width: 0; }
  .mtermin-past-art {
    font-size: 11px; color: var(--blue-deep);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .mtermin-past-ort { color: var(--muted); font-size: 13px; }

  .mtermin-detail-facts { margin-bottom: 24px; }

  /* Datei-Zeile auf der Termin-Detailseite: ganze Zeile öffnet die Datei */
  .mtermin-file { cursor: pointer; }

  /* ---- Liedtexte-Seite ---- */
  .mlied-wrap { padding-top: 40px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 32px; }
  .mlied-search-bar { position: relative; }
  .mlied-search-wrap {
    position: relative; display: flex; align-items: center;
  }
  .mlied-search-wrap svg:first-child {
    position: absolute; left: 16px;
    width: 18px; height: 18px; color: var(--muted); pointer-events: none; z-index: 1;
  }
  .mlied-search-wrap input[type="search"] {
    width: 100%; padding: 14px 50px 14px 50px;
    border: 1px solid var(--line); background: #fff;
    font-family: "Jost", sans-serif; font-size: 16px; color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    min-height: 52px;
    -webkit-appearance: none;
  }
  .mlied-search-wrap input[type="search"]:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(61,126,166,0.1);
  }
  .mlied-search-clear {
    position: absolute; right: 14px;
    background: none; border: none; cursor: pointer;
    color: var(--muted); padding: 6px; transition: color .2s;
    min-height: 40px; min-width: 40px; display: flex; align-items: center; justify-content: center;
  }
  .mlied-search-clear svg { width: 16px; height: 16px; }
  .mlied-search-clear:hover { color: var(--ink); }
  .mlied-search-status { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 300; }
  .mlied-no-results { font-size: 15px; color: var(--muted); font-style: italic; padding: 20px 0; }
  .mlied-kat { border: 1px solid var(--line); background: #fff; }
  .mlied-kat-head {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 24px; border-bottom: 1px solid var(--line);
    background: var(--sand);
    cursor: pointer; user-select: none;
  }
  .mlied-kat-head svg:not(.mlied-chevron) { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
  .mlied-chevron { width: 16px; height: 16px; color: var(--muted); margin-left: auto; flex-shrink: 0; transition: transform .2s; }
  .mlied-kat[data-open="false"] .mlied-chevron { transform: rotate(-90deg); }
  .mlied-kat[data-open="false"] .mlied-kat-head { border-bottom-color: transparent; }
  .mlied-kat[data-open="false"] .mlied-list,
  .mlied-kat[data-open="false"] .mlied-kat-desc { display: none; }
  .mlied-kat-head h2 { font-size: 18px; font-weight: 500; flex: 1; }
  .mlied-kat-count {
    font-size: 11.5px; color: var(--muted);
    font-family: "Jost", sans-serif; letter-spacing: 0.06em;
  }
  .mlied-kat-desc { padding: 12px 24px 0; font-size: 14px; color: var(--muted); font-weight: 300; }
  .mlied-list { padding: 0 8px; }
  .mlied-item {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 16px; border-bottom: 1px solid var(--line);
    transition: background .15s;
  }
  .mlied-item:last-child { border-bottom: none; }
  .mlied-item:hover { background: rgba(61,126,166,0.04); }
  .mlied-item-icon {
    width: 40px; height: 48px; flex-shrink: 0;
    background: rgba(181,70,47,0.07); border: 1px solid rgba(181,70,47,0.18);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  }
  .mlied-item-icon svg { width: 16px; height: 16px; color: #b5462f; }
  .mlied-item-icon span {
    font-size: 7.5px; letter-spacing: 0.1em; font-weight: 700;
    color: #b5462f; text-transform: uppercase;
  }
  .mlied-item-body { flex: 1; min-width: 0; }
  .mlied-no {
    width: 52px; flex-shrink: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px; font-weight: 600; line-height: 1;
    color: var(--navy); text-align: center;
    font-variant-numeric: tabular-nums;
  }
  .mlied-no--leer { color: var(--line); }
  @media (max-width: 620px) {
    .mlied-no { width: 38px; font-size: 22px; }
  }
  .mlied-num {
    display: inline-block; min-width: 28px; margin-right: 6px;
    font-size: 11px; font-weight: 500; color: var(--muted);
    font-family: "Jost", sans-serif; letter-spacing: 0.04em;
  }
  .mlied-item-body strong {
    display: block; font-size: 16px; font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .mlied-item-meta { display: flex; gap: 10px; margin-top: 2px; }
  .mlied-item-meta span { font-size: 12.5px; color: var(--muted); }
  .mlied-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
  .mlied-view {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 18px; flex-shrink: 0;
    border: 1px solid var(--line); background: var(--paper);
    font-family: "Jost", sans-serif; font-size: 12.5px;
    font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink); transition: all .2s; min-height: 40px;
    white-space: nowrap;
  }
  .mlied-view svg { width: 14px; height: 14px; flex-shrink: 0; }
  .mlied-view:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .mlied-dl {
    display: flex; align-items: center; justify-content: center;
    width: 40px; min-height: 40px; flex-shrink: 0;
    border: 1px solid var(--line); background: var(--paper);
    color: var(--muted); transition: all .2s;
  }
  .mlied-dl svg { width: 14px; height: 14px; }
  .mlied-dl:hover { background: var(--line); color: var(--ink); }
  /* Favoriten-Stern */
  .mlied-fav {
    display: flex; align-items: center; justify-content: center;
    width: 40px; min-height: 40px; flex-shrink: 0;
    border: 1px solid var(--line); background: var(--paper);
    color: var(--muted); cursor: pointer; transition: all .2s;
  }
  .mlied-fav svg { width: 16px; height: 16px; opacity: .45; transition: opacity .2s; }
  .mlied-fav:hover { border-color: #c08a2c; color: #c08a2c; }
  .mlied-fav:hover svg { opacity: 1; }
  .mlied-fav.is-fav { border-color: #c08a2c; color: #c08a2c; background: rgba(192,138,44,0.08); }
  .mlied-fav.is-fav svg { opacity: 1; }
  .mlied-fav[disabled] { opacity: .5; cursor: default; }

  /* Favoriten-Block im Dashboard */
  .mdash-fav { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
  .mdash-fav-head {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
    font-family: "Jost", sans-serif; font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy);
  }
  .mdash-fav-head svg { width: 15px; height: 15px; color: #c08a2c; }
  .mdash-fav .mlied-list { padding: 0; }
  .mdash-fav .mlied-item { cursor: pointer; }

  /* ---- Flaschenpost ---- */
  .mpost-wrap { padding-top: 40px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 32px; }
  .mpost-list { display: flex; flex-direction: column; }
  .mpost-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 20px;
    background: #fff; border: 1px solid var(--line);
    border-left: 3px solid transparent;
    color: inherit; text-decoration: none;
    transition: background .2s, border-color .2s;
  }
  .mpost-item + .mpost-item { margin-top: -1px; }
  .mpost-item:hover { background: rgba(61,126,166,0.04); }
  .mpost-item.is-new { border-left-color: var(--blue); background: rgba(61,126,166,0.03); }
  .mpost-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--sand); color: var(--blue);
  }
  .mpost-icon svg { width: 18px; height: 18px; }
  .mpost-item.is-new .mpost-icon { background: var(--blue); color: #fff; }
  .mpost-body { flex: 1; min-width: 0; }
  .mpost-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .mpost-subject { font-size: 16px; font-weight: 500; color: var(--ink); }
  .mpost-new {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--blue); color: #fff; padding: 2px 8px; border-radius: 9px;
  }
  .mpost-meta {
    display: inline-flex; align-items: center; gap: 5px; flex-wrap: wrap;
    font-size: 13px; color: var(--muted); margin-top: 3px;
  }
  .mpost-clip { width: 13px; height: 13px; flex-shrink: 0; }
  .mpost-preview {
    margin-top: 6px; font-size: 14px; font-weight: 300; color: var(--muted);
    line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .mpost-go {
    display: flex; align-items: center; align-self: center;
    color: var(--muted); flex-shrink: 0;
  }
  .mpost-go svg { width: 16px; height: 16px; }
  .mpost-item:hover .mpost-go { color: var(--blue); }
  .mpost-list--dash .mpost-item { padding: 13px 14px; }
  .mpost-list--dash .mpost-icon { width: 34px; height: 34px; }
  .mpost-list--dash .mpost-icon svg { width: 15px; height: 15px; }
  .mpost-list--dash .mpost-subject { font-size: 15px; }

  /* Flaschenpost: Lese-Ansicht */
  .mpost-article {
    background: #fff; border: 1px solid var(--line);
    padding: 40px; max-width: 820px;
  }
  .mpost-article-text { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--ink); }
  .mpost-article-text p { margin-bottom: 1.1em; }
  .mpost-article-text p:last-child { margin-bottom: 0; }
  .mpost-article-text a { color: var(--blue-deep); text-decoration: underline; }
  .mpost-article-text ul, .mpost-article-text ol { margin: 0 0 1.1em 1.3em; }
  .mpost-article-text h2, .mpost-article-text h3 { margin: 1.3em 0 0.5em; font-weight: 500; }
  .mpost-attachments { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
  .mpost-attachments h2 {
    display: flex; align-items: center; gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 14px;
  }
  .mpost-attachments h2 svg { width: 15px; height: 15px; color: var(--blue); }
  .mpost-attachments .mlied-list { padding: 0; }

  /* Member-Bar & Flaschenpost: mobil */
  @media (max-width: 720px) {
    .mbar { position: static; }
    .mbar-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-left: -14px; }
    .mbar-link { padding: 0 14px; }
    .mbar-link span { display: none; }
    .mbar-userinfo { display: none; }
    .mpost-article { padding: 24px 18px; }
    .mpost-preview { display: none; }
    .mdash-row { grid-template-columns: 1fr; }
  }

  /* ---- Mitglieder-Link im Header ---- */
  .nav-link--member {
    display: inline-flex !important; align-items: center;
    padding: 6px 14px !important;
    border: 1px solid currentColor; opacity: .75;
    transition: opacity .2s, background .2s, color .2s !important;
  }
  .nav-link--member::after { display: none !important; }
  .nav-link--member:hover, .nav-link--member.active { opacity: 1; }
  header.solid .nav-link--member:hover { background: var(--navy); color: var(--paper) !important; border-color: var(--navy); }
  header.over-hero .nav-link--member:hover { background: rgba(255,255,255,0.15); }

  /* ---- Social-Icons in der Haupt-Navi (Desktop) ---- */
  .nav-social { display: inline-flex; align-items: center; gap: 14px; }
  .nav-social a { display: inline-flex; padding: 0; opacity: .7; transition: opacity .2s, color .2s; }
  .nav-social a::after { display: none !important; }
  .nav-social a:hover { opacity: 1; color: var(--blue); }
  .nav-social svg { width: 19px; height: 19px; display: block; }

  /* ---- Social-Icons im mobilen Fullscreen-Menü ---- */
  .mobile-social { display: flex; gap: 14px; }
  .mobile-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(251,248,241,.3); color: var(--paper);
    transition: background .2s, border-color .2s;
  }
  .mobile-social a:hover { background: rgba(255,255,255,.1); border-color: rgba(251,248,241,.65); }
  .mobile-social svg { width: 20px; height: 20px; display: block; }

  /* ---- Responsive ---- */
  @media (max-width: 940px) {
    .mbar { top: 73px; margin-top: 73px; }
    .mbar-inner { height: auto; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px; }
    .mbar-link { padding: 8px 16px; height: auto; font-size: 13px; border-bottom: none; border-radius: 4px; }
    .mbar-link.is-active { background: rgba(255,255,255,0.1); border-bottom: none; }
    .mbar-userinfo { display: none; }
    .mlogin-card { padding: 36px 32px; }
  }
  @media (max-width: 620px) {
    .mlogin-card { padding: 28px 20px; }
    .mbar-user { gap: 8px; }

    /* Termine: kompakter Kalenderblock, Inhalt mehr Platz */
    .mtermine-wrap { gap: 36px; }
    .mtermin-date { width: 62px; }
    .mtermin-day { font-size: 31px; margin-top: 7px; }
    .mtermin-mon { font-size: 10px; letter-spacing: 0.1em; }
    .mtermin-body { padding: 13px 14px; }
    .mtermin-title { font-size: 20px; }
    .mtermin-chevron { display: none; }
    .mtermin-past { padding: 12px 10px; }
    .mtermin-past-date { min-width: 100%; font-size: 12px; }
    .mtermin-past-title { flex: 1 1 auto; }

    /* ---- Liedtexte-Listen: mobil entzerren ---- */
    .mlied-kat-head { padding: 14px 16px; gap: 10px; }
    .mlied-kat-head h2 { font-size: 16px; }
    .mlied-kat-desc { padding: 12px 16px 0; }
    .mlied-list { padding: 0; }
    .mlied-item {
      flex-wrap: wrap;
      gap: 6px 12px;
      padding: 14px 16px;
    }
    .mlied-no { width: 32px; font-size: 21px; }
    .mlied-item-icon { width: 32px; height: 40px; }
    .mlied-item-body { flex: 1 1 0; min-width: 0; }
    .mlied-item-body strong {
      font-size: 15px; line-height: 1.3;
      white-space: normal; overflow: visible; text-overflow: clip;
    }
    /* Aktionen in eine eigene, volle Zeile – „Ansehen" füllt die Breite */
    .mlied-actions { flex: 1 0 100%; gap: 8px; margin-top: 2px; }
    .mlied-view { flex: 1; justify-content: center; padding: 11px 14px; }
    .mlied-view span { display: inline; }

    /* ---- Dashboard: weniger gequetscht ---- */
    .mdash-section { padding: 22px 16px; }
    .mdash-fav { margin-top: 18px; padding-top: 18px; }

    .mdash-hero { padding: 36px 0 32px; }
    .mpage-top { padding: 36px 0 32px; }
    .mdash-body { padding-top: 32px; padding-bottom: 48px; }
    .member-content { padding-bottom: 60px; }
    .mtermine-wrap { padding-top: 32px; }
    .mlied-wrap { padding-top: 28px; }
  }

  /* ============ ERROR 404 ============ */
  #page-error { background: #0d2a42; }

  .error-scene {
    position: relative;
    height: 100dvh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #0d2a42 0%, #163d5e 35%, #1a5070 65%, #1e5e82 100%);
  }

  /* Stars */
  .error-sky { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  .error-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: eStar ease-in-out infinite;
  }
  @keyframes eStar {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50%       { opacity: 0.15; transform: scale(0.4); }
  }

  /* 404 watermark */
  .error-num {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -62%);
    font-size: clamp(140px, 26vw, 300px);
    font-weight: 600;
    line-height: 1;
    color: rgba(255,255,255,0.045);
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
  }

  /* Text content */
  .error-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--paper);
    padding: 0 24px;
    transform: translateY(-10vh);
  }
  .error-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
  }
  .error-heading {
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.1;
  }
  .error-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(251,248,241,0.65);
    margin-bottom: 36px;
    max-width: 400px;
    margin-left: auto; margin-right: auto;
    line-height: 1.6;
  }

  /* Ship */
  .error-ship-wrap {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    width: clamp(140px, 20vw, 200px);
    animation: shipBob 5s ease-in-out infinite;
    transform-origin: center bottom;
  }
  @keyframes shipBob {
    0%   { transform: translateX(-50%) translateY(0)   rotate(-1.5deg); }
    22%  { transform: translateX(-50%) translateY(-9px) rotate(1deg);   }
    50%  { transform: translateX(-50%) translateY(-5px) rotate(2deg);   }
    72%  { transform: translateX(-50%) translateY(-11px) rotate(-0.5deg); }
    100% { transform: translateX(-50%) translateY(0)   rotate(-1.5deg); }
  }
  .error-ship { display: block; width: 100%; height: auto; }

  /* Waves */
  .error-waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    z-index: 4;
  }
  .error-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: auto 100%;
  }
  .error-wave--back {
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 100'%3E%3Cpath d='M0,55 C200,15 400,95 800,55 L800,100 L0,100 Z' fill='%230e3352'/%3E%3C/svg%3E");
    background-size: 800px 100%;
    animation: waveBack 14s linear infinite;
    opacity: 0.9;
  }
  .error-wave--mid {
    height: 90%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100'%3E%3Cpath d='M0,60 C150,20 300,90 600,60 L600,100 L0,100 Z' fill='%23144062'/%3E%3C/svg%3E");
    background-size: 600px 100%;
    animation: waveMid 9s linear infinite reverse;
  }
  .error-wave--front {
    height: 72%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath d='M0,65 C100,30 200,85 400,65 L400,100 L0,100 Z' fill='%231a4e72'/%3E%3C/svg%3E");
    background-size: 400px 100%;
    animation: waveFront 6s linear infinite;
  }
  @keyframes waveBack  { from { background-position: 0 0; } to { background-position: 800px 0; } }
  @keyframes waveMid   { from { background-position: 0 0; } to { background-position: 600px 0; } }
  @keyframes waveFront { from { background-position: 0 0; } to { background-position: 400px 0; } }

  /* Shanty floor */
  .error-floor {
    background: #0d2a42;
    text-align: center;
    padding: 36px 24px 56px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .error-shanty {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2.5vw, 22px);
    font-style: italic;
    color: rgba(251,248,241,0.35);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
  }

  @media (max-width: 620px) {
    .error-content { transform: translateY(-8vh); }
    .error-ship-wrap { bottom: 26px; width: 130px; }
    .error-waves { height: 116px; }
    .error-wave--back  { background-size: 400px 100%; animation: waveBackM  14s linear infinite; }
    .error-wave--mid   { background-size: 300px 100%; animation: waveMidM    9s linear infinite reverse; }
    .error-wave--front { background-size: 200px 100%; animation: waveFrontM  6s linear infinite; }
    @keyframes waveBackM  { from { background-position: 0 0; } to { background-position: 400px 0; } }
    @keyframes waveMidM   { from { background-position: 0 0; } to { background-position: 300px 0; } }
    @keyframes waveFrontM { from { background-position: 0 0; } to { background-position: 200px 0; } }
  }

  /* ============================================================
     Mitglieder: „Neu"-Badge, Profilseite, Erinnerungen
     ============================================================ */

  /* „Neu"-Badge am Mitglieder-Link (Haupt-Navi, hell) */
  .nav-badge {
    display: inline-block; text-align: center;
    margin-left: 7px; padding: 3px 7px 2px;
    font-size: 9.5px; font-weight: 700; line-height: 1;
    letter-spacing: 0.12em; text-transform: uppercase;
    /* letter-spacing erzeugt rechts vom letzten Buchstaben Leerraum –
       gleicher Betrag links (text-indent) gleicht das aus, damit „neu"
       mittig sitzt. Auf inline-block (Block-Container) wirkt text-indent
       zuverlässig – auf Flex-Items war es browserabhängig instabil. */
    text-indent: 0.12em;
    background: var(--blue); color: #fff; border-radius: 9px;
    vertical-align: middle;
  }
  /* im dunklen Mobile-Menü etwas heller absetzen */
  .mobile-member-btn .nav-badge { background: var(--blue); color: #fff; }

  /* kleiner Punkt am Flaschenpost-Eintrag in der Member-Bar */
  .mbar-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue); flex-shrink: 0; margin-left: 2px;
    box-shadow: 0 0 0 3px rgba(61,126,166,0.25);
  }

  /* Member-Bar: Nutzerblock ist jetzt ein Link zum Profil */
  a.mbar-user { text-decoration: none; color: inherit; border-radius: 6px;
    padding: 4px 6px; margin-right: -6px; transition: background .2s; }
  a.mbar-user:hover { background: rgba(255,255,255,0.06); }
  a.mbar-user.is-active .mbar-avatar { box-shadow: 0 0 0 2px rgba(251,248,241,0.6); }

  /* Erfolgsmeldung (grün) – Ergänzung zu .member-msg--warn/--err */
  .member-msg--ok { border-color: #2e7d52; color: #1f6b44; background: rgba(46,125,82,0.07); }

  /* ---- Profilseite ---- */
  .mprofil-wrap {
    max-width: 720px; padding-top: 36px;
    display: flex; flex-direction: column; gap: 28px;
  }
  .mprofil-wrap .mdash-section { margin: 0; }

  .mprofil-data {
    display: grid; grid-template-columns: 1fr; gap: 0;
    margin: 4px 0 0;
  }
  .mprofil-data > div {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line);
  }
  .mprofil-data > div:last-child { border-bottom: none; }
  .mprofil-data dt {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
  }
  .mprofil-data dd { font-size: 16px; color: var(--ink); text-align: right; word-break: break-word; }
  .mprofil-muted { color: var(--muted); font-style: italic; }

  .mprofil-note { margin-top: 14px; font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; }
  .mprofil-note--warn { color: #7a5200; }

  .mprofil-form { margin-top: 4px; }
  .mprofil-btn { max-width: 280px; }

  /* Toggle-Schalter für Erinnerungen */
  .mprofil-toggle {
    display: flex; align-items: flex-start; gap: 14px;
    cursor: pointer; margin-bottom: 22px;
  }
  .mprofil-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
  .mprofil-toggle-box {
    position: relative; flex-shrink: 0; margin-top: 2px;
    width: 46px; height: 26px; border-radius: 13px;
    background: var(--line); transition: background .2s;
  }
  .mprofil-toggle-box::after {
    content: ""; position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    transition: transform .2s;
  }
  .mprofil-toggle input:checked + .mprofil-toggle-box { background: var(--blue); }
  .mprofil-toggle input:checked + .mprofil-toggle-box::after { transform: translateX(20px); }
  .mprofil-toggle input:focus-visible + .mprofil-toggle-box { box-shadow: 0 0 0 3px rgba(61,126,166,0.25); }
  .mprofil-toggle input:disabled + .mprofil-toggle-box { opacity: .5; }
  .mprofil-toggle-text { display: flex; flex-direction: column; gap: 3px; }
  .mprofil-toggle-text strong { font-size: 15px; font-weight: 500; color: var(--ink); }
  .mprofil-toggle-text small { font-size: 13px; color: var(--muted); font-weight: 300; }

  .mlogin-btn.mprofil-btn:disabled { opacity: .5; cursor: not-allowed; }

  .mprofil-logout { text-align: center; padding-top: 4px; }
  .mprofil-logout-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); transition: color .2s;
  }
  .mprofil-logout-link svg { width: 16px; height: 16px; }
  .mprofil-logout-link:hover { color: #b5462f; }

  /* ---- Cookie-Consent: YouTube-Platzhalter ---- */
  .yt-consent {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; text-align: center;
    background: linear-gradient(135deg, #0f2536 0%, #1d3c52 100%);
    color: #fff;
  }
  .yt-consent-inner { max-width: 440px; }
  .yt-consent svg {
    width: 46px; height: 46px; display: block; margin: 0 auto 14px;
    color: var(--blue); opacity: .95;
  }
  .yt-consent-text {
    margin: 0 0 18px; font-size: 14px; line-height: 1.6;
    color: rgba(255, 255, 255, .82);
  }
  .yt-consent-btn {
    appearance: none; cursor: pointer;
    border: 0; border-radius: 8px;
    background: var(--blue); color: #fff;
    font: inherit; font-size: 14px; font-weight: 600;
    padding: 11px 22px;
    transition: background .2s, transform .1s;
  }
  .yt-consent-btn:hover { background: #4f93bb; }
  .yt-consent-btn:active { transform: translateY(1px); }
  .yt-consent-link {
    display: inline-block; margin-top: 14px;
    font-size: 12px; color: rgba(255, 255, 255, .7);
    text-decoration: underline;
  }
  .yt-consent-link:hover { color: #fff; }

  /* ---- Cookie-Consent: Banner ---- */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    background: #fff; border-top: 3px solid var(--navy);
    box-shadow: 0 -8px 30px rgba(15, 37, 54, .18);
    transform: translateY(110%); transition: transform .35s ease;
  }
  .cookie-banner.show { transform: none; }
  .cookie-banner[hidden] { display: none; }
  .cookie-inner {
    max-width: 1100px; margin: 0 auto;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px 28px; flex-wrap: wrap;
  }
  .cookie-text { flex: 1 1 360px; min-width: 0; }
  .cookie-text strong {
    display: block; margin-bottom: 4px;
    font-size: 15px; color: var(--navy);
  }
  .cookie-text p {
    margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted);
  }
  .cookie-text a { color: var(--blue); text-decoration: underline; }
  .cookie-actions {
    display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
  }
  .cookie-btn {
    appearance: none; cursor: pointer;
    border-radius: 8px; font: inherit; font-size: 14px; font-weight: 600;
    padding: 10px 22px; transition: background .2s, color .2s, border-color .2s;
  }
  .cookie-btn--solid { border: 1px solid var(--navy); background: var(--navy); color: #fff; }
  .cookie-btn--solid:hover { background: #1d3c52; border-color: #1d3c52; }
  .cookie-btn--ghost { border: 1px solid var(--line); background: transparent; color: var(--muted); }
  .cookie-btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
  @media (max-width: 560px) {
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1 1 auto; }
  }
