      /* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
      :root {
        --void: #09080a;
        --deep: #0e0d10;
        --coal: #141318;
        --iron: #1e1c24;
        --zinc: #2c2a35;
        --ash: #7c7989;
        --mist: #a8a5b4;
        --silver: #d4d1e0;
        --ivory: #ede8dc;
        --ember: #e07820;
        --flame: #f59b30;
        --glow: #ffc85a;
        --pine: #2c5014;
        --moss: #3e6e20;
        --terra: #8b3e1a;

        --fd: "Fraunces", Georgia, serif;
        --fb: "Sora", sans-serif;
        --ease: cubic-bezier(0.16, 1, 0.3, 1);
      }

      /* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }
      body {
        font-family: var(--fb);
        background: var(--void);
        color: var(--ivory);
        line-height: 1.6;
        overflow-x: hidden;
      }
      body::before {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 200px 200px;
        opacity: 0.025;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: overlay;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        max-width: 100%;
        display: block;
      }
      .skip-link {
        position: absolute;
        top: -100px;
        left: 1rem;
        z-index: 10001;
        background: var(--ember);
        color: var(--void);
        padding: 0.75rem 1.25rem;
        border-radius: 6px;
        font-family: var(--fb);
        font-weight: 600;
        transition: top 0.2s var(--ease);
      }
      .skip-link:focus {
        top: 1rem;
      }

      /* ═══════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════ */
      .cur-dot {
        width: 22px;
        height: 22px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        pointer-events: none;
        transform: translate(-50%, -50%);
        filter: drop-shadow(0 0 5px rgba(224, 120, 32, 0.65));
        transition:
          filter 0.2s,
          transform 0.25s;
      }
      .cur-dot svg {
        display: block;
        width: 100%;
        height: 100%;
      }
      .cur-ring {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(224, 120, 32, 0.45);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition:
          width 0.3s,
          height 0.3s,
          border-color 0.3s;
      }
      body.hov .cur-dot {
        transform: translate(-50%, -50%) scale(1.5);
        filter: drop-shadow(0 0 9px rgba(224, 120, 32, 1));
      }
      body.hov .cur-ring {
        width: 56px;
        height: 56px;
        border-color: rgba(224, 120, 32, 0.75);
      }

      /* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
      #nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3rem;
        transition:
          background 0.4s var(--ease),
          border-bottom 0.4s;
      }
      #nav.scrolled {
        background: rgba(9, 8, 10, 0.94);
        -webkit-backdrop-filter: blur(20px) saturate(1.6);
        backdrop-filter: blur(20px) saturate(1.6);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }

      .nav-brand {
        display: flex;
        align-items: center;
        gap: 0.9rem;
      }

      /* DPSG logo inline SVG */
      .nav-svg-wrap {
        width: 48px;
        height: 19px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
      }
      .nav-svg-wrap svg {
        width: 100%;
        height: auto;
      }

      .nav-brand-text {
        font-family: var(--fd);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--ivory);
      }
      .nav-brand-text small {
        display: block;
        font-family: var(--fb);
        font-size: 0.6rem;
        font-weight: 400;
        color: var(--ash);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-top: 1px;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 0.1rem;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.76rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--ash);
        padding: 0.45rem 0.8rem;
        border-radius: 4px;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--ivory);
      }
      .nav-links .nav-cta {
        color: var(--ember);
        border: 1px solid rgba(224, 120, 32, 0.3);
        border-radius: 100px;
        padding: 0.4rem 0.95rem;
        margin-left: 0.4rem;
      }
      .nav-links .nav-cta:hover {
        background: var(--ember);
        color: var(--void);
        border-color: var(--ember);
      }

      .nav-burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 6px;
      }
      .nav-burger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--mist);
        transition: all 0.3s;
      }

      .mob-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 499;
        background: rgba(9, 8, 10, 0.97);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.25rem 3rem;
        flex-direction: column;
        gap: 0.2rem;
      }
      .mob-menu.open {
        display: flex;
      }
      .mob-menu a {
        font-size: 0.88rem;
        color: var(--mist);
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: color 0.2s;
      }
      .mob-menu a:hover {
        color: var(--ivory);
      }

      /* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
      #hero {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 3rem 5.5rem;
      }

      .hero-bg-img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url("./assets/images/gallery/img022.jpg");
        background-size: cover;
        background-position: center 40%;
        filter: brightness(0.35) saturate(0.7);
      }

      .hero-bg-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(
          to top,
          rgba(9, 8, 10, 1) 0%,
          rgba(9, 8, 10, 0.8) 25%,
          rgba(9, 8, 10, 0.3) 55%,
          rgba(9, 8, 10, 0.1) 80%,
          rgba(9, 8, 10, 0.2) 100%
        );
      }

      .hero-bg-fire {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: radial-gradient(
          ellipse at 50% 100%,
          rgba(80, 30, 5, 0.7) 0%,
          transparent 65%
        );
      }

      /* embers */
      .embers {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .ember {
        position: absolute;
        bottom: -20px;
        border-radius: 50%;
        background: var(--ember);
        box-shadow: 0 0 6px 2px rgba(224, 120, 32, 0.5);
        animation: rise linear infinite;
      }
      @keyframes rise {
        0% {
          opacity: 0;
          transform: translateX(0) translateY(0) scale(1);
        }
        10% {
          opacity: 1;
        }
        85% {
          opacity: 0.5;
        }
        100% {
          opacity: 0;
          transform: translateX(var(--dx)) translateY(-110vh) scale(0.15);
        }
      }

      .hero-content {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
      }

      .hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fu 0.8s var(--ease) 0.2s forwards;
      }
      .hero-pill-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--ember);
        box-shadow: 0 0 12px 4px rgba(224, 120, 32, 0.6);
        animation: pd 2s ease-in-out infinite;
      }
      @keyframes pd {
        0%,
        100% {
          box-shadow: 0 0 12px 4px rgba(224, 120, 32, 0.6);
        }
        50% {
          box-shadow: 0 0 22px 8px rgba(224, 120, 32, 0.9);
        }
      }
      .hero-pill-text {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ember);
      }

      h1.hero-h1 {
        font-family: var(--fd);
        font-size: clamp(3.5rem, 8.5vw, 8rem);
        font-weight: 900;
        line-height: 0.96;
        letter-spacing: -0.035em;
        color: var(--ivory);
        margin-bottom: 2rem;
      }
      .hero-line {
        display: block;
        overflow: hidden;
      }
      .hero-line span {
        display: block;
        opacity: 0;
        transform: translateY(110%);
        animation: su 0.9s var(--ease) forwards;
      }
      .hero-line:nth-child(1) span {
        animation-delay: 0.35s;
      }
      .hero-line:nth-child(2) span {
        animation-delay: 0.5s;
      }
      .hero-line:nth-child(3) span {
        animation-delay: 0.65s;
      }
      .accent {
        font-style: italic;
        color: var(--ember);
      }

      .hero-foot {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
        opacity: 0;
        animation: fu 0.8s var(--ease) 1s forwards;
      }
      .hero-sub {
        font-size: 0.875rem;
        color: var(--ash);
        line-height: 1.75;
        max-width: 320px;
        font-weight: 300;
      }

      /* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.78rem 1.55rem;
        font-family: var(--fb);
        font-size: 0.76rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border: none;
        border-radius: 100px;
        cursor: pointer;
        transition: all 0.3s var(--ease);
      }
      .btn-fire {
        background: var(--ember);
        color: var(--void);
      }
      .btn-fire:hover {
        background: var(--flame);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(224, 120, 32, 0.4);
      }
      .btn-ghost {
        background: transparent;
        color: var(--mist);
        border: 1px solid rgba(255, 255, 255, 0.12);
      }
      .btn-ghost:hover {
        border-color: rgba(255, 255, 255, 0.35);
        color: var(--ivory);
        transform: translateY(-2px);
      }
      .btn-light {
        background: #fff;
        color: var(--void);
      }
      .btn-light:hover {
        background: var(--ivory);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255, 255, 255, 0.15);
      }

      /* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
      .ticker {
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: var(--coal);
      }
      .ticker-track {
        display: flex;
        animation: tk 32s linear infinite;
      }
      .ticker-item {
        display: inline-flex;
        align-items: center;
        gap: 1.25rem;
        padding: 0.88rem 2rem;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ash);
        white-space: nowrap;
      }
      .ticker-sep {
        color: var(--ember);
        font-size: 0.55rem;
      }
      @keyframes tk {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
      .sec {
        padding: 7rem 3rem;
      }
      .sec-inner {
        max-width: 1200px;
        margin: 0 auto;
      }

      .sec-tag {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ember);
      }
      .sec-tag::after {
        content: "";
        display: block;
        width: 28px;
        height: 1px;
        background: rgba(224, 120, 32, 0.5);
      }

      h2.sec-title {
        font-family: var(--fd);
        font-size: clamp(2.4rem, 4.5vw, 4rem);
        font-weight: 700;
        line-height: 1.05;
        letter-spacing: -0.025em;
        color: var(--ivory);
      }
      h2.sec-title em {
        font-style: italic;
        color: var(--ember);
      }

      .body-text {
        font-size: 0.9rem;
        color: var(--ash);
        line-height: 1.85;
        font-weight: 300;
      }

      /* ═══════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════ */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.7s var(--ease),
          transform 0.7s var(--ease);
      }
      .reveal.in-view {
        opacity: 1;
        transform: none;
      }

      /* ═══════════════════════════════════════════
   01 — ÜBER UNS
═══════════════════════════════════════════ */
      #about {
        background: var(--deep);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

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

      .about-big {
        font-family: var(--fd);
        font-size: clamp(6rem, 16vw, 14rem);
        font-weight: 900;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 1px rgba(224, 120, 32, 0.1);
        letter-spacing: -0.05em;
        margin-bottom: -1.5rem;
        user-select: none;
      }

      .about-img-wrap {
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        aspect-ratio: 4/5;
      }
      .about-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.85);
      }
      .about-img-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(
          to top,
          rgba(9, 8, 10, 0.7) 0%,
          transparent 50%
        );
      }

      .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
        overflow: hidden;
        margin-top: 1px;
      }
      .about-stat {
        background: var(--coal);
        padding: 1.4rem;
        text-align: center;
      }
      .about-stat-num {
        font-family: var(--fd);
        font-size: 1.9rem;
        font-weight: 700;
        color: var(--ember);
        line-height: 1;
      }
      .about-stat-lbl {
        font-size: 0.62rem;
        color: var(--ash);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-top: 0.3rem;
        font-weight: 500;
      }

      /* ═══════════════════════════════════════════
   02 — LILIE STUFEN
═══════════════════════════════════════════ */
      #stufen {
        background: var(--void);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

      .stufen-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: end;
        margin-bottom: 4.5rem;
      }

      .stufen-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
        overflow: hidden;
      }

      .stufe-card {
        background: var(--coal);
        padding: 2rem 1.75rem;
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        border-bottom: 3px solid transparent;
      }
      .stufe-card:hover {
        background: var(--iron);
      }
      .stufe-card.stufe-woelflinge {
        border-bottom-color: #e07820;
      }
      .stufe-card.stufe-jupfi {
        border-bottom-color: #2255aa;
      }
      .stufe-card.stufe-pfadi {
        border-bottom-color: #3e6e20;
      }
      .stufe-card.stufe-rover {
        border-bottom-color: #aa2222;
      }
      .stufe-card.stufe-leiter {
        border-bottom-color: #888;
      }
      .stufe-card.stufe-altpfadfinder {
        border-bottom-color: #654321;
      }

      .stufe-lilie {
        width: 52px;
        height: auto;
        margin-bottom: 1.25rem;
        display: block;
      }

      .stufe-card h3 {
        font-family: var(--fd);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--ivory);
        margin-bottom: 0.25rem;
      }
      .stufe-age {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ember);
        margin-bottom: 0.7rem;
      }
      .stufe-card p {
        font-size: 0.82rem;
        color: var(--ash);
        line-height: 1.65;
        font-weight: 300;
      }

      /* ═══════════════════════════════════════════
   03 — GRUNDLAGEN
═══════════════════════════════════════════ */
      #grundlagen {
        background: var(--deep);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

      .gl-intro {
        max-width: 600px;
        margin-bottom: 3.5rem;
      }
      .gl-intro .body-text {
        color: var(--ash);
        font-size: 0.875rem;
        line-height: 1.8;
        font-weight: 300;
      }

      .gl-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
      }

      .gl-gesetz {
        position: relative;
      }
      .gl-gesetz-title {
        font-family: var(--fd);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--ivory);
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
      }
      .gl-rule {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }
      .gl-rule:first-of-type {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }
      .gl-rule-num {
        font-family: var(--fd);
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--ember);
        min-width: 1.5rem;
        padding-top: 0.15rem;
      }
      .gl-rule-text {
        font-size: 0.82rem;
        color: var(--mist);
        line-height: 1.7;
        font-weight: 300;
      }

      .gl-methode-title {
        font-family: var(--fd);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--ivory);
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
      }
      .gl-card {
        background: var(--coal);
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 4px;
        padding: 1.5rem;
        margin-bottom: 0.75rem;
        transition: background 0.25s;
      }
      .gl-card:hover {
        background: var(--iron);
      }
      .gl-card-icon {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
      }
      .gl-card h4 {
        font-family: var(--fd);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--ivory);
        margin-bottom: 0.4rem;
      }
      .gl-card p {
        font-size: 0.78rem;
        color: var(--ash);
        line-height: 1.65;
        font-weight: 300;
      }

      .gl-quote {
        margin-top: 2rem;
        padding: 1.75rem 2rem;
        border-left: 2px solid rgba(224, 120, 32, 0.55);
        background: rgba(224, 120, 32, 0.04);
        border-radius: 0 3px 3px 0;
      }
      .gl-quote blockquote {
        font-family: var(--fd);
        font-size: 1.05rem;
        font-style: italic;
        font-weight: 300;
        color: var(--silver);
        line-height: 1.7;
      }
      .gl-quote cite {
        display: block;
        margin-top: 0.6rem;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--ember);
        font-style: normal;
      }

      @media (max-width: 800px) {
        .gl-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
      }

      /* ═══════════════════════════════════════════
   04 — ZELTLAGER (real photo bg)
═══════════════════════════════════════════ */
      #zeltlager {
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }

      .zelt-bg-img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url("./assets/images/gallery/img022.jpg");
        background-size: cover;
        background-position: center;
        filter: brightness(0.28) saturate(0.6);
      }
      .zelt-bg-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(
          135deg,
          rgba(9, 8, 10, 0.9) 0%,
          rgba(9, 8, 10, 0.7) 50%,
          rgba(40, 20, 5, 0.8) 100%
        );
      }

      .zelt-inner {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
        padding: 7rem 3rem;
      }

      .zelt-feats {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        margin: 2rem 0;
      }
      .zelt-feat {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        font-size: 0.875rem;
        color: var(--mist);
        font-weight: 300;
      }
      .zelt-check {
        width: 22px;
        height: 22px;
        border: 1px solid rgba(224, 120, 32, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--ember);
        font-size: 0.65rem;
      }

      .zelt-img-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3px;
        border-radius: 4px;
        overflow: hidden;
      }

      .zelt-img-cell {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1;
        background: var(--iron);
      }
      .zelt-img-cell:first-child {
        grid-column: span 2;
        aspect-ratio: 2/1;
      }
      .zelt-img-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.8) brightness(0.9);
        transition:
          transform 0.6s var(--ease),
          filter 0.4s;
      }
      .zelt-img-cell:hover img {
        transform: scale(1.04);
        filter: saturate(1) brightness(0.95);
      }
      .zelt-img-cell::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.35) 0%,
          transparent 50%
        );
      }

      /* ═══════════════════════════════════════════
   04 — AKTIVITÄTEN
═══════════════════════════════════════════ */
      #activities {
        background: var(--deep);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

      .acts-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 3.5rem;
        gap: 2rem;
      }

      .acts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 4px;
        overflow: hidden;
      }

      .act-card {
        background: var(--coal);
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
      }
      .act-card:hover {
        background: var(--iron);
      }
      .act-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--ember), transparent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s var(--ease);
      }
      .act-card:hover::before {
        transform: scaleX(1);
      }

      .act-emoji {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
        display: block;
      }
      .act-tag {
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ember);
        margin-bottom: 0.55rem;
      }
      .act-card h3 {
        font-family: var(--fd);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--ivory);
        margin-bottom: 0.65rem;
        line-height: 1.2;
      }
      .act-card p {
        font-size: 0.82rem;
        color: var(--ash);
        line-height: 1.7;
        font-weight: 300;
      }

      /* ═══════════════════════════════════════════
   05 — LEGO GALERIE
═══════════════════════════════════════════ */
      #gallery {
        background: var(--void);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding: 5rem 3rem;
      }

      .gal-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2.5rem;
        gap: 2rem;
      }

      .gal-note {
        font-size: 0.72rem;
        color: var(--ash);
        font-weight: 300;
        max-width: 280px;
        line-height: 1.6;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 3px;
        padding: 0.75rem 1rem;
      }
      .gal-note strong {
        display: block;
        color: var(--mist);
        margin-bottom: 0.25rem;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .gal-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 220px 220px;
        gap: 3px;
        border-radius: 4px;
        overflow: hidden;
      }

      .gal-cell {
        position: relative;
        overflow: hidden;
        cursor: zoom-in;
      }
      .gal-cell:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
      }
      .gal-cell:nth-child(6) {
        grid-column: span 2;
      }

      .gal-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
          transform 0.6s var(--ease),
          filter 0.4s;
        filter: saturate(0.75);
      }
      .gal-cell:hover img {
        transform: scale(1.06);
        filter: saturate(1);
      }

      .gal-cell-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        display: flex;
        align-items: flex-end;
        padding: 0.9rem 1rem;
        transition: background 0.35s;
      }
      .gal-cell:hover .gal-cell-overlay {
        background: rgba(0, 0, 0, 0.35);
      }
      .gal-cell-label {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transform: translateY(5px);
        transition: all 0.3s;
      }
      .gal-cell:hover .gal-cell-label {
        opacity: 1;
        transform: translateY(0);
      }

      /* Real photo section */
      .gal-real {
        margin-top: 3px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
      }
      .gal-real .gal-cell {
        border-radius: 0;
      }
      .gal-real .gal-cell img {
        height: 210px;
      }
      .gal-real .gal-cell.wide {
        grid-column: span 2;
      }
      .gal-real .gal-cell.wide img {
        height: 210px;
      }

      /* ═══════════════════════════════════════════
   07 — GESCHICHTE DER DPSG
═══════════════════════════════════════════ */
      #dpsg-history {
        background: var(--iron);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

      .dpsg-stat-card {
        background: var(--coal);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 3px;
        padding: 1.75rem;
        position: relative;
        margin-top: 2rem;
      }
      .dpsg-stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--ember),
          var(--pine),
          transparent
        );
      }
      .dpsg-stat-title {
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ember);
        margin-bottom: 1.25rem;
      }
      .dpsg-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
      }
      .dpsg-stat-num {
        font-family: var(--fd);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--ivory);
        line-height: 1;
      }
      .dpsg-stat-lbl {
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--ash);
        margin-top: 0.3rem;
      }

      /* ═══════════════════════════════════════════
   06 — GESCHICHTE
═══════════════════════════════════════════ */
      #history {
        background: var(--deep);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

      .hist-layout {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 7rem;
        align-items: start;
      }

      .hist-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
      }

      .hist-founders {
        margin-top: 2.5rem;
        padding: 1.75rem;
        background: var(--coal);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 3px;
        position: relative;
      }
      .hist-founders::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--amber, #e07820),
          var(--pine, #2c5014),
          transparent
        );
      }
      .hist-founders h4 {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ember);
        margin-bottom: 0.75rem;
      }
      .hist-founders p {
        font-size: 0.825rem;
        color: var(--ash);
        line-height: 1.75;
        font-weight: 300;
      }

      .hist-img {
        margin-top: 2rem;
        border-radius: 3px;
        overflow: hidden;
        position: relative;
      }
      .hist-img img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        filter: saturate(0.5) sepia(0.3);
      }
      .hist-img-cap {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.8) 0%,
          transparent 100%
        );
        padding: 1rem 1.25rem 0.75rem;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
      }

      .hist-quote {
        border-left: 2px solid var(--ember);
        padding-left: 1.75rem;
        margin-bottom: 2.5rem;
      }
      .hist-quote blockquote {
        font-family: var(--fd);
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        font-style: italic;
        font-weight: 300;
        color: var(--silver);
        line-height: 1.5;
      }
      .hist-quote cite {
        display: block;
        margin-top: 0.75rem;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--ember);
        font-style: normal;
      }

      .timeline {
        position: relative;
        display: flex;
        flex-direction: column;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 5.5rem;
        top: 1.5rem;
        bottom: 0;
        width: 1px;
        background: linear-gradient(
          to bottom,
          var(--ember),
          rgba(224, 120, 32, 0.04)
        );
      }

      .timeline-row {
        display: grid;
        grid-template-columns: 5.5rem 2.5rem 1fr;
        gap: 0 1.25rem;
        padding-bottom: 2.75rem;
      }
      .timeline-row:last-child {
        padding-bottom: 0;
      }
      .timeline-year {
        font-family: var(--fd);
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--ember);
        text-align: right;
        padding-top: 0.1rem;
      }
      .timeline-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--ember);
        border: 2px solid var(--deep);
        box-shadow: 0 0 0 3px rgba(224, 120, 32, 0.25);
        margin-top: 0.18rem;
        justify-self: center;
      }
      .timeline-body h4 {
        font-family: var(--fd);
        font-size: 1rem;
        font-weight: 700;
        color: var(--ivory);
        margin-bottom: 0.35rem;
        line-height: 1.2;
      }
      .timeline-body p {
        font-size: 0.82rem;
        color: var(--ash);
        line-height: 1.7;
        font-weight: 300;
      }


      /* ═══════════════════════════════════════════
   07 — DOKUMENTE
═══════════════════════════════════════════ */
      #docs {
        background: var(--coal);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding: 4rem 3rem;
      }

      .docs-inner {
        max-width: 1200px;
        margin: 0 auto;
      }

      .docs-lore {
        margin-top: 2.5rem;
        margin-bottom: 3.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
        padding-top: 2.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      .docs-lore p {
        font-size: 0.875rem;
        color: var(--ash);
        line-height: 1.9;
        font-weight: 300;
      }
      .docs-lore p + p {
        margin-top: 1.1rem;
      }
      .docs-lore em {
        color: var(--mist);
        font-style: italic;
      }
      .docs-lore strong {
        color: var(--silver);
        font-weight: 500;
        font-style: normal;
      }

      .docs-thanks {
        margin-top: 2rem;
        padding: 1.5rem 1.75rem;
        border-left: 2px solid rgba(224, 120, 32, 0.55);
        background: rgba(224, 120, 32, 0.04);
        border-radius: 0 3px 3px 0;
      }
      .docs-thanks-text {
        font-family: var(--fd);
        font-size: 1rem;
        font-style: italic;
        font-weight: 300;
        color: var(--silver);
        line-height: 1.75;
      }
      .docs-thanks-cite {
        display: block;
        margin-top: 0.7rem;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--ember);
        font-style: normal;
      }

      .docs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 4px;
        overflow: hidden;
      }

      .doc-card {
        background: var(--coal);
        padding: 1.75rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: background 0.25s;
      }
      .doc-card:hover {
        background: var(--iron);
      }
      .doc-icon {
        width: 44px;
        height: 44px;
        border-radius: 3px;
        flex-shrink: 0;
        background: rgba(224, 120, 32, 0.12);
        border: 1px solid rgba(224, 120, 32, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
      }
      .doc-info strong {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--ivory);
        margin-bottom: 0.2rem;
      }
      .doc-info span {
        font-size: 0.72rem;
        color: var(--ash);
        font-weight: 300;
      }
      .doc-card-arrow {
        margin-left: auto;
        color: var(--ash);
        font-size: 0.9rem;
        transition: all 0.25s;
      }
      .doc-card:hover .doc-card-arrow {
        color: var(--ember);
        transform: translateX(3px);
      }

      /* ═══════════════════════════════════════════
   08 — LINKS
═══════════════════════════════════════════ */
      #links {
        background: var(--deep);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding: 4rem 3rem;
      }
      .links-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 4px;
        overflow: hidden;
        margin-top: 2.5rem;
      }

      .link-tile {
        background: var(--coal);
        padding: 2rem 1.75rem;
        display: flex;
        align-items: center;
        gap: 1.1rem;
        transition: background 0.25s;
      }
      .link-tile:hover {
        background: var(--iron);
      }
      .link-tile-icon {
        width: 44px;
        height: 44px;
        border-radius: 3px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
      }
      .link-tile-text strong {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--ivory);
        margin-bottom: 0.2rem;
      }
      .link-tile-text span {
        font-size: 0.72rem;
        color: var(--ash);
        font-weight: 300;
      }
      .link-tile-arrow {
        margin-left: auto;
        color: var(--ash);
        font-size: 0.9rem;
        transition: all 0.25s;
      }
      .link-tile:hover .link-tile-arrow {
        color: var(--ember);
        transform: translateX(3px);
      }

      /* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
      #cta {
        background: var(--pine);
        padding: 5.5rem 3rem;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      #cta::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: radial-gradient(
          ellipse at 65% 50%,
          rgba(224, 120, 32, 0.18) 0%,
          transparent 55%
        );
      }
      .cta-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 3rem;
        position: relative;
        z-index: 1;
      }
      #cta h2 {
        font-family: var(--fd);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--ivory);
        line-height: 1.15;
        letter-spacing: -0.02em;
      }
      #cta h2 em {
        font-style: italic;
        color: var(--glow);
      }
      #cta p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 0.5rem;
        font-weight: 300;
      }
      .cta-buttons {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
      }

      /* ═══════════════════════════════════════════
   09 — KONTAKT
═══════════════════════════════════════════ */
      #contact {
        background: var(--void);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 6rem;
        align-items: start;
      }

      .contact-info-title {
        font-family: var(--fd);
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--ivory);
        margin-bottom: 0.9rem;
        line-height: 1.1;
      }
      .contact-info > p {
        font-size: 0.875rem;
        color: var(--ash);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        font-weight: 300;
      }

      .contact-info-details {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
      }
      .contact-info-row {
        display: flex;
        gap: 0.9rem;
        align-items: flex-start;
      }
      .contact-info-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 3px;
        display: grid;
        place-items: center;
        font-size: 1rem;
      }
      .contact-info-row strong {
        display: block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ash);
        margin-bottom: 0.2rem;
      }
      .contact-info-row span {
        font-size: 0.875rem;
        color: var(--silver);
      }
      .contact-info-row a {
        color: var(--ember);
      }
      .contact-info-row a:hover {
        text-decoration: underline;
      }

      .contact-form-box {
        background: var(--coal);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 4px;
        padding: 2.5rem;
        position: relative;
      }
      .contact-form-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--ember), var(--pine));
      }

      .contact-form-title {
        font-family: var(--fd);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--ivory);
        margin-bottom: 1.75rem;
      }

      .form-group {
        margin-bottom: 1rem;
      }
      .form-group label {
        display: block;
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ash);
        margin-bottom: 0.38rem;
      }
      .form-group input,
      .form-group textarea,
      .form-group select {
        width: 100%;
        padding: 0.78rem 1rem;
        background: var(--iron);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 3px;
        font-family: var(--fb);
        font-size: 0.875rem;
        color: var(--ivory);
        outline: none;
        transition:
          border-color 0.25s,
          box-shadow 0.25s;
        -webkit-appearance: none;
      }
      .form-group input::placeholder,
      .form-group textarea::placeholder {
        color: var(--ash);
      }
      .form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        border-color: rgba(224, 120, 32, 0.5);
        box-shadow: 0 0 0 3px rgba(224, 120, 32, 0.08);
      }
      .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.9rem center;
        background-size: 11px;
        cursor: pointer;
      }
      .form-group select option {
        background: var(--coal);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 108px;
      }
      .form-group-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
      }

      .contact-form-btn {
        width: 100%;
        padding: 0.9rem;
        background: var(--ember);
        color: var(--void);
        border: none;
        border-radius: 100px;
        font-family: var(--fb);
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 0.5rem;
        transition: all 0.3s var(--ease);
      }
      .contact-form-btn:hover {
        background: var(--flame);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(224, 120, 32, 0.35);
      }

      /* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
      footer {
        background: var(--deep);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding: 4rem 3rem 2rem;
      }

      .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 2rem;
      }

      .footer-brand-logo {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 1rem;
      }
      .footer-brand-svg {
        width: 52px;
        height: auto;
      }
      .footer-brand-name {
        font-family: var(--fd);
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--ivory);
      }
      .footer-brand-name small {
        display: block;
        font-family: var(--fb);
        font-size: 0.6rem;
        font-weight: 400;
        color: var(--ash);
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .footer-brand-desc {
        font-size: 0.8rem;
        color: var(--ash);
        line-height: 1.75;
        font-weight: 300;
        max-width: 280px;
      }

      .footer-col h5 {
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--mist);
        margin-bottom: 1rem;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
      }
      .footer-col ul a {
        font-size: 0.8rem;
        color: var(--ash);
        font-weight: 300;
        transition: color 0.2s;
      }
      .footer-col ul a:hover {
        color: var(--ivory);
      }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.2);
      }
      .footer-bottom-links {
        display: flex;
        gap: 1.5rem;
      }
      .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.2);
        transition: color 0.2s;
      }
      .footer-bottom-links a:hover {
        color: var(--ash);
      }

      /* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
      @keyframes fu {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      @keyframes su {
        from {
          opacity: 0;
          transform: translateY(110%);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      /* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
      @media (max-width: 1024px) {
        .about-grid,
        .hist-layout,
        .contact-grid,
        .zelt-inner {
          grid-template-columns: 1fr;
          gap: 3.5rem;
        }
        .hist-sticky {
          position: static;
        }
        .stufen-cards {
          grid-template-columns: repeat(2, 1fr);
        }
        .acts-grid {
          grid-template-columns: 1fr 1fr;
        }
        .gal-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-template-rows: auto;
        }
        .gal-grid .gal-cell:nth-child(1) {
          grid-column: span 2;
          grid-row: span 1;
        }
        .gal-grid .gal-cell:nth-child(6) {
          grid-column: span 1;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
        }
        .cta-inner {
          grid-template-columns: 1fr;
        }
        .stufen-intro {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .docs-grid,
        .links-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 768px) {
        #hero,
        .sec {
          padding: 4.5rem 1.5rem;
        }
        #gallery,
        #links,
        #docs,
        #cta,
        footer {
          padding-left: 1.5rem;
          padding-right: 1.5rem;
        }
        .zelt-inner {
          padding: 4.5rem 1.5rem;
        }
        #nav {
          padding: 0 1.5rem;
        }
        .mob-menu {
          padding: 1.25rem 1.5rem;
        }
        .nav-links {
          display: none;
        }
        .nav-burger {
          display: flex;
        }
        .stufen-cards {
          grid-template-columns: 1fr;
        }
        .acts-grid {
          grid-template-columns: 1fr;
        }
        .gal-real {
          grid-template-columns: 1fr 1fr;
        }
        .gal-real .gal-cell img {
          height: 200px;
        }
        .docs-grid,
        .links-grid {
          grid-template-columns: 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .form-group-2col {
          grid-template-columns: 1fr;
        }
        .hero-foot {
          flex-direction: column;
          align-items: flex-start;
        }
        .acts-head {
          flex-direction: column;
          align-items: flex-start;
        }
        .gal-head {
          flex-direction: column;
          align-items: flex-start;
        }
      }

      /* ═══════════════════════════════════════════
   BROWSER DETECTION & COMPATIBILITY
═══════════════════════════════════════════ */

      /* --- Touch device: disable custom cursor --- */
      .is-touch body {
        cursor: auto;
      }
      .is-touch .cur-dot,
      .is-touch .cur-ring {
        display: none !important;
      }

      /* --- iOS Safari: disable GPU-heavy noise overlay --- */
      .is-ios body::before {
        display: none !important;
      }

      /* --- Safari (all): fix for flex gap fallback --- */
      @supports not (gap: 1rem) {
        .hero-foot > * + * {
          margin-left: 2rem;
        }
        .cta-buttons > * + * {
          margin-left: 0.75rem;
        }
        .nav-links > * + * {
          margin-left: 0.1rem;
        }
        .zelt-feats > * + * {
          margin-top: 0.9rem;
        }
        .contact-info-details > * + * {
          margin-top: 1.1rem;
        }
        .mob-menu > * + * {
          margin-top: 0.2rem;
        }
      }

      /* --- iOS Safari: fix 100vh (use -webkit-fill-available) --- */
      @supports (-webkit-touch-callout: none) {
        #hero {
          min-height: -webkit-fill-available;
        }
      }

      /* --- iOS Safari: fix for position:fixed elements --- */
      .is-ios .cur-dot,
      .is-ios .cur-ring {
        display: none !important;
      }

      .is-ios body::after {
        display: none !important;
      }

      /* --- iOS: reduce animation complexity --- */
      .is-ios .ember {
        animation-duration: 10s !important;
      }

      /* --- iOS Safari: fix transform flickering --- */
      .is-ios .hero-bg-img,
      .is-ios .hero-bg-overlay,
      .is-ios .hero-bg-fire,
      .is-ios .zelt-bg-img,
      .is-ios .zelt-bg-overlay {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
      }

      /* --- WebKit engine (all Safari-based browsers, iOS Chrome/FF/Edge) --- */
      .is-webkit body {
        -webkit-font-smoothing: antialiased;
        -webkit-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
      }
      .is-webkit img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
      }
      .is-webkit .reveal {
        -webkit-transform: translateY(28px);
        -webkit-transition:
          opacity 0.7s var(--ease),
          -webkit-transform 0.7s var(--ease);
      }
      .is-webkit .reveal.in-view {
        -webkit-transform: none;
      }

      /* --- WebKit: fix for CSS Grid rendering issues --- */
      .is-webkit .stufen-cards,
      .is-webkit .acts-grid,
      .is-webkit .gal-grid,
      .is-webkit .gal-real,
      .is-webkit .links-grid,
      .is-webkit .docs-grid {
        -webkit-transform: translateZ(0);
      }

      /* --- SFSafariViewController (iOS in-app Safari) --- */
      .is-sfsafari body::before {
        display: none !important;
      }
      .is-sfsafari .embers {
        opacity: 0.5;
      }
      .is-sfsafari .ember {
        animation-duration: 12s !important;
      }

      /* SFSafariVC has a smaller viewport due to app chrome — adjust hero */
      .is-sfsafari #hero {
        min-height: calc(100vh - 60px);
        min-height: -webkit-fill-available;
        padding-bottom: 4rem;
      }
      .is-sfsafari #nav {
        height: 60px;
      }

      /* SFSafariVC sometimes clips fixed elements — use transform trick */
      .is-sfsafari .cur-dot,
      .is-sfsafari .cur-ring {
        display: none !important;
      }
      .is-sfsafari #nav.scrolled {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
      }

      /* SFSafariVC: simplify heavy visual effects */
      .is-sfsafari .hero-bg-fire {
        opacity: 0.6;
      }
      .is-sfsafari .about-big {
        -webkit-text-stroke: 1px rgba(224, 120, 32, 0.08);
      }

      /* --- WKWebView (embedded in native apps) --- */
      .is-wkwebview body::before {
        display: none !important;
      }
      .is-wkwebview .embers {
        display: none !important;
      }
      .is-wkwebview .cur-dot,
      .is-wkwebview .cur-ring {
        display: none !important;
      }

      /* WKWebView often has limited viewport — ensure content is scrollable */
      .is-wkwebview body {
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
      }
      .is-wkwebview #hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
      }

      /* --- In-App Browsers (Facebook, Instagram, etc.) --- */
      .is-inapp body::before {
        display: none !important;
      }
      .is-inapp .embers {
        display: none !important;
      }
      .is-inapp .cur-dot,
      .is-inapp .cur-ring {
        display: none !important;
      }

      /* In-app browsers have very restricted viewports and janky scrolling */
      .is-inapp body {
        -webkit-overflow-scrolling: touch;
      }
      .is-inapp #hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 3.5rem;
      }
      .is-inapp .hero-bg-fire {
        display: none;
      }
      .is-inapp .ticker-track {
        animation-duration: 48s;
      }
      .is-inapp .gal-cell img,
      .is-inapp .zelt-img-cell img {
        transition: none;
      }
      .is-inapp .gal-cell:hover img {
        transform: none;
      }
      .is-inapp .zelt-img-cell:hover img {
        transform: none;
      }

      /* --- iOS Chrome / Firefox / Edge (all WebKit underneath) --- */
      .is-ios-chrome body::before,
      .is-ios-firefox body::before,
      .is-ios-edge body::before {
        display: none !important;
      }

      .is-ios-chrome .ember,
      .is-ios-firefox .ember,
      .is-ios-edge .ember {
        animation-duration: 10s !important;
      }

      /* --- Samsung Internet --- */
      .is-samsung .about-big {
        -webkit-text-stroke: 1px rgba(224, 120, 32, 0.06);
      }
      .is-samsung body::before {
        opacity: 0.012;
      }

      /* --- macOS Safari (desktop) — lighter fixes, keep effects --- */
      .is-macos-safari .hero-bg-img,
      .is-macos-safari .hero-bg-overlay,
      .is-macos-safari .zelt-bg-img,
      .is-macos-safari .zelt-bg-overlay {
        -webkit-transform: translate3d(0, 0, 0);
      }
      .is-macos-safari .reveal {
        will-change: opacity, transform;
      }

      /* --- PWA / Standalone mode --- */
      .is-pwa #nav {
        padding-top: env(safe-area-inset-top, 0);
        height: calc(70px + env(safe-area-inset-top, 0));
      }
      .is-pwa .mob-menu {
        top: calc(70px + env(safe-area-inset-top, 0));
      }

      /* --- Safari: ensure smooth scrolling fallback --- */
      @supports not (scroll-behavior: smooth) {
        html {
          scroll-behavior: auto;
        }
      }

      /* --- High contrast / reduced motion --- */
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
        .ticker-track {
          animation: none !important;
        }
        .embers {
          display: none !important;
        }
        .reveal {
          opacity: 1 !important;
          transform: none !important;
        }
        html {
          scroll-behavior: auto;
        }
      }

      /* --- Firefox: scrollbar styling --- */
      html {
        scrollbar-width: thin;
        scrollbar-color: var(--zinc) var(--void);
      }
      ::-webkit-scrollbar {
        width: 8px;
      }
      ::-webkit-scrollbar-track {
        background: var(--void);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--zinc);
        border-radius: 4px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: var(--ash);
      }

      /* --- Small mobile (< 400px) --- */
      @media (max-width: 400px) {
        h1.hero-h1 {
          font-size: 2.5rem;
        }
        h2.sec-title {
          font-size: 1.8rem;
        }
        .sec {
          padding: 3.5rem 1rem;
        }
        #hero {
          padding: 0 1rem 4rem;
        }
        #gallery,
        #links,
        #docs,
        #cta,
        footer {
          padding-left: 1rem;
          padding-right: 1rem;
        }
        .zelt-inner {
          padding: 3.5rem 1rem;
        }
        #nav {
          padding: 0 1rem;
        }
        .mob-menu {
          padding: 1rem;
        }
        .gal-grid {
          grid-template-columns: 1fr;
          grid-template-rows: auto;
        }
        .gal-grid .gal-cell:nth-child(1) {
          grid-column: span 1;
        }
        .gal-grid .gal-cell:nth-child(6) {
          grid-column: span 1;
        }
        .gal-real {
          grid-template-columns: 1fr;
        }
        .gal-real .gal-cell.wide {
          grid-column: span 1;
        }
        .about-big {
          font-size: 5rem;
        }
        .timeline-row {
          grid-template-columns: 3.5rem 2rem 1fr;
          gap: 0 0.75rem;
        }
        .timeline::before {
          left: 3.5rem;
        }
        .docs-lore {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .dpsg-stats-grid {
          grid-template-columns: 1fr;
        }
        .about-stats {
          grid-template-columns: 1fr;
        }
        .link-tile {
          padding: 1.25rem 1rem;
        }
        .link-tile-icon {
          width: 36px;
          height: 36px;
          font-size: 1.1rem;
        }
      }

      /* --- Landscape mobile --- */
      @media (max-height: 500px) and (orientation: landscape) {
        #hero {
          min-height: auto;
          padding-top: 80px;
          padding-bottom: 3rem;
        }
        h1.hero-h1 {
          font-size: 2.5rem;
        }
      }

      /* --- Safe area insets (iPhone notch) --- */
      @supports (padding: env(safe-area-inset-bottom)) {
        footer {
          padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        }
        #nav {
          padding-left: max(1.5rem, env(safe-area-inset-left));
          padding-right: max(1.5rem, env(safe-area-inset-right));
        }
        .mob-menu {
          padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
        }
      }

      /* ═══════════════════════════════════════════
   UTILITIES (replaces former inline styles)
═══════════════════════════════════════════ */
      .hero-btn-row {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }
      .gal-pad {
        padding: 5rem 3rem;
      }
      .sec-tag-lg {
        font-size: 0.95rem;
      }
      .cta-quote {
        max-width: 600px;
        font-style: italic;
        color: var(--mist);
        line-height: 1.8;
        margin-bottom: 1.25rem;
      }
      .mist-text {
        color: var(--mist);
      }
      .mist-strong {
        color: var(--mist);
        font-weight: 500;
      }
      .mw-300 {
        max-width: 300px;
      }
      .mw-420 {
        max-width: 420px;
      }
      .mw-440 {
        max-width: 440px;
      }
      .mw-600 {
        max-width: 600px;
      }
      .mt-0-5 {
        margin-top: 0.5rem;
      }
      .mt-1-5 {
        margin-top: 1.5rem;
      }
      .mt-2 {
        margin-top: 2rem;
      }
      .mb-0-5 {
        margin-bottom: 0.5rem;
      }
      .mb-1 {
        margin-bottom: 1rem;
      }
      .mb-1-25 {
        margin-bottom: 1.25rem;
      }
      .mb-1-4 {
        margin-bottom: 1.4rem;
      }
      .mb-2 {
        margin-bottom: 2rem;
      }
      .mb-4 {
        margin-bottom: 4rem;
      }
      .mb-4-5 {
        margin-bottom: 4.5rem;
      }
