*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #1a2535;
      --navy2:   #243347;
      --ocean:   #2d5a7b;
      --teal:    #3a7d9e;
      --sand:    #e8d9bc;
      --rope:    #c9a96e;
      --cream:   #f5ede0;
      --wood:    #8b5c2a;
      --rust:    #b5451b;
      --white:   #fdf8f2;
    }

    html { scroll-behavior: smooth; }

    a,
    a:link,
    a:visited {
      color: inherit;
      text-decoration: none;
    }

    body {
      background: var(--navy);
      color: var(--cream);
      font-family: 'Crimson Pro', serif;
      font-size: 18px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 3rem;
      background: linear-gradient(to bottom, rgba(26,37,53,0.97) 0%, transparent 100%);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      backdrop-filter: blur(4px);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--rope);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--sand);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--rope); }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 40%, rgba(13,27,42,0.7) 80%, rgba(13,27,42,0.95) 100%),
        url("../images/hero-bg.jpg") center 60% / cover no-repeat;
    }


    .hero-content {
      position: relative;
      z-index: 2;
      animation: fade-up 1s ease-out both;
    }

    .hero-emblem {
      width: 110px;
      height: 110px;
      margin: 0 auto 2rem;
      border: 2px solid var(--rope);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(13,27,42,0.75);
      box-shadow: 0 0 40px rgba(201,169,110,0.15), inset 0 0 30px rgba(0,0,0,0.3);
      animation: fade-up 1s 0.2s ease-out both;
    }

    .hero-emblem svg {
      width: 64px;
      height: 64px;
      fill: var(--rope);
      opacity: 0.9;
    }

    .hero-eyebrow {
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--rope);
      margin-bottom: 1rem;
      animation: fade-up 1s 0.3s ease-out both;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 9vw, 7rem);
      font-weight: 900;
      line-height: 1;
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 0.2em;
      animation: fade-up 1s 0.4s ease-out both;
    }

    .hero-title em {
      font-style: italic;
      color: var(--rope);
    }

    .hero-subtitle {
      font-family: 'Libre Baskerville', serif;
      font-style: italic;
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      color: var(--sand);
      opacity: 0.8;
      margin-bottom: 3rem;
      letter-spacing: 0.04em;
      animation: fade-up 1s 0.55s ease-out both;
    }

    .hero-cta {
      display: inline-block;
      padding: 0.9em 2.8em;
      border: 1.5px solid var(--rope);
      color: var(--rope);
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      background: transparent;
      transition: background 0.25s, color 0.25s;
      animation: fade-up 1s 0.7s ease-out both;
    }
    .hero-cta:hover {
      background: var(--rope);
      color: var(--navy);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.4;
      animation: fade-up 1s 1.2s ease-out both;
      text-align: center;
      width: 60px;
      margin-left: -30px;
    }
    .hero-scroll span {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--sand);
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--rope), transparent);
      animation: scroll-pulse 2s ease-in-out infinite;
    }
    @keyframes scroll-pulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── DIVIDER ─── */
    .rope-divider {
      height: 2px;
      background: repeating-linear-gradient(
        90deg,
        transparent 0px, transparent 4px,
        rgba(201,169,110,0.4) 4px, rgba(201,169,110,0.4) 10px
      );
      margin: 0;
    }

    /* ─── SECTIONS COMMON ─── */
    section {
      padding: 6rem 2rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--rope);
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    .section-title em {
      font-style: italic;
      color: var(--rope);
    }

    /* ─── ÜBER UNS ─── */
    .about {
      background: var(--navy2);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-text p {
      color: var(--sand);
      opacity: 0.85;
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
    }

    .about-visual {
      position: relative;
    }

    .about-frame {
      width: 100%;
      aspect-ratio: 3/4;
      border: 1px solid rgba(201,169,110,0.25);
      background: linear-gradient(135deg, rgba(45,90,123,0.3) 0%, rgba(26,37,53,0.8) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-frame::before {
      content: '';
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(201,169,110,0.12);
    }

    .about-frame-content {
      text-align: center;
      color: rgba(201,169,110,0.3);
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.9rem;
    }

    .about-frame-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.25;
    }

    .corner-ornament {
      position: absolute;
      width: 24px; height: 24px;
      border-color: rgba(201,169,110,0.4);
      border-style: solid;
    }
    .corner-ornament.tl { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
    .corner-ornament.tr { top: 6px; right: 6px; border-width: 2px 2px 0 0; }
    .corner-ornament.bl { bottom: 6px; left: 6px; border-width: 0 0 2px 2px; }
    .corner-ornament.br { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }

    .stats-row {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(201,169,110,0.15);
    }

    .stat { }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--rope);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.6;
      margin-top: 0.3rem;
    }

    /* ─── NEWS ─── */
    .news {
      background: var(--navy);
    }

    .news-header {
      margin-bottom: 3rem;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .news-grid--related {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .news-card {
      background: linear-gradient(160deg, rgba(26,37,53,0.95) 0%, rgba(13,27,42,0.8) 100%);
      border: 1px solid rgba(201,169,110,0.12);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .news-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--rope), transparent);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .news-card:hover {
      border-color: rgba(201,169,110,0.3);
      transform: translateY(-3px);
    }
    .news-card:hover::before { transform: scaleX(1); }

    .news-card-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .news-date {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: var(--sand);
      opacity: 0.5;
      text-transform: uppercase;
    }

    .news-tag {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25em 0.75em;
      border: 1px solid rgba(201,169,110,0.25);
      color: var(--rope);
    }

    .news-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
    }

    .news-card-title a,
    .news-card-title a:link,
    .news-card-title a:visited {
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s;
    }

    .news-card-title a:hover {
      color: var(--rope);
    }

    .news-card-text {
      font-size: 0.95rem;
      color: var(--sand);
      opacity: 0.7;
      line-height: 1.65;
      flex: 1;
    }

    .news-card-media {
      display: block;
      margin: -2rem -2rem 0;
      overflow: hidden;
      aspect-ratio: 16 / 9;
    }
    .news-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .news-card:hover .news-card-media img { transform: scale(1.04); }

    .news-read-more {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--rope);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,169,110,0.3);
      padding-bottom: 2px;
      align-self: flex-start;
      transition: border-color 0.2s;
    }
    .news-read-more:hover { border-color: var(--rope); }

    /* ─── AKTIVITÄTEN ─── */
    .activities {
      background: var(--navy2);
    }

    .activities-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .card {
      background: linear-gradient(160deg, rgba(36,51,71,0.9) 0%, rgba(26,37,53,0.95) 100%);
      border: 1px solid rgba(201,169,110,0.12);
      padding: 2.5rem 2rem;
      position: relative;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--rope), transparent);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(201,169,110,0.3);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .card:hover::before { transform: scaleX(1); }

    .card-icon {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      display: block;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.8rem;
    }

    .card-text {
      font-size: 0.95rem;
      color: var(--sand);
      opacity: 0.7;
      line-height: 1.65;
    }

    .card--photo {
      padding: 0;
    }

    .card-media {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .card-media::after {
      content: none;
    }

    .card--photo:hover .card-media img {
      transform: scale(1.05);
    }

    .card-media--placeholder {
      background: linear-gradient(135deg, rgba(45,90,123,0.5) 0%, rgba(26,37,53,0.8) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-media-initial {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--rope);
      opacity: 0.5;
    }

    .card--photo .card-title {
      padding: 1.2rem 1.5rem 0.5rem;
    }

    .card--photo .card-text {
      padding: 0 1.5rem 1.5rem;
    }

    /* ─── MITGLIEDSCHAFT ─── */
    .membership {
      background: var(--navy2);
      position: relative;
      overflow: hidden;
    }

    .membership::before {
      content: '';
      position: absolute;
      right: -10%;
      top: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(45,90,123,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .membership-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .membership-perks {
      list-style: none;
      margin-top: 2rem;
    }

    .membership-perks li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(201,169,110,0.1);
      color: var(--sand);
      font-size: 1rem;
    }

    .membership-perks li:last-child { border-bottom: none; }

    .perk-icon {
      color: var(--rope);
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .membership-form-area {
      background: rgba(13,27,42,0.6);
      border: 1px solid rgba(201,169,110,0.18);
      padding: 3rem 2.5rem;
      position: relative;
    }

    .membership-form-area::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--rope), transparent);
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .form-subtitle {
      font-size: 0.9rem;
      color: var(--sand);
      opacity: 0.6;
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rope);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      background: rgba(26,37,53,0.8);
      border: 1px solid rgba(201,169,110,0.2);
      color: var(--white);
      font-family: 'Crimson Pro', serif;
      font-size: 1rem;
      padding: 0.75rem 1rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--rope);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(232,217,188,0.25);
    }

    .form-group textarea { resize: vertical; min-height: 80px; }

    .form-submit {
      width: 100%;
      padding: 1em;
      background: var(--rope);
      color: var(--navy);
      border: none;
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, opacity 0.2s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: #ddb97a; }

    .form-group--checkbox {
      margin-top: 0.5rem;
    }

    .checkbox-label {
      display: flex !important;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
      text-transform: none !important;
      letter-spacing: 0 !important;
      color: var(--sand) !important;
      font-size: 0.85rem !important;
      line-height: 1.55;
    }

    .checkbox-label input[type="checkbox"] {
      width: auto;
      flex-shrink: 0;
      margin-top: 0.2rem;
      accent-color: var(--rope);
      cursor: pointer;
    }

    .checkbox-label a {
      color: var(--rope);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .form-success,
    .form-error {
      color: var(--sand);
      border: 1px solid rgba(201,169,110,0.25);
      padding: 0.8rem 1rem;
      margin-bottom: 1.2rem;
      font-size: 0.9rem;
    }

    /* ─── VERANSTALTUNGEN ─── */
    .events {
      background: var(--navy2);
    }

    .events-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    .events-link {
      color: var(--rope);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(201,169,110,0.3);
      padding-bottom: 2px;
      transition: border-color 0.2s;
    }
    .events-link:hover { border-color: var(--rope); }

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .event-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      align-items: center;
      gap: 2rem;
      padding: 1.8rem 0;
      border-bottom: 1px solid rgba(201,169,110,0.1);
      transition: padding-left 0.25s;
    }
    .event-item:first-child { border-top: 1px solid rgba(201,169,110,0.1); }
    .event-item:hover { padding-left: 1rem; }

    .event-date {
      text-align: center;
    }
    .event-date-day {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--rope);
      line-height: 1;
    }
    .event-date-month {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.5;
    }

    .event-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 0.2rem;
    }
    .event-meta {
      font-size: 0.85rem;
      color: var(--sand);
      opacity: 0.5;
    }


    /* ─── FOOTER ─── */
    footer {
      background: #0d1b2a;
      border-top: 1px solid rgba(201,169,110,0.12);
      padding: 4rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(201,169,110,0.1);
      margin-bottom: 2rem;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--rope);
      margin-bottom: 1rem;
    }

    .footer-desc {
      font-size: 0.9rem;
      color: var(--sand);
      opacity: 0.5;
      line-height: 1.8;
    }

    .footer-heading {
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--rope);
      margin-bottom: 1.2rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .footer-links a {
      color: var(--sand);
      opacity: 0.55;
      text-decoration: none;
      font-size: 0.9rem;
      transition: opacity 0.2s, color 0.2s;
    }
    .footer-links a:hover { opacity: 1; color: var(--rope); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--sand);
      opacity: 0.3;
    }

    .footer-rope {
      height: 3px;
      margin-bottom: 3rem;
      background: repeating-linear-gradient(
        90deg,
        rgba(201,169,110,0.3) 0px, rgba(201,169,110,0.3) 6px,
        rgba(139,92,42,0.3) 6px, rgba(139,92,42,0.3) 12px
      );
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── NAV LOGO LINK ─── */
    .nav-logo {
      text-decoration: none;
    }

    /* ─── MOBILE BURGER ─── */
    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--rope);
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: rgba(13,27,42,0.98);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(201,169,110,0.2);
      z-index: 99;
      padding: 1.5rem 2rem;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; }
    .mobile-menu ul li { border-bottom: 1px solid rgba(201,169,110,0.08); }
    .mobile-menu ul li a {
      display: block;
      padding: 1rem 0;
      color: var(--sand);
      text-decoration: none;
      font-size: 0.9rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      transition: color 0.2s;
    }
    .mobile-menu ul li a:hover { color: var(--rope); }

    /* ─── VORSTAND PANEL ─── */
    .vorstand-panel {
      background: linear-gradient(160deg, rgba(36,51,71,0.9) 0%, rgba(26,37,53,0.95) 100%);
      border: 1px solid rgba(201,169,110,0.18);
      padding: 2.5rem;
      position: relative;
    }
    .vorstand-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--rope), transparent);
    }
    .vorstand-header {
      margin-bottom: 1.8rem;
    }
    .vorstand-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-top: 0.3rem;
    }
    .vorstand-title em { font-style: italic; color: var(--rope); }
    .vorstand-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .vorstand-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }
    .vorstand-item:last-child { border-bottom: none; }
    .vorstand-role {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.55;
    }
    .vorstand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--white);
      font-weight: 600;
    }
    .vorstand-footer {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(201,169,110,0.12);
    }
    .vorstand-footer p {
      font-size: 0.82rem;
      color: var(--sand);
      opacity: 0.45;
      letter-spacing: 0.05em;
      margin-bottom: 0.3rem;
    }
    .vorstand-footer p::before {
      content: '· ';
      color: var(--rope);
      opacity: 1;
    }

    /* ─── GASTLIEGER TEASER ─── */
    .gastlieger-teaser {
      background: var(--navy);
    }
    .gastlieger-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .gastlieger-info-header {
      margin-bottom: 1.8rem;
    }
    .gastlieger-info-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-top: 0.3rem;
    }
    .gastlieger-info-title em { font-style: italic; color: var(--rope); }
    .gastlieger-facts {
      list-style: none;
      margin-top: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .gastlieger-facts li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }
    .gastlieger-facts li:last-child { border-bottom: none; }
    .gast-label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.55;
    }
    .gast-value {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--white);
      font-weight: 600;
      text-align: right;
    }
    .gast-value-hint {
      font-size: 0.7rem;
      font-weight: 400;
      color: var(--sand);
      opacity: 0.55;
      font-family: inherit;
    }

    .gastlieger-info-box {
      background: linear-gradient(160deg, rgba(36,51,71,0.9) 0%, rgba(26,37,53,0.95) 100%);
      border: 1px solid rgba(201,169,110,0.18);
      padding: 2.5rem;
      position: sticky;
      top: 100px;
    }
    .gastlieger-info-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--rope), transparent);
    }
    .info-box-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--rope);
      margin-bottom: 0.6rem;
      letter-spacing: 0.04em;
    }
    .gastlieger-info-box p {
      font-size: 0.92rem;
      color: var(--sand);
      opacity: 0.75;
      margin-bottom: 0.5rem;
      line-height: 1.65;
    }
    .info-highlight {
      display: inline-block;
      padding: 0.3em 0.8em;
      border: 1px solid rgba(201,169,110,0.3);
      color: var(--rope) !important;
      opacity: 1 !important;
      font-size: 0.85rem !important;
      letter-spacing: 0.1em;
      margin-top: 0.3rem;
    }
    .info-box-divider {
      height: 1px;
      background: rgba(201,169,110,0.12);
      margin: 1.2rem 0;
    }

    /* ─── WETTER-WIDGET ─── */
    .wetter-card {
      margin-top: 2.5rem;
      background: linear-gradient(160deg, rgba(36,51,71,0.9) 0%, rgba(26,37,53,0.95) 100%);
      border: 1px solid rgba(201,169,110,0.18);
      padding: 2.5rem;
      position: relative;
    }
    .wetter-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--rope), transparent);
    }
    .wetter-card-head {
      margin-bottom: 1.8rem;
    }
    .wetter-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      margin-top: 0.3rem;
    }
    .wetter-title em { font-style: italic; color: var(--rope); }
    .wetter-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .wetter-metric {
      padding: 1rem 1.5rem 1rem 0;
      border-right: 1px solid rgba(201,169,110,0.12);
    }
    .wetter-metric:last-child { border-right: none; padding-right: 0; }
    .wetter-metric + .wetter-metric { padding-left: 1.5rem; }
    .wetter-metric--primary .wetter-metric-value { font-size: 2rem; }
    .wetter-metric-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.55;
      margin-bottom: 0.4rem;
    }
    .wetter-metric-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .wetter-metric-value span {
      font-size: 0.7em;
      font-weight: 400;
      color: var(--rope);
      margin-left: 0.15em;
    }
    .wetter-metric-foot {
      font-size: 0.78rem;
      color: var(--sand);
      opacity: 0.6;
      margin-top: 0.4rem;
    }
    .wetter-source {
      font-size: 0.72rem;
      color: var(--sand);
      opacity: 0.4;
      margin-top: 1.5rem;
      letter-spacing: 0.05em;
    }
    @media (max-width: 600px) {
      .wetter-grid { grid-template-columns: 1fr; }
      .wetter-metric { border-right: none; padding: 0.8rem 0; border-bottom: 1px solid rgba(201,169,110,0.1); }
      .wetter-metric:last-child { border-bottom: none; }
      .wetter-metric + .wetter-metric { padding-left: 0; }
    }

    /* ─── SUBPAGE HERO ─── */
    .subpage-hero {
      background: linear-gradient(to bottom, rgba(13,27,42,0.85) 0%, rgba(26,37,53,0.95) 100%),
                  url("../images/hero-bg.jpg") center 40% / cover no-repeat;
      padding: 10rem 2rem 5rem;
      text-align: center;
      position: relative;
    }
    .subpage-hero .section-label { display: block; margin-bottom: 0.6rem; }
    .subpage-hero .section-title { margin-bottom: 0; }

    /* ─── NEWS DETAIL BILD ─── */
    .news-detail-img {
      margin: 0 0 2.5rem;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201,169,110,0.22);
      box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,169,110,0.08);
    }
    .news-detail-img::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      z-index: 2;
      background: linear-gradient(90deg, transparent, var(--rope) 30%, var(--rope) 70%, transparent);
    }
    .news-detail-img::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--navy2));
      pointer-events: none;
      z-index: 1;
    }
    .news-detail-img img {
      width: 100%;
      display: block;
      max-height: 460px;
      object-fit: cover;
      object-position: center;
    }

    /* ─── IMPRESSUM / PROSE ─── */
    .prose-section {
      background: var(--navy2);
    }
    .prose-section + .prose-section { background: var(--navy); }
    .prose-grid {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 4rem;
      align-items: start;
    }
    .prose-sidebar {
      position: sticky;
      top: 100px;
    }
    .prose-nav {
      list-style: none;
    }
    .prose-nav li { margin-bottom: 0.5rem; }
    .prose-nav a {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.5;
      text-decoration: none;
      transition: opacity 0.2s, color 0.2s;
    }
    .prose-nav a:hover { opacity: 1; color: var(--rope); }

    .prose-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--rope);
      margin-bottom: 0.8rem;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(201,169,110,0.12);
    }
    .prose-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .prose-content p {
      font-size: 0.98rem;
      color: var(--sand);
      opacity: 0.8;
      margin-bottom: 1rem;
      line-height: 1.75;
    }
    .prose-content a {
      color: var(--rope);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .prose-content ul {
      list-style: disc;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
    .prose-content ul li {
      font-size: 0.98rem;
      color: var(--sand);
      opacity: 0.8;
      margin-bottom: 0.4rem;
      line-height: 1.65;
    }

    /* ─── ADMIN ─── */
    .admin-body {
      background: #0d1b2a;
      color: var(--cream);
      font-family: 'Crimson Pro', serif;
      font-size: 17px;
      min-height: 100vh;
    }
    .admin-login {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 2rem;
    }
    .admin-login-box {
      background: rgba(36,51,71,0.9);
      border: 1px solid rgba(201,169,110,0.2);
      padding: 3rem;
      width: 100%;
      max-width: 400px;
      text-align: center;
    }
    .admin-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--rope);
      margin-bottom: 0.3rem;
    }
    .admin-subtitle {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.4;
      margin-bottom: 2rem;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 880px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .about-inner, .membership-inner, .gastlieger-inner { grid-template-columns: 1fr; gap: 3rem; }
      .cards-grid { grid-template-columns: 1fr; margin-top: 3rem; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .events-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .event-item { grid-template-columns: 60px 1fr; }
      .stats-row { flex-wrap: wrap; gap: 1.5rem; }
      .prose-grid { grid-template-columns: 1fr; }
      .prose-sidebar { position: static; }
      .gastlieger-info-box { position: static; }
    }

    @media (max-height: 880px) {
      .hero-scroll { display: none; }
    }

    /* =====================================================
       ADMIN-BEREICH
       ===================================================== */

    body.admin-body {
      background: #0d1b2a;
      color: var(--cream);
      font-size: 16px;
    }
    body.admin-body::before { display: none; }
    body.admin-body nav:not(.admin-nav),
    body.admin-body .mobile-menu,
    body.admin-body footer { display: none; }

    .admin-topbar {
      background: linear-gradient(180deg, #142033 0%, #0d1b2a 100%);
      border-bottom: 1px solid rgba(201,169,110,0.18);
      padding: 0.9rem 2rem;
      position: sticky;
      top: 0;
      z-index: 50;
    }
    .admin-topbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2rem;
      align-items: center;
    }
    .admin-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--rope);
      text-decoration: none;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }
    .admin-brand-mark { height: 28px; width: auto; display: block; }
    .admin-nav {
      position: static;
      background: none;
      border: none;
      backdrop-filter: none;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      gap: 1.6rem;
      align-items: center;
    }
    .admin-nav a {
      color: var(--cream);
      opacity: 0.7;
      text-decoration: none;
      font-size: 0.95rem;
      padding: 0.35rem 0;
      border-bottom: 2px solid transparent;
      transition: opacity 0.2s, border-color 0.2s;
    }
    .admin-nav a:hover { opacity: 1; }
    .admin-nav a.is-active {
      opacity: 1;
      color: var(--rope);
      border-bottom-color: var(--rope);
    }
    .admin-user {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-size: 0.9rem;
    }
    .admin-user-name { color: var(--sand); }
    .admin-user-logout { color: var(--cream); opacity: 0.7; text-decoration: none; }
    .admin-user-logout:hover { opacity: 1; color: var(--rust); }

    .admin-main {
      min-height: calc(100vh - 120px);
      padding: 2.5rem 2rem;
    }
    .admin-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .admin-footer {
      border-top: 1px solid rgba(201,169,110,0.15);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: rgba(245,237,224,0.5);
    }

    .admin-h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.4rem;
    }
    .admin-h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--rope);
      margin: 2rem 0 1rem;
    }
    .admin-h2-muted { color: rgba(245,237,224,0.55); }
    .admin-lead { color: rgba(245,237,224,0.7); margin-bottom: 2rem; }
    .admin-muted { color: rgba(245,237,224,0.55); font-size: 0.88rem; }

    .admin-page-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    /* Stats */
    .admin-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .admin-stat {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,169,110,0.18);
      border-radius: 6px;
      padding: 1.2rem 1.4rem;
      text-decoration: none;
      color: var(--cream);
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .admin-stat:hover { border-color: var(--rope); background: rgba(255,255,255,0.05); }
    .admin-stat-label { font-size: 0.82rem; color: rgba(245,237,224,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
    .admin-stat-value { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--rope); }
    .admin-stat.is-highlight { border-color: var(--rust); background: rgba(181,69,27,0.1); }
    .admin-stat.is-highlight .admin-stat-value { color: var(--rust); }

    /* Grid für Dashboard-Panels */
    .admin-grid2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 1.5rem;
    }
    .admin-panel {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 6px;
      padding: 1.5rem;
    }
    .admin-panel-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 1rem;
    }
    .admin-panel-head h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--sand);
      font-weight: 700;
    }

    .admin-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .admin-list li {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      padding-bottom: 0.6rem;
      border-bottom: 1px dashed rgba(201,169,110,0.12);
    }
    .admin-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .admin-list a {
      color: var(--cream);
      text-decoration: none;
      flex: 1;
    }
    .admin-list a:hover { color: var(--rope); }
    .admin-list-meta {
      font-size: 0.82rem;
      color: rgba(245,237,224,0.55);
      white-space: nowrap;
      display: inline-flex;
      gap: 0.4rem;
      align-items: center;
    }

    /* Tabellen */
    .admin-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 6px;
      overflow: hidden;
    }
    .admin-table th,
    .admin-table td {
      padding: 0.8rem 1rem;
      text-align: left;
      border-bottom: 1px solid rgba(201,169,110,0.08);
      vertical-align: top;
    }
    .admin-table th {
      background: rgba(0,0,0,0.25);
      color: var(--sand);
      font-weight: 600;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .admin-table tr:last-child td { border-bottom: none; }
    .admin-table tr:hover td { background: rgba(255,255,255,0.02); }
    .admin-table-muted { opacity: 0.7; }
    .admin-row-new td { background: rgba(201,169,110,0.05); }

    .admin-thumb {
      width: 64px;
      height: 48px;
      object-fit: cover;
      border-radius: 3px;
      border: 1px solid rgba(201,169,110,0.25);
    }

    .admin-actions { white-space: nowrap; }
    .admin-actions > .admin-inline-form { margin-left: 1rem; }
    .admin-inline-form { display: inline; margin: 0; padding: 0; }
    .admin-inline-form-wide { display: inline-flex; gap: 0.5rem; align-items: center; }
    .admin-inline-label {
      display: inline-flex;
      gap: 0.5rem;
      align-items: center;
      font-size: 0.9rem;
      color: rgba(245,237,224,0.7);
    }

    .admin-link {
      background: none;
      border: none;
      color: var(--rope);
      text-decoration: none;
      cursor: pointer;
      font-family: inherit;
      font-size: inherit;
      padding: 0;
    }
    .admin-link:hover { color: var(--sand); text-decoration: underline; }
    .admin-link-danger { color: #e57373; }
    .admin-link-danger:hover { color: #ff5a5a; }

    /* Badges */
    .admin-badge {
      display: inline-block;
      padding: 0.15rem 0.55rem;
      border-radius: 3px;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
      background: rgba(255,255,255,0.08);
      color: var(--cream);
    }
    .admin-badge-neu         { background: rgba(181,69,27,0.25);  color: #f3a583; }
    .admin-badge-gelesen     { background: rgba(201,169,110,0.2); color: var(--rope); }
    .admin-badge-beantwortet { background: rgba(58,125,158,0.25); color: #8bc1dc; }
    .admin-badge-kontakt     { background: rgba(232,217,188,0.12); color: var(--sand); }

    /* Statistik-Chart */
    .stat-chart {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 140px;
      padding: 0 0.5rem 0;
      margin-top: 1rem;
    }

    .stat-bar-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
      gap: 4px;
      cursor: default;
    }

    .stat-bar {
      width: 100%;
      background: var(--ocean);
      border-radius: 3px 3px 0 0;
      min-height: 2px;
      transition: background 0.15s;
    }

    .stat-bar-wrap:hover .stat-bar { background: var(--rope); }

    .stat-bar-val {
      font-size: 0.6rem;
      color: var(--rope);
      min-height: 1em;
      line-height: 1;
    }

    .stat-bar-label {
      font-size: 0.62rem;
      color: rgba(245,237,224,0.35);
      white-space: nowrap;
    }

    /* Statistik-Tabelle */
    .stat-table {
      width: 100%;
      border-collapse: collapse;
    }

    .stat-table th {
      padding: 0.5rem 0.75rem;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--rope);
      border-bottom: 1px solid rgba(201,169,110,0.2);
      font-weight: 600;
    }

    .stat-table td {
      padding: 0.6rem 0.75rem;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(201,169,110,0.07);
      color: var(--cream);
    }

    .stat-table code {
      font-size: 0.85rem;
      color: var(--sand);
      background: rgba(255,255,255,0.05);
      padding: 0.1em 0.4em;
      border-radius: 3px;
    }

    /* Formulare */
    .admin-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      max-width: 760px;
    }
    .admin-label {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      font-size: 0.9rem;
      color: rgba(245,237,224,0.8);
    }
    .admin-label span { font-weight: 600; letter-spacing: 0.02em; }
    .admin-form input[type=text],
    .admin-form input[type=email],
    .admin-form input[type=password],
    .admin-form input[type=date],
    .admin-form input[type=time],
    .admin-form input[type=number],
    .admin-form textarea,
    .admin-form select {
      width: 100%;
      padding: 0.7rem 0.9rem;
      background: rgba(0,0,0,0.25);
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: 4px;
      color: var(--cream);
      font-family: inherit;
      font-size: 1rem;
    }
    .admin-form input:focus,
    .admin-form textarea:focus,
    .admin-form select:focus {
      outline: none;
      border-color: var(--rope);
      background: rgba(0,0,0,0.4);
    }
    .admin-form textarea { resize: vertical; min-height: 90px; font-family: 'Crimson Pro', serif; line-height: 1.6; }
    .admin-form input[type=file] {
      padding: 0.5rem;
      background: rgba(0,0,0,0.2);
      border: 1px dashed rgba(201,169,110,0.25);
      border-radius: 4px;
      color: var(--cream);
    }
    .admin-row-2 {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
    }
    .admin-form-actions {
      display: flex;
      gap: 0.8rem;
      align-items: center;
      margin-top: 0.5rem;
    }
    .admin-fieldset {
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 6px;
      padding: 1rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .admin-fieldset legend {
      padding: 0 0.5rem;
      color: var(--sand);
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .admin-current-image {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .admin-current-image img {
      max-width: 220px;
      height: auto;
      border-radius: 4px;
      border: 1px solid rgba(201,169,110,0.2);
    }
    .admin-checkbox {
      display: inline-flex;
      gap: 0.5rem;
      align-items: center;
      font-size: 0.88rem;
      color: rgba(245,237,224,0.75);
    }

    /* Alerts */
    .admin-alert {
      padding: 0.9rem 1.1rem;
      border-radius: 4px;
      margin-bottom: 1.5rem;
      border-left: 3px solid;
      font-size: 0.95rem;
    }
    .admin-alert-ok    { background: rgba(58,125,158,0.1);  border-color: var(--teal);  color: #8bc1dc; }
    .admin-alert-error { background: rgba(181,69,27,0.12); border-color: var(--rust);  color: #f3a583; }
    .admin-alert ul { padding-left: 1.2rem; }

    /* Login-Seite */
    /* Login-Hintergrund */
    .login-page { overflow: hidden; }
    .login-bg {
      position: fixed;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,20,35,0.6) 0%, rgba(10,20,35,0.5) 40%, rgba(10,20,35,0.75) 100%),
        url('/images/hero-bg.jpg') center 55% / cover no-repeat;
      z-index: 0;
    }

    .admin-login-wrap {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .admin-login-card {
      background: rgba(13, 27, 42, 0.72);
      border: 1px solid rgba(201,169,110,0.25);
      border-radius: 12px;
      padding: 2.8rem 2.4rem 2.2rem;
      width: 100%;
      max-width: 400px;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,169,110,0.12);
      text-align: center;
    }

    /* Emblem */
    .login-emblem {
      width: 86px;
      height: 86px;
      margin: 0 auto 1.4rem;
      border: 2px solid var(--rope);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10,20,35,0.6);
      box-shadow: 0 0 32px rgba(201,169,110,0.12);
    }
    .login-emblem img {
      width: 46px;
      height: auto;
    }

    .admin-login-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.65rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.2rem;
      letter-spacing: 0.01em;
    }
    .admin-login-sub {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--rope);
      margin-bottom: 0;
    }

    .login-divider {
      width: 40px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,169,110,0.5), transparent);
      margin: 1.4rem auto 1.8rem;
    }

    /* Form-Felder linksbündig */
    .admin-login-card .admin-form { text-align: left; }

    /* Login-Button */
    .login-btn {
      width: 100%;
      margin-top: 0.4rem;
      padding: 0.75rem 1rem;
      background: linear-gradient(135deg, var(--rope) 0%, var(--wood) 100%);
      color: var(--navy);
      border: none;
      border-radius: 6px;
      font-family: 'Crimson Pro', serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }
    .login-btn:hover { opacity: 0.88; transform: translateY(-1px); }
    .login-btn:active { transform: translateY(0); }

    .admin-btn-wide { width: 100%; }
    .admin-btn-danger { border-color: var(--rust); color: #f3a583; }
    .admin-btn-danger:hover { background: rgba(181,69,27,0.15); }
    .admin-login-foot { margin-top: 1.6rem; text-align: center; font-size: 0.85rem; }
    .admin-login-foot a { color: rgba(201,169,110,0.65); text-decoration: none; transition: color 0.2s; }
    .admin-login-foot a:hover { color: var(--rope); }

    .admin-empty {
      padding: 2rem;
      text-align: center;
      color: rgba(245,237,224,0.55);
      background: rgba(0,0,0,0.15);
      border-radius: 6px;
      border: 1px dashed rgba(201,169,110,0.15);
    }
    .admin-empty a { color: var(--rope); text-decoration: underline; }

    /* Filter-Chips */
    .admin-filter {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      margin-bottom: 0.8rem;
      flex-wrap: wrap;
      font-size: 0.9rem;
    }
    .admin-filter strong { color: var(--sand); font-weight: 600; margin-right: 0.3rem; }
    .admin-chip {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border: 1px solid rgba(201,169,110,0.18);
      border-radius: 999px;
      color: var(--cream);
      text-decoration: none;
      font-size: 0.82rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .admin-chip:hover { border-color: var(--rope); }
    .admin-chip.is-active { background: var(--rope); color: var(--navy); border-color: var(--rope); }

    /* Detail-Ansicht Posteingang */
    .admin-detail {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 6px;
      padding: 1.8rem 2rem;
      max-width: 860px;
    }
    .admin-detail-meta {
      display: flex;
      gap: 0.6rem;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .admin-dl {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 0.4rem 1.2rem;
      margin-bottom: 1.5rem;
    }
    .admin-dl dt { color: rgba(245,237,224,0.55); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; padding-top: 0.15rem; }
    .admin-dl dd { color: var(--cream); }
    .admin-dl dd a { color: var(--rope); text-decoration: none; }
    .admin-dl dd a:hover { color: var(--sand); }
    .admin-nachricht {
      background: rgba(0,0,0,0.2);
      border-left: 3px solid var(--rope);
      padding: 1rem 1.2rem;
      border-radius: 0 4px 4px 0;
      margin-bottom: 1.5rem;
    }
    .admin-nachricht h3 {
      font-family: 'Playfair Display', serif;
      color: var(--sand);
      font-size: 1rem;
      margin-bottom: 0.6rem;
    }
    .admin-nachricht p { line-height: 1.7; color: var(--cream); }
    .admin-detail-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      padding-top: 1rem;
      border-top: 1px solid rgba(201,169,110,0.12);
    }

    @media (max-width: 760px) {
      .admin-topbar-inner { grid-template-columns: 1fr; gap: 1rem; }
      .admin-nav { overflow-x: auto; padding-bottom: 0.3rem; }
      .admin-user { justify-content: flex-start; }
      .admin-main { padding: 1.5rem 1rem; }
      .admin-dl { grid-template-columns: 1fr; gap: 0.1rem 0; }
      .admin-dl dt { margin-top: 0.8rem; }
      .admin-row-2 { grid-template-columns: 1fr; }
      .admin-table th,
      .admin-table td { padding: 0.6rem 0.5rem; font-size: 0.88rem; }
      .stat-chart { gap: 2px; }
      .stat-bar-label { display: none; }
    }