/* ============================================================
       CSS VARIABLES
    ============================================================ */
    :root {
      /* Vereinsfarben (CI): Weiß · Karminrot · Königsblau */
      --blue:       #1B3A8A;
      --blue-dark:  #112570;
      --blue-light: #2B52C8;
      --blue-pale:  #EEF2FA;

      --red:        #CC1033;
      --red-dark:   #A00828;
      --red-light:  #E8203F;

      /* Akzentfarbe: Karminrot – ersetzt das frühere Gold */
      --accent:       #CC1033;
      --accent-light: #FF5A72;
      --accent-dark:  #A00828;

      /* Gold: nur noch für Jubiläums-Elemente */
      --gold:       #C9A84C;
      --gold-light: #E0C06E;
      --gold-dark:  #9E7F33;

      /* Dunkle Hintergründe: dunkel-navy */
      --dark:       #0C1829;
      --dark-2:     #131E3A;
      --dark-3:     #1C2B52;

      --gray:       #555;
      --light-bg:   #F4F6FB;
      --white:      #ffffff;
      --text:       #1a2035;
      --text-light: #5a6480;

      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body:    'Raleway', sans-serif;

      --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
      --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
      --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);

      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --border-radius: 4px;

      --max-width: 1200px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

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

    /* Gold divider */
    .gold-line {
      width: 60px;
      height: 2px;
      background: var(--accent);
      margin: 1.2rem auto 1.8rem;
    }
    .gold-line--left {
      margin-left: 0;
    }

    /* Section labels */
    .section-label {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* Headings */
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
    }
    .section-title--light {
      color: var(--white);
    }

    /* Reveal animation — runs once on load via CSS keyframes.
       fill-mode "both" guarantees content ends fully visible
       even if JS doesn't run, so text is never stuck dark. */
    @keyframes revealIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      animation: revealIn 0.55s cubic-bezier(0.22, 0.8, 0.36, 1) both;
    }
    .reveal-delay-1 { animation-delay: 0.08s; }
    .reveal-delay-2 { animation-delay: 0.16s; }
    .reveal-delay-3 { animation-delay: 0.24s; }
    .reveal-delay-4 { animation-delay: 0.32s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {
        animation: none;
        opacity: 1;
        transform: none;
      }
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem 0;
      transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    }
    .nav.scrolled {
      background: rgba(255, 255, 255, 0.97);
      padding: 1rem 0;
      box-shadow: 0 2px 24px rgba(12,24,41,0.10);
      backdrop-filter: blur(10px);
    }
    .nav__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav__logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .nav__logo-emblem {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav__logo-emblem img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .nav__logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .nav__logo-name {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 0.03em;
    }
    .nav__logo-sub {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .nav__menu {
      display: flex;
      align-items: center;
      gap: 1.6rem;
    }
    .nav__link {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      position: relative;
      transition: color var(--transition);
    }
    .nav__link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--accent);
      transition: width var(--transition);
    }
    .nav__link:hover {
      color: var(--accent);
    }
    .nav__link:hover::after {
      width: 100%;
    }
    .nav__cta {
      padding: 0.55rem 1.2rem;
      background: var(--accent);
      color: var(--white) !important;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: var(--border-radius);
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
      line-height: 1.3;
    }
    .nav__cta::after { display: none; }

    /* Dropdown indicator via CSS */
    .nav__item > .nav__link::after {
      content: ' ▾';
      font-size: 0.6rem;
      opacity: 0.7;
      vertical-align: middle;
    }
    .nav__link { white-space: nowrap; }
    .nav__cta:hover {
      background: var(--accent-light);
      transform: translateY(-1px);
      color: var(--white) !important;
    }

    /* Hamburger */
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav__hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--blue);
      transition: var(--transition);
      transform-origin: center;
    }
    .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .nav__mobile {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }
    .nav__mobile.open {
      display: flex;
      opacity: 1;
      pointer-events: all;
    }
    .nav__mobile-link {
      font-family: var(--font-heading);
      font-size: 2rem;
      color: var(--blue);
      transition: color var(--transition);
    }
    .nav__mobile-link:hover { color: var(--accent); }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--white);
    }

    /* Animated background pattern */
    .hero__bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 55% at 50% 110%, rgba(27, 58, 138, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 10% 0%,   rgba(204, 16, 51, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 90% 10%,  rgba(27, 58, 138, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 50%,  rgba(204,16,51, 0.02) 0%, transparent 70%);
      background-color: var(--white);
    }
    /* Decorative grid overlay */
    .hero__grid { display: none; }
    /* Animated floating particles */
    .hero__particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero__particle {
      position: absolute;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      animation: floatParticle linear infinite;
    }
    @keyframes floatParticle {
      0% { opacity: 0; transform: translateY(0) scale(0); }
      10% { opacity: 0.6; transform: translateY(-5vh) scale(1); }
      90% { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-80vh) scale(0.5); }
    }

    /* Decorative corner elements */
    .hero__corner {
      position: absolute;
      width: 120px;
      height: 120px;
      border-color: rgba(204,16,51, 0.3);
      border-style: solid;
    }
    .hero__corner--tl { top: 60px; left: 60px; border-width: 1px 0 0 1px; }
    .hero__corner--tr { top: 60px; right: 60px; border-width: 1px 1px 0 0; }
    .hero__corner--bl { bottom: 60px; left: 60px; border-width: 0 0 1px 1px; }
    .hero__corner--br { bottom: 60px; right: 60px; border-width: 0 1px 1px 0; }

    .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
      max-width: 1200px;
      width: 100%;
    }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeInDown 0.8s 0.3s ease forwards;
    }
    .hero__label::before,
    .hero__label::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--accent);
      opacity: 0.6;
    }

    .hero__title {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 8vw, 6.5rem);
      font-weight: 800;
      color: var(--blue);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 0.3rem;
      opacity: 0;
      animation: fadeInUp 0.9s 0.5s ease forwards;
    }
    .hero__title em {
      font-style: italic;
      color: var(--accent);
    }
    /* Vereinsschriftzug in Old-English-Schrift, einzeilig */
    .hero__title--blackletter {
      font-family: 'Old English Text MT', 'UnifrakturMaguntia', var(--font-heading);
      font-size: clamp(1rem, 5vw, 4.1rem);
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 1.15;
      white-space: nowrap;
    }

    .hero__subtitle {
      font-family: var(--font-heading);
      font-size: clamp(1.1rem, 2.5vw, 1.8rem);
      font-weight: 400;
      font-style: italic;
      color: var(--text-light);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeInUp 0.9s 0.7s ease forwards;
    }

    .hero__year-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeIn 0.9s 0.9s ease forwards;
    }
    .hero__year-line::before,
    .hero__year-line::after {
      content: '';
      flex: 1;
      max-width: 120px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--accent));
    }
    .hero__year-line::after {
      background: linear-gradient(to left, transparent, var(--accent));
    }
    .hero__year {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.35em;
      color: var(--accent);
      text-transform: uppercase;
    }

    .hero__text {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
      opacity: 0;
      animation: fadeInUp 0.9s 1.0s ease forwards;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeInUp 0.9s 1.2s ease forwards;
    }

    .btn {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: var(--border-radius);
      transition: all var(--transition);
      cursor: pointer;
      border: none;
    }
    .btn--primary {
      background: var(--accent);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .btn--primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .btn--primary:hover {
      background: var(--accent-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(204,16,51, 0.35);
    }
    .btn--primary:hover::after { opacity: 1; }
    .btn--outline {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid rgba(27,58,138,0.4);
    }
    .btn--outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .hero__scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeIn 1s 1.8s ease forwards;
      cursor: pointer;
    }
    .hero__scroll span {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(27,58,138,0.5);
    }
    .hero__scroll-mouse {
      width: 22px;
      height: 36px;
      border: 1.5px solid rgba(27,58,138,0.3);
      border-radius: 11px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .hero__scroll-wheel {
      width: 3px;
      height: 8px;
      background: var(--accent);
      border-radius: 2px;
      animation: scrollWheel 2s ease infinite;
    }
    @keyframes scrollWheel {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(8px); opacity: 0.3; }
    }

    /* Tricolor accent stripe */
    .tricolor {
      height: 5px;
      background: linear-gradient(to right,
        var(--blue)  0%,   var(--blue)  33.3%,
        var(--white) 33.3%, var(--white) 66.6%,
        var(--red)   66.6%, var(--red)  100%
      );
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats {
      background: var(--blue);
      padding: 3rem 0;
    }
    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stats__item {
      text-align: center;
      padding: 1rem 2rem;
      position: relative;
    }
    .stats__item + .stats__item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.15);
    }
    .stats__number {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stats__number sup {
      font-size: 0.5em;
      vertical-align: super;
    }
    .stats__label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    .about {
      padding: 7rem 0;
      background: var(--white);
    }
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about__content { }
    .about__lead {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-style: italic;
      color: var(--red);
      margin-bottom: 1.2rem;
      line-height: 1.6;
    }
    .about__text {
      color: var(--text-light);
      line-height: 1.9;
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
    }
    .about__features {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .about__feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    .about__feature-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: rgba(204,16,51, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about__feature-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--accent);
    }
    .about__feature-text {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.5;
    }
    .about__feature-title {
      font-weight: 700;
      color: var(--text);
      font-size: 0.85rem;
      margin-bottom: 0.15rem;
    }

    /* About visual */
    .about__visual {
      position: relative;
    }
    .about__image-frame {
      position: relative;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--dark-3) 60%, var(--dark) 100%);
      border-radius: 2px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .about__image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    /* Decorative box offset */
    .about__image-frame::after {
      content: '';
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--accent);
      opacity: 0.25;
      border-radius: 2px;
      z-index: -1;
    }
    .about__badge {
      position: absolute;
      bottom: 2rem;
      left: -2rem;
      background: var(--red);
      padding: 1.2rem 1.5rem;
      box-shadow: var(--shadow-md);
      z-index: 2;
    }
    .about__badge-year {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .about__badge-text {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-top: 0.2rem;
    }

    /* ============================================================
       NEWS SECTION
    ============================================================ */
    .news {
      padding: 7rem 0;
      background: var(--light-bg);
    }
    .news__header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .news__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }
    .news__card {
      background: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .news__card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .news__card-image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .news__card-image-bg {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--blue-dark), var(--dark-2));
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition);
    }
    .news__card:hover .news__card-image-bg {
      transform: scale(1.05);
    }
    .news__card-image-bg svg {
      width: 40px;
      height: 40px;
      fill: rgba(204,16,51, 0.35);
    }
    .news__card-tag {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--blue);
      color: var(--white);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border-radius: 2px;
    }
    .news__card-body {
      padding: 1.5rem;
    }
    .news__card-date {
      font-size: 0.7rem;
      color: var(--accent-dark);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }
    .news__card-title {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 0.75rem;
    }
    .news__card-text {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .news__card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      transition: gap var(--transition), color var(--transition);
    }
    .news__card-link:hover {
      gap: 0.7rem;
      color: var(--blue-dark);
    }
    .news__card-link svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }
    .news__footer {
      text-align: center;
      margin-top: 2.5rem;
    }

    /* ============================================================
       EVENTS SECTION
    ============================================================ */
    .events {
      padding: 7rem 0;
      background: var(--light-bg);
      position: relative;
      overflow: hidden;
    }
    .events__bg-pattern { display: none; }
    .events__header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .events__list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .events__card {
      background: var(--white);
      border: 1px solid rgba(27,58,138,0.10);
      border-top: 3px solid var(--red);
      padding: 2rem 1.8rem;
      transition: background var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
    }
    .events__card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(204,16,51, 0.04), transparent);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .events__card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .events__card:hover::before {
      opacity: 1;
    }
    .events__card-date {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(204,16,51, 0.1);
      padding: 0.3rem 0.8rem;
      border-radius: 2px;
      margin-bottom: 1rem;
    }
    .events__card-title {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }
    .events__card-meta {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.2rem;
    }
    .events__card-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      color: var(--text-light);
    }
    .events__card-meta-item svg {
      width: 13px;
      height: 13px;
      fill: var(--accent);
      flex-shrink: 0;
      opacity: 0.7;
    }
    .events__card-price {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent);
    }
    .events__card-price span {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--text-light);
      margin-left: 0.3rem;
    }
    .events__card-free {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .events__footer {
      text-align: center;
      margin-top: 2.5rem;
    }
    .btn--gold-outline {
      background: transparent;
      color: var(--accent);
      border: 1.5px solid var(--accent);
    }
    .btn--gold-outline:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ============================================================
       MEMBERS SECTION
    ============================================================ */
    .members {
      padding: 7rem 0;
      background: var(--white);
    }
    .members__header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .members__header .section-title { margin-bottom: 1rem; }
    .members__intro {
      font-size: 0.95rem;
      color: var(--text-light);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .members__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .members__card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .members__card-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, var(--blue-dark) 0%, var(--dark) 100%);
      transition: transform var(--transition);
    }
    .members__card:hover .members__card-bg {
      transform: scale(1.05);
    }
    .members__card:hover img {
      opacity: 0.65 !important;
    }
    .members__card-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
      width: 80px;
      height: 80px;
      background: rgba(204,16,51, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition), background var(--transition);
    }
    .members__card:hover .members__card-icon {
      transform: translate(-50%, -55%) scale(1.08);
      background: rgba(204,16,51, 0.2);
    }
    .members__card-icon svg {
      width: 36px;
      height: 36px;
      fill: var(--accent);
    }
    .members__card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
      transform: translateY(20px);
      transition: transform var(--transition);
    }
    .members__card:hover .members__card-overlay {
      transform: translateY(0);
    }
    .members__card-title {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .members__card-desc {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }
    .members__card-count {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(204,16,51, 0.15);
      border: 1px solid rgba(204,16,51, 0.3);
      color: var(--accent);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border-radius: 2px;
    }

    /* ============================================================
       JOIN SECTION (CTA)
    ============================================================ */
    .join {
      padding: 7rem 0;
      background: var(--white);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .join::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: none;
    }
    .join__content { position: relative; z-index: 1; }
    .join .section-title {
      color: var(--dark);
      margin-bottom: 1rem;
    }
    .join__text {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 540px;
      margin: 0 auto 3rem;
      line-height: 1.8;
    }
    .join__tiers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      max-width: 820px;
      margin: 0 auto 2.5rem;
    }
    .join__tier {
      background: var(--light-bg);
      border: 1px solid rgba(27,58,138,0.12);
      border-radius: var(--border-radius);
      padding: 2rem 1.5rem;
      transition: background var(--transition), transform var(--transition);
    }
    .join__tier:hover {
      background: var(--white);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .join__tier--highlight {
      background: rgba(204,16,51, 0.05);
      border-color: var(--accent);
    }
    .join__tier-badge {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(204,16,51, 0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 2px;
      margin-bottom: 0.8rem;
    }
    .join__tier-name {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .join__tier-price {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 0.15rem;
    }
    .join__tier-price small {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--text-light);
    }
    .join__tier-desc {
      font-size: 0.78rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-top: 0.5rem;
    }
    .join__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn--white {
      background: var(--blue);
      color: var(--white);
    }
    .btn--white:hover {
      background: var(--blue-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    .btn--white-outline {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid rgba(27,58,138,0.4);
    }
    .btn--white-outline:hover {
      border-color: var(--blue);
      transform: translateY(-2px);
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: var(--dark);
      padding: 4rem 0 0;
    }
    .footer__main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer__brand { }
    .footer__logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.2rem;
    }
    .footer__logo-emblem {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer__logo-emblem img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .footer__logo-name {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
    }
    .footer__logo-sub {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .footer__tagline {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .footer__social {
      display: flex;
      gap: 0.7rem;
    }
    .footer__social-link {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color var(--transition), background var(--transition);
    }
    .footer__social-link:hover {
      border-color: var(--accent);
      background: rgba(204,16,51, 0.1);
    }
    .footer__social-link svg {
      width: 14px;
      height: 14px;
      fill: rgba(255,255,255,0.55);
      transition: fill var(--transition);
    }
    .footer__social-link:hover svg {
      fill: var(--accent);
    }
    .footer__col-title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.2rem;
    }
    .footer__col-links {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer__col-link {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer__col-link::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      transition: opacity var(--transition);
      flex-shrink: 0;
    }
    .footer__col-link:hover {
      color: rgba(255,255,255,0.85);
    }
    .footer__col-link:hover::before {
      opacity: 1;
    }
    .footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-bottom: 0.7rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
    }
    .footer__contact-item svg {
      width: 14px;
      height: 14px;
      fill: var(--accent);
      opacity: 0.7;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .footer__bottom {
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer__copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
    }
    .footer__legal {
      display: flex;
      gap: 1.5rem;
    }
    .footer__legal a {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
      transition: color var(--transition);
    }
    .footer__legal a:hover {
      color: rgba(255,255,255,0.6);
    }

    /* ============================================================
       KEYFRAME ANIMATIONS
    ============================================================ */
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(25px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-15px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .about__inner { gap: 3rem; }
      .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 860px) {
      .stats__grid { grid-template-columns: repeat(2, 1fr); }
      .stats__item:nth-child(3)::before { display: none; }
      .news__grid { grid-template-columns: 1fr 1fr; }
      .events__list { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .members__grid { grid-template-columns: 1fr 1fr; }
      .join__tiers { grid-template-columns: 1fr; max-width: 360px; }
      .about__inner { grid-template-columns: 1fr; }
      .about__visual { max-width: 400px; }
      .about__badge { left: 0; }
    }
    @media (max-width: 640px) {
      .container { padding: 0 1.2rem; }
      .nav__menu { display: none; }
      .nav__hamburger { display: flex; }
      .hero__corner { display: none; }
      .news__grid { grid-template-columns: 1fr; }
      .members__grid { grid-template-columns: 1fr; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); }
      .footer__main { grid-template-columns: 1fr; gap: 1.5rem; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
      .join__tiers { grid-template-columns: 1fr; }
    }
/* ============================================================
   SUBPAGE HERO (kleinerer Header für Unterseiten)
============================================================ */
.page-hero {
  position: relative;
  padding: 9rem 0 4rem;
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(27,58,138,0.08);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 120%, rgba(27,58,138,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 0%,   rgba(204,16,51,0.05) 0%, transparent 60%);
  background-color: var(--white);
}
.page-hero__grid { display: none; }
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
/* Inhalte immer über den ::before-Hintergrund heben */
.page-hero .container { position: relative; z-index: 2; }
.page-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb__sep { opacity: 0.4; }

/* ============================================================
   PAGE CONTENT AREA
============================================================ */
.page-content {
  padding: 5rem 0;
  background: var(--white);
}
.page-content--alt {
  background: var(--light-bg);
}
.content-block {
  max-width: 780px;
  margin: 0 auto;
}
.content-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  line-height: 1.25;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  margin: 2rem 0 0.7rem;
}
.content-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.content-block .lead {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 1.3rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   TWO-COLUMN LAYOUT
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col--wide-left {
  grid-template-columns: 3fr 2fr;
}
.two-col--wide-right {
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 768px) {
  .two-col, .two-col--wide-left, .two-col--wide-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   PHOTO BLOCK (full-width image with caption)
============================================================ */
.photo-block {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-block--portrait { aspect-ratio: 3/4; }
.photo-block--landscape { aspect-ratio: 16/9; }
.photo-block--square { aspect-ratio: 1; }
.photo-block__caption {
  background: var(--dark-2);
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Placeholder for images not yet available */
.photo-placeholder {
  background: linear-gradient(135deg, var(--blue-dark), var(--dark-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 3rem;
  min-height: 200px;
  text-align: center;
}
.photo-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(204,16,51,0.35);
}
.photo-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   TIMELINE (Tanzpaare, Historie)
============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--accent), var(--red));
}
.timeline__item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 3rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -2.55rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline__year {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(204,16,51,0.08);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.timeline__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   PROFILE CARDS (Mariechen, Mitglieder)
============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.profile-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.profile-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--dark));
  position: relative;
}
.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.profile-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(204,16,51,0.3);
}
.profile-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.profile-card__body {
  padding: 1.2rem 1.2rem 1.4rem;
}
.profile-card__role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.3rem;
}
.profile-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.profile-card__info {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   GALLERY GRID
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,24,41,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
}

/* ============================================================
   INFO CARDS / FEATURE BOXES
============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.info-card {
  background: var(--light-bg);
  border: 1px solid rgba(27,58,138,0.1);
  border-top: 3px solid var(--blue);
  padding: 1.8rem 1.5rem;
  border-radius: var(--border-radius);
  transition: box-shadow var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(27,58,138,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.info-card__icon svg { width: 20px; height: 20px; fill: var(--blue); }
.info-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.info-card__text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION DIVIDER
============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3rem 0;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204,16,51,0.3));
}
.section-divider::after {
  background: linear-gradient(to left, transparent, rgba(204,16,51,0.3));
}
.section-divider__icon {
  width: 28px;
  height: 28px;
  fill: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   WAPPEN SECTION
============================================================ */
.wappen-detail {
  background: var(--light-bg);
  border: 1px solid rgba(27,58,138,0.08);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1.5rem 0;
}
.wappen-detail__term {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.3rem;
}
.wappen-detail__def {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================================
   MEMBERSHIP TIERS (Mitglied werden)
============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.tier-card {
  border: 2px solid var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.tier-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tier-card--featured {
  border-color: var(--accent);
  background: linear-gradient(to bottom, rgba(204,16,51,0.04), var(--white));
}
.tier-card__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(204,16,51,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
.tier-card--featured .tier-card__badge {
  background: var(--accent);
  color: var(--white);
}
.tier-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.tier-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.tier-card__price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.2rem;
}
.tier-card__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 0.8rem;
}
@media (max-width: 640px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 340px; margin: 2rem auto; }
}

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(27,58,138,0.15);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,58,138,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCORDION (FAQ, Impressum)
============================================================ */
.accordion {
  border-top: 1px solid rgba(27,58,138,0.1);
}
.accordion__item {
  border-bottom: 1px solid rgba(27,58,138,0.1);
}
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
  transition: color var(--transition);
}
.accordion__header:hover { color: var(--blue); }
.accordion__icon {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion__item.open .accordion__icon { transform: rotate(180deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__body-inner {
  padding-bottom: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.85;
}
.accordion__item.open .accordion__body { max-height: 600px; }

/* ============================================================
   CTA STRIPE (zwischen Seiten)
============================================================ */
.cta-stripe {
  background: var(--blue);
  padding: 3rem 0;
  text-align: center;
}
.cta-stripe__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-stripe__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* ============================================================
   NAV ACTIVE STATE (für Unterseiten)
============================================================ */
.nav__link--active {
  color: var(--accent) !important;
}
.nav__link--active::after {
  width: 100% !important;
}

/* Subpage: nav always dark */
.nav--solid {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(12,24,41,0.10);
}

/* ============================================================
   DROPDOWN NAVIGATION
============================================================ */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  min-width: 200px;
  padding: 18px 0 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.nav__item.dropdown-open .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(27,58,138,0.85);
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
}
.nav__dropdown-link:hover {
  color: var(--accent);
  background: rgba(204,16,51,0.05);
}


/* Dropdown inner box (separates visual from hover area) */
.nav__dropdown-inner {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(204,16,51,0.15);
  border-top: 2px solid var(--accent);
  padding: 0.5rem 0;
  backdrop-filter: blur(10px);
}

/* ============================================================
   MEMBERSHIP CARDS (Mitglied werden)
============================================================ */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.membership-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(12,24,41,0.08);
  border: 1px solid rgba(12,24,41,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(12,24,41,0.14);
}
.membership-card--featured {
  border: 2px solid var(--blue);
  box-shadow: 0 14px 40px rgba(27,58,138,0.18);
}
.membership-card__header {
  padding: 1.6rem 1.8rem 1.2rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid rgba(12,24,41,0.06);
}
.membership-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark);
  margin: 0 0 .35rem;
  font-weight: 700;
}
.membership-card__price {
  font-size: 1.05rem;
  color: var(--blue);
  font-weight: 700;
  margin: 0;
  letter-spacing: .02em;
}
.membership-card__body {
  padding: 1.4rem 1.8rem 1.8rem;
  flex: 1;
}
.membership-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.membership-card__list li {
  position: relative;
  padding: .55rem 0 .55rem 1.6rem;
  font-size: .95rem;
  color: #2a3344;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(12,24,41,0.08);
}
.membership-card__list li:last-child { border-bottom: none; }
.membership-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .55rem;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   EVENT TABLE — Kategorie column
============================================================ */
.events-table th.col-cat,
.events-table td.col-cat {
  text-align: center;
  width: 130px;
  white-space: nowrap;
}
.events-table .badge {
  display: inline-block;
  min-width: 92px;
  text-align: center;
}

/* ============================================================
   GENERIC PAGE BLOCKS — section spacing, headings, prose
============================================================ */
main h1, main h2, main h3, main h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}
main h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
main h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
main p { color: #2a3344; }
main a:not(.nav__link):not(.footer__col-link):not(.archive-item):not([class*="btn"]) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
main a:hover { color: var(--blue-dark); }

.section {
  padding: 4rem 0;
}
.section + .section { padding-top: 0; }

/* ============================================================
   CARD GRID (used on aktuelles, index, others)
============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12,24,41,0.08);
  border: 1px solid rgba(12,24,41,0.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(12,24,41,0.14); }
.card__header {
  padding: 1.5rem 1.6rem;
  background: var(--blue);
  color: #fff;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.card__body {
  padding: 1.4rem 1.6rem 1.6rem;
  flex: 1;
}
.card__body p { line-height: 1.65; color: #2a3344; }

/* ============================================================
   HIGHLIGHT BOX (e.g. Jubiläumssaison)
============================================================ */
.highlight-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(27,58,138,0.25);
}
.highlight-box--jubilee { border: 2px solid var(--gold); }
.highlight-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(201,168,76,0.15), transparent 60%);
  pointer-events: none;
}
.highlight-box__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-bottom: .8rem;
  position: relative;
}
.highlight-box__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.highlight-box__event {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  position: relative;
}
.highlight-box__event h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .5rem;
}
.highlight-box__date {
  color: var(--gold-light);
  font-weight: 600;
  margin: .25rem 0;
}
.highlight-box__location {
  color: rgba(255,255,255,0.8);
  font-size: .95rem;
}

/* ============================================================
   SPONSORS GRID
============================================================ */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sponsor-card {
  background: #fff;
  border: 1px solid rgba(12,24,41,0.08);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  box-shadow: 0 6px 20px rgba(12,24,41,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(12,24,41,0.12);
}
.sponsor-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}
.partner-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  margin-top: 4rem;
  text-align: center;
}
.partner-cta h2 {
  color: #fff !important;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.partner-cta p { color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto; }
.partner-cta a { color: #fff !important; text-decoration: underline !important; text-underline-offset: 3px; }

/* ============================================================
   LEGAL CONTENT (Impressum, Datenschutz)
============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--dark);
  border-bottom: 2px solid var(--accent);
  padding-bottom: .4rem;
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.legal-content p { color: #2a3344; line-height: 1.75; }

/* ============================================================
   EVENTS TABLE / SECTION
============================================================ */
.events-section {
  padding: 4rem 0;
  background: var(--light-bg);
}
.events-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.events-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(12,24,41,0.1);
  font-size: .95rem;
}
.events-table thead {
  background: var(--dark);
  color: #fff;
}
.events-table th {
  padding: 1rem 1.1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  color: var(--accent);
}
.events-table td {
  padding: .95rem 1.1rem;
  border-bottom: 1px solid rgba(12,24,41,0.07);
  color: #2a3344;
  vertical-align: middle;
}
.events-table tbody tr:last-child td { border-bottom: none; }
.events-table tbody tr:hover td { background: var(--blue-pale); }
.events-table .gala-row td {
  background: linear-gradient(90deg, rgba(204,16,51,0.16), rgba(204,16,51,0.06));
  font-weight: 600;
}
.events-table .gala-row:hover td {
  background: linear-gradient(90deg, rgba(204,16,51,0.24), rgba(204,16,51,0.10));
}
.badge {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge--members {
  background: rgba(27,58,138,0.12);
  color: var(--blue);
  border: 1px solid rgba(27,58,138,0.25);
}
.badge--public {
  background: rgba(204,16,51,0.18);
  color: var(--accent-dark);
  border: 1px solid rgba(204,16,51,0.45);
}

/* ============================================================
   GALA CARD (Veranstaltungen hero card)
============================================================ */
.gala-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12,24,41,0.35);
  margin: 2rem auto;
  max-width: 1000px;
}
.gala-card h2 { color: var(--gold); position: relative; }
.gala-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(201,168,76,0.18), transparent 50%);
  pointer-events: none;
}
.gala-card__label {
  display: inline-block;
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.gala-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1.4rem;
  position: relative;
}
.gala-card__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem 2rem;
  margin: 1.5rem 0;
  position: relative;
}
.gala-card__meta-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.gala-card__meta-value {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}
.gala-card__badge {
  display: inline-block;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
}

/* ============================================================
   INFO CARD
============================================================ */
.info-card { padding: 4rem 0; }
.info-card__box {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(12,24,41,0.08);
  border: 1px solid rgba(12,24,41,0.06);
}
.info-card__box h2 {
  margin-bottom: 1rem;
}
.info-card__text {
  color: #2a3344;
  line-height: 1.75;
}

/* ============================================================
   HISTORY / WAPPEN sections
============================================================ */
.history-section, .wappen-section { padding: 4rem 0; }
.wappen-content {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .wappen-content { grid-template-columns: 1fr; }
}
.wappen-emblem { text-align: center; }
.wappen-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(12,24,41,0.15);
}
.wappen-credit {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: .8rem;
  font-style: italic;
}
.wappen-text p { margin-bottom: 1rem; line-height: 1.8; }
.wappen-source {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  background: var(--light-bg);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: .9rem;
  color: var(--text-light);
}

/* breadcrumb on light pages */
main > .breadcrumb,
.breadcrumb {
  background: var(--blue-pale);
  padding: .9rem 0;
  color: var(--text-light);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-dark); }

/* Safety net: any heading inside the light page-hero must be readable */
.page-hero h1, .page-hero h2, .page-hero h3,
.page-hero .section-title { color: var(--blue) !important; }
.page-hero p { color: var(--text-light) !important; }

/* ============================================================
   SESSIONSORDEN GRID
============================================================ */
.orden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}
.orden-card {
  background: #fff;
  border: 1px solid rgba(12,24,41,0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(12,24,41,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.orden-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12,24,41,0.14);
}
.orden-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8f5f0;
  display: block;
  padding: 1rem;
}
.orden-card figcaption {
  padding: 0.75rem 1rem 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  border-top: 1px solid rgba(12,24,41,0.06);
  background: #fff;
}

/* ============================================================
   MOBILE FIXES (overrides)
============================================================ */
@media (max-width: 860px) {
  /* Hamburger sichtbar machen schon ab Tablet */
  .nav__menu { display: none !important; }
  .nav__hamburger { display: flex !important; }
}

@media (max-width: 860px) {
  /* Mobile-Menü scrollbar + obere Ausrichtung statt Mitte */
  .nav__mobile {
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 5.5rem 1.5rem 2.5rem;
    gap: 0.25rem !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__mobile-link {
    font-size: 1.4rem !important;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(27,58,138,0.12);
    text-align: left;
    display: block;
    width: 100%;
  }
  .nav__mobile-group {
    border-bottom: 1px solid rgba(27,58,138,0.12);
  }
  .nav__mobile-group > summary {
    list-style: none;
    cursor: pointer;
    border-bottom: none !important;
    position: relative;
    padding-right: 2rem;
  }
  .nav__mobile-group > summary::-webkit-details-marker { display: none; }
  .nav__mobile-group > summary::after {
    content: "+";
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform var(--transition);
  }
  .nav__mobile-group[open] > summary::after { content: "−"; }
  .nav__mobile-sublink {
    display: block;
    padding: 0.65rem 0.5rem 0.65rem 1.5rem;
    color: rgba(27,58,138,0.8);
    font-size: 1rem;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
  }
  .nav__mobile-sublink:hover,
  .nav__mobile-sublink:active { color: var(--accent); }
}

@media (max-width: 640px) {
  /* Container etwas mehr Luft */
  .container { padding: 0 1rem; }

  /* Page-Hero kompakter */
  .page-hero { padding: 6.5rem 0 2.5rem !important; }
  .page-hero__title { font-size: 1.9rem !important; line-height: 1.2; }
  .page-hero__desc { font-size: 0.95rem !important; }
  .hero__title, h1 { word-break: break-word; }

  /* Hero auf Smartphones nicht ganzer Viewport */
  .hero { min-height: auto; padding: 7rem 0 3rem; }

  /* Section Padding reduzieren */
  .section { padding: 2.5rem 0 !important; }
  .section-title { font-size: 1.5rem !important; }

  /* Historische Porträtfotos: vollständig sichtbar (contain), kompakt */
  .members-gallery img,
  .photo-grid img,
  .card img,
  [class*="grid"] > div img,
  [class*="grid"] > article img,
  div[style*="text-align: center"] > img,
  div[style*="text-align:center"] > img {
    height: 320px !important;
    max-height: 320px !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #f4efe4;
    border-radius: 8px;
    padding: 0.4rem;
  }

  /* Charlotte-Spotlight & ähnliche 2-Spalten-Inline-Grids → 1 Spalte */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1.2fr"],
  div[style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Spotlight-Foto Charlotte: contain + moderate Höhe */
  img[alt*="Charlotte Terkatz"] {
    max-height: 380px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Ex-Prinzen/Mariechen/Tanzpaare-Karten: Single Column */
  .members-gallery,
  .photo-grid,
  .card-grid,
  .events__list,
  .news__grid,
  .members__grid,
  .stats__grid {
    grid-template-columns: 1fr !important;
  }

  /* Tabellen scrollbar machen */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Lange Wörter umbrechen */
  p, li, h1, h2, h3, h4 { overflow-wrap: anywhere; }

  /* Footer in einer Spalte */
  .footer__main { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Timeline einspaltig */
  .timeline__item--left, .timeline__item--right { width: 100% !important; padding-left: 2.5rem !important; padding-right: 0 !important; left: 0 !important; }

  /* Orden-Grid kleinere Karten */
  .orden-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important; gap: 1rem; }

  /* Mitgliedschaftskarten */
  .membership-grid { grid-template-columns: 1fr !important; }

  /* Buttons immer voll lesbar */
  .btn, button { white-space: normal !important; }
}

@media (max-width: 640px) {
  /* Charlotte Spotlight: Bild zuerst, dann Text */
  section[style*="padding: 4rem 0"] > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  /* Aktuelle Tollität-Spotlight (prinzenkomitee) gleiches Muster */
  .profile-card { grid-template-columns: 1fr !important; }

  /* Inline 4rem Section-Padding kürzen */
  section[style*="padding: 4rem 0"] { padding: 2.5rem 0 !important; }
  section[style*="padding: 5rem 0"] { padding: 2.8rem 0 !important; }
  section[style*="padding: 6rem 0"] { padding: 3rem 0 !important; }

  /* Section-Title links/zentriert: Größe runter */
  h2[class*="section-title"] { font-size: 1.45rem !important; }

  /* Textgrößen in inline-Styles dämpfen */
  p[style*="font-size: 1.1rem"] { font-size: 0.98rem !important; line-height: 1.65 !important; }
  p[style*="font-size: 1.05rem"] { font-size: 0.95rem !important; }

  /* Page-Hero Padding noch etwas tighter */
  .page-hero .breadcrumb { font-size: 0.8rem; }
  .page-hero__label { font-size: 0.75rem !important; }

  /* Sessionsorden Karten: Bilder ohne Riesenhöhe */
  .orden-card img {
    aspect-ratio: 1 / 1;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    padding: 0.6rem;
  }

  /* Tabelle Veranstaltungen lesbar */
  .events-table th, .events-table td { font-size: 0.85rem; padding: 0.5rem 0.6rem; }

  /* Komitee/Kommandantur Karten */
  .gala-card, .info-card__box, .highlight-box { padding: 1.25rem !important; }

  /* Reduce gigantic margins from inline styles */
  div[style*="margin-bottom: 3rem"] { margin-bottom: 1.5rem !important; }
  div[style*="margin-bottom: 2.5rem"] { margin-bottom: 1.25rem !important; }
}

@media (max-width: 640px) {
  /* Grußwort & alle Fließtext-Seiten: Seitenabstand garantieren */
  main .container,
  main > .container { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  blockquote,
  .grusswort-content,
  main p { padding-left: 0.25rem; padding-right: 0.25rem; }

  /* Inline padding: 0 entfernen, das Container randlos macht */
  div[style*="padding: 0 2rem"],
  div[style*="padding: 0 3rem"] { padding-left: 1rem !important; padding-right: 1rem !important; }
}

/* ============================================================
   GLOBAL MOBILE NORMALIZATION (Phase 2)
============================================================ */
@media (max-width: 720px) {
  /* Jegliches Inline-Grid → 1 Spalte */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  /* Aber: kleine Mini-Grids (Daten/Stat-Boxen) als 2 Spalten erlauben falls sie eine Klasse tragen */
  .stats__grid[style*="grid-template-columns"],
  .info-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Display:flex inline mit row → wrap erlauben */
  [style*="display: flex"][style*="row"],
  [style*="display:flex"][style*="row"] {
    flex-wrap: wrap !important;
  }

  /* Übergroße inline padding einstampfen */
  [style*="padding: 3.5rem"],
  [style*="padding: 3rem"],
  [style*="padding:3rem"],
  [style*="padding:3.5rem"] { padding: 1.5rem !important; }
  [style*="padding: 4rem"],
  [style*="padding:4rem"] { padding: 1.75rem !important; }
  [style*="padding: 5rem"],
  [style*="padding:5rem"] { padding: 2rem !important; }

  /* Übergroße inline margin */
  [style*="margin-bottom: 4rem"] { margin-bottom: 1.5rem !important; }
  [style*="margin-bottom: 3.5rem"] { margin-bottom: 1.25rem !important; }
  [style*="margin-top: 4rem"] { margin-top: 1.5rem !important; }
  [style*="margin-top: 3rem"] { margin-top: 1.25rem !important; }

  /* Inline gap groß → klein */
  [style*="gap: 3rem"] { gap: 1.25rem !important; }
  [style*="gap: 2.5rem"] { gap: 1.25rem !important; }
  [style*="gap: 2rem"] { gap: 1.25rem !important; }

  /* Inline max-width Boxen sollen volle Breite nutzen */
  [style*="max-width: 1000px"],
  [style*="max-width: 1200px"],
  [style*="max-width:1200px"],
  [style*="max-width:1000px"],
  [style*="max-width: 800px"] { max-width: 100% !important; }

  /* Schriftgrößen aus Inline-Styles dämpfen */
  [style*="font-size: 1.3rem"] { font-size: 1.05rem !important; }
  [style*="font-size: 1.25rem"] { font-size: 1.02rem !important; }
  [style*="font-size: 1.2rem"] { font-size: 1rem !important; }
  [style*="font-size: 1.15rem"] { font-size: 0.98rem !important; }
  [style*="font-size: 1.1rem"] { font-size: 0.97rem !important; }
  [style*="font-size: 2rem"] { font-size: 1.3rem !important; }
  [style*="font-size: 2.5rem"] { font-size: 1.5rem !important; }
  [style*="font-size: 3rem"] { font-size: 1.7rem !important; }

  /* Inline border-radius Riesen → passend */
  [style*="border-radius: 16px"],
  [style*="border-radius: 12px"] { border-radius: 8px !important; }

  /* Karten mit weißem Inline-bg sollen Padding haben */
  [style*="background: white"],
  [style*="background:#fff"],
  [style*="background: #fff"] {
    padding: 1.25rem !important;
    border-radius: 8px !important;
  }

  /* Iframes / Maps responsiv */
  iframe { max-width: 100% !important; height: auto; min-height: 250px; }

  /* Tabellen Überschriften weicher umbrechen */
  th, td { word-break: normal; overflow-wrap: anywhere; }
}

/* Auch auf Tablets (≤860px) sollten 3-Spalten-Inline-Grids
   bereits zu 2 Spalten/1 Spalte werden */
@media (max-width: 860px) and (min-width: 721px) {
  [style*="repeat(3, 1fr)"],
  [style*="repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ============================================================
   VERANSTALTUNGSTABELLE – Mobile Card Layout
============================================================ */
@media (max-width: 720px) {
  .events-table,
  .events-table tbody,
  .events-table tr,
  .events-table td { display: block !important; width: 100% !important; }
  .events-table { border: none !important; box-shadow: none !important; }
  .events-table thead { display: none !important; }
  .events-table tr {
    background: #fff !important;
    border: 1px solid rgba(12,24,41,0.08) !important;
    border-left: 4px solid var(--accent) !important;
    border-radius: 8px !important;
    margin-bottom: 0.9rem !important;
    padding: 0.9rem 1rem !important;
    box-shadow: 0 2px 8px rgba(12,24,41,0.05) !important;
  }
  .events-table tr.gala-row {
    border-left-color: var(--red) !important;
    background: #fffaf0 !important;
  }
  .events-table td {
    padding: 0.25rem 0 !important;
    border: none !important;
    text-align: left !important;
    font-size: 0.92rem !important;
    color: var(--dark) !important;
  }
  /* Datum prominent */
  .events-table td:nth-child(1) {
    font-weight: 700 !important;
    color: var(--blue) !important;
    font-size: 0.88rem !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  /* Uhrzeit inline neben Datum: " · 19:30" */
  .events-table td:nth-child(2) {
    display: inline-block !important;
    width: auto !important;
    margin-left: 0.5rem !important;
    font-weight: 600 !important;
    color: var(--blue) !important;
    font-size: 0.88rem !important;
  }
  .events-table td:nth-child(2)::before { content: "· "; opacity: 0.6; }
  /* Veranstaltungsname groß */
  .events-table td:nth-child(3) {
    font-family: var(--font-heading);
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin: 0.35rem 0 0.5rem !important;
    color: var(--dark) !important;
  }
  /* Kategorie-Badge */
  .events-table td.col-cat { padding: 0.15rem 0 0.4rem !important; }
  .events-table td.col-cat .badge { font-size: 0.72rem; }
  /* Ort mit Pin-Icon */
  .events-table td:nth-child(5) {
    color: var(--dark-3) !important;
    font-size: 0.88rem !important;
  }
  .events-table td:nth-child(5)::before {
    cont