    /*
      GMM NRW Design System
      Tokens, base layout, shared header/menu, buttons, cards, footer/legal UI
      and page-specific components for the homepage and program page.
    */

    :root {
      --mint: #9fcabd;
      --mint-light: #cce4da;
      --mint-soft: #e3f1eb;
      --olive: #71863d;
      --olive-dark: #4f6726;
      --green: #0f4e25;
      --green-deep: #0a2c17;
      --ink: #102014;
      --paper: #fffaf0;
      --paper-2: #f6efda;
      --yellow: #f2df72;
      --orange: #e56f4f;
      --rose: #d98271;
      --line: rgba(16, 32, 20, .22);
      --shadow: 0 28px 70px rgba(16, 32, 20, .22);
      --hard-shadow: 8px 8px 0 rgba(16, 32, 20, .16);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      padding-top: 106px;
      color: var(--ink);
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      background:
        radial-gradient(circle at 10% 5%, rgba(255,250,240,.72), transparent 28%),
        radial-gradient(circle at 80% 12%, rgba(242,223,114,.28), transparent 25%),
        linear-gradient(180deg, var(--mint), #b9d9ce 44%, #eef3e5 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -3;
      pointer-events: none;
      opacity: .20;
      background-image:
        linear-gradient(30deg, rgba(113,134,61,.18) 12%, transparent 12.5%, transparent 87%, rgba(113,134,61,.18) 87.5%, rgba(113,134,61,.18)),
        linear-gradient(150deg, rgba(113,134,61,.18) 12%, transparent 12.5%, transparent 87%, rgba(113,134,61,.18) 87.5%, rgba(113,134,61,.18));
      background-size: 68px 118px;
      mask-image: linear-gradient(to bottom, #000, transparent 82%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: .10;
      background:
        repeating-linear-gradient(0deg, rgba(16,32,20,.45), rgba(16,32,20,.45) 1px, transparent 1px, transparent 5px);
      mix-blend-mode: multiply;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    p, h1, h2, h3 { margin-top: 0; }
    button, input, textarea, select { font: inherit; }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -80px;
      z-index: 99;
      padding: 12px 16px;
      border-radius: 999px;
      background: var(--yellow);
      font-weight: 950;
    }
    .skip-link:focus { top: 16px; }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      border-bottom: 3px solid rgba(16,32,20,.20);
      background: rgba(159,202,189,.82);
      backdrop-filter: blur(14px);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      flex: 0 0 auto;
      width: 122px;
      min-width: 122px;
      height: 74px;
      padding: 8px 10px;
      border: 2px solid rgba(16,32,20,.82);
      border-radius: 14px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transform: none;
      box-shadow: 4px 4px 0 rgba(16,32,20,.15);
    }

    .brand-mark img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
      transform: none;
    }

    .brand-title {
      display: grid;
      line-height: 1;
    }

    .brand-title strong {
      color: var(--green-deep);
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .brand-title span {
      margin-top: 5px;
      color: rgba(16,32,20,.70);
      font-size: 12px;
      font-weight: 850;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 2px solid rgba(16,32,20,.18);
      border-radius: 14px;
      background: rgba(255,250,240,.36);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
      color: rgba(16,32,20,.78);
      font-size: clamp(10px, .92vw, 12px);
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 10px;
      border: 2px solid transparent;
      border-radius: 9px;
      white-space: nowrap;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      border-color: rgba(16,32,20,.26);
      background: rgba(255,250,240,.72);
      outline: none;
      transform: translateY(-1px);
    }

    .nav-links a[aria-current="page"] {
      border-color: var(--ink);
      background: var(--yellow);
      color: var(--ink);
      box-shadow: 3px 3px 0 rgba(16,32,20,.14);
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border: 3px solid var(--ink);
      border-radius: 8px;
      color: var(--ink);
      font-size: 13px;
      font-weight: 1000;
      letter-spacing: .08em;
      line-height: 1;
      text-transform: uppercase;
      box-shadow: 5px 5px 0 rgba(16,32,20,.16);
      transition: transform .18s ease, box-shadow .18s ease;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 rgba(16,32,20,.16); }
    .btn-primary { background: var(--yellow); }
    .btn-secondary { background: var(--paper); }
    .btn-green { color: var(--paper); background: var(--olive); }

    .btn.is-disabled,
    .btn[aria-disabled="true"] {
      opacity: .58;
      cursor: default;
      pointer-events: none;
      transform: none;
      box-shadow: 4px 4px 0 rgba(16,32,20,.10);
    }

    .section, .hero { padding-inline: 22px; }
    .section { padding-block: 72px; }
    .section-inner, .hero-inner, .ticker-inner { max-width: var(--max); margin: 0 auto; }

    .hero {
      position: relative;
      padding-top: 72px;
      padding-bottom: 46px;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 380px;
      z-index: -2;
      background:
        radial-gradient(circle at 72% 26%, rgba(242,223,114,.32), transparent 26%),
        radial-gradient(circle at 20% 4%, rgba(255,250,240,.70), transparent 24%);
    }

    .hero::after {
      content: "LEGALIZE? NORMALIZE. EDUCATE. ORGANIZE.";
      position: absolute;
      left: -40px;
      right: -40px;
      bottom: 18px;
      z-index: -1;
      color: rgba(79,103,38,.12);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(56px, 10vw, 160px);
      line-height: .75;
      text-align: center;
      letter-spacing: -.04em;
      text-transform: uppercase;
      transform: rotate(-3deg);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      gap: 54px;
      align-items: center;
    }

    .stamp-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .stamp {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 13px;
      border: 3px solid var(--olive-dark);
      border-radius: 4px;
      color: var(--olive-dark);
      background: rgba(255,250,240,.45);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 18px;
      letter-spacing: .06em;
      text-transform: uppercase;
      transform: rotate(-2deg);
    }
    .stamp:nth-child(2) { transform: rotate(2deg); color: var(--paper); background: var(--olive); border-color: var(--olive); }

    .poster-title {
      margin: 0 0 26px;
      display: grid;
      gap: 12px;
      max-width: 820px;
    }

    .title-ribbon {
      display: block;
      width: max-content;
      max-width: 100%;
      padding: .04em .20em .10em;
      color: var(--paper);
      background: var(--olive);
      font-family: Impact, "Arial Black", "Helvetica Neue Condensed", sans-serif;
      font-size: clamp(54px, 8vw, 118px);
      line-height: .86;
      letter-spacing: .01em;
      text-transform: uppercase;
      box-decoration-break: clone;
      border: 0;
      transform: rotate(-1.5deg);
      box-shadow: 8px 8px 0 rgba(16,32,20,.11);
    }

    .title-ribbon:nth-child(2) {
      transform: rotate(.8deg) translateX(32px);
      color: var(--olive);
      background: rgba(255,250,240,.72);
      -webkit-text-stroke: 2px var(--olive);
    }

    .title-ribbon:nth-child(3) {
      transform: rotate(-1.2deg) translateX(12px);
      background: var(--olive-dark);
    }

    .hero-lead {
      max-width: 720px;
      margin-bottom: 0;
      color: rgba(16,32,20,.82);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 32px 0 26px;
    }

    .share-actions {
      margin: 0;
    }

    .contact-actions {
      margin-top: 22px;
    }

    .facts-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 740px;
    }

    .fact {
      padding: 18px 16px;
      border: 3px solid var(--ink);
      border-radius: 10px;
      background: var(--paper);
      box-shadow: 5px 5px 0 rgba(16,32,20,.12);
      transform: rotate(-1deg);
    }
    .fact:nth-child(2) { transform: rotate(1.5deg); background: var(--yellow); }
    .fact:nth-child(3) { transform: rotate(-.4deg); }

    .fact span {
      display: block;
      margin-bottom: 5px;
      color: var(--olive-dark);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .fact strong { display: block; color: var(--ink); font-size: 17px; line-height: 1.18; }

    .hero-art {
      position: relative;
      min-height: 630px;
    }

    .flyer-card {
      position: relative;
      z-index: 2;
      border: 4px solid var(--ink);
      border-radius: 18px;
      background: var(--paper);
      padding: 14px;
      box-shadow: 16px 18px 0 rgba(16,32,20,.13), 0 30px 70px rgba(16,32,20,.25);
      transform: rotate(2.2deg);
    }

    .flyer-card img {
      border-radius: 10px;
      width: 100%;
      aspect-ratio: 1240 / 1728;
      object-fit: cover;
    }

    .flyer-label {
      position: absolute;
      left: -22px;
      top: 34px;
      z-index: 3;
      padding: 11px 16px;
      color: var(--paper);
      background: var(--olive);
      border: 3px solid var(--ink);
      border-radius: 6px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 22px;
      letter-spacing: .05em;
      text-transform: uppercase;
      transform: rotate(-8deg);
      box-shadow: 5px 5px 0 rgba(16,32,20,.16);
    }

    .bubble {
      position: absolute;
      z-index: 4;
      right: clamp(10px, 1.4vw, 22px);
      bottom: clamp(46px, 6vw, 86px);
      width: clamp(178px, 17vw, 236px);
      min-height: clamp(178px, 17vw, 236px);
      padding: clamp(16px, 1.5vw, 22px);
      border: 4px solid var(--ink);
      border-radius: 999px 999px 999px 26px;
      background: var(--yellow);
      box-shadow: 8px 8px 0 rgba(16,32,20,.15);
      transform: rotate(-3deg);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      overflow-wrap: anywhere;
    }

    .bubble strong {
      display: block;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(22px, 2vw, 31px);
      line-height: .9;
      text-transform: uppercase;
      letter-spacing: .01em;
      max-width: 100%;
    }
    .bubble span {
      display: block;
      margin-top: 8px;
      font-weight: 900;
      font-size: clamp(11px, 1vw, 13px);
      line-height: 1.18;
      max-width: 100%;
    }

    .logo-floating {
      position: absolute;
      left: -36px;
      bottom: 14px;
      z-index: 1;
      width: 58%;
      padding: 18px;
      border: 4px solid var(--ink);
      border-radius: 16px;
      background: #fff;
      transform: rotate(-6deg);
      box-shadow: 8px 8px 0 rgba(16,32,20,.13), inset 0 0 0 2px rgba(16,32,20,.05);
    }
    .logo-floating img { width: 100%; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(16,32,20,.10)); }

    .leaf-doodle {
      position: absolute;
      right: -24px;
      top: -24px;
      z-index: 0;
      width: 150px;
      height: 150px;
      transform: rotate(16deg);
      opacity: .9;
    }

    .ticker {
      overflow: hidden;
      border-block: 4px solid var(--ink);
      background: var(--olive);
      color: var(--paper);
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 26s linear infinite;
    }
    .ticker span {
      padding: 15px 18px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(20px, 3vw, 34px);
      letter-spacing: .05em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    @keyframes ticker { to { transform: translateX(-50%); } }

    .section-head {
      max-width: 840px;
      margin-bottom: 34px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      padding: 8px 12px;
      border: 3px solid var(--olive);
      border-radius: 8px;
      color: var(--paper);
      background: var(--olive);
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .14em;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 rgba(16,32,20,.12);
      transform: rotate(-1deg);
    }
    .kicker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); }

    h2 {
      margin-bottom: 18px;
      color: var(--green-deep);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(42px, 6vw, 88px);
      line-height: .87;
      letter-spacing: .01em;
      text-transform: uppercase;
    }

    .lead {
      color: rgba(16,32,20,.78);
      font-size: clamp(17px, 1.8vw, 20px);
      font-weight: 700;
      line-height: 1.62;
    }

    .manifesto {
      position: relative;
      padding-block: 84px;
      background:
        linear-gradient(180deg, rgba(255,250,240,.35), rgba(255,250,240,.12)),
        radial-gradient(circle at 92% 36%, rgba(242,223,114,.28), transparent 28%);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      position: relative;
      min-height: 292px;
      padding: 26px;
      border: 4px solid var(--ink);
      border-radius: 16px;
      background: var(--paper);
      box-shadow: var(--hard-shadow);
      overflow: hidden;
    }
    .card:nth-child(2) { background: var(--yellow); transform: rotate(1deg); }
    .card:nth-child(3) { background: #dfeee6; transform: rotate(-1deg); }
    .card:nth-child(4) { background: var(--paper-2); transform: rotate(.7deg); }

    .card::after {
      content: attr(data-num);
      position: absolute;
      right: 14px;
      bottom: -14px;
      color: rgba(16,32,20,.08);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 120px;
      line-height: 1;
    }

    .card-icon {
      width: 58px;
      height: 58px;
      margin-bottom: 22px;
      border: 3px solid var(--ink);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--olive);
      color: var(--paper);
      font-size: 24px;
      box-shadow: 4px 4px 0 rgba(16,32,20,.15);
    }

    .card h3 {
      margin-bottom: 12px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 31px;
      line-height: .95;
      text-transform: uppercase;
      letter-spacing: .02em;
    }
    .card p { margin: 0; color: rgba(16,32,20,.78); font-weight: 750; line-height: 1.55; }

    .app-hub {
      padding-block: 62px;
      background:
        radial-gradient(circle at 10% 10%, rgba(242,223,114,.22), transparent 28%),
        linear-gradient(180deg, rgba(255,250,240,.30), rgba(255,250,240,.10));
    }

    .app-hub-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .app-tile {
      position: relative;
      min-height: 330px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: clamp(24px, 3vw, 34px);
      border: 4px solid var(--ink);
      border-radius: 18px;
      background: var(--paper);
      box-shadow: 12px 12px 0 rgba(16,32,20,.13), var(--shadow);
      overflow: hidden;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .app-tile:hover,
    .app-tile:focus-visible {
      transform: translate(-2px, -2px);
      box-shadow: 16px 16px 0 rgba(16,32,20,.13), var(--shadow);
      outline: none;
    }

    .app-tile::after {
      position: absolute;
      right: 18px;
      bottom: -10px;
      color: rgba(16,32,20,.07);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(92px, 12vw, 164px);
      line-height: .8;
      text-transform: uppercase;
      pointer-events: none;
    }

    .app-tile-program {
      background: linear-gradient(135deg, var(--green-deep), var(--olive-dark));
      color: var(--paper);
    }

    .app-tile-program::after {
      content: "LIVE";
      color: rgba(255,250,240,.08);
    }

    .app-tile-media {
      background: linear-gradient(135deg, var(--paper), #fff7dc 56%, var(--mint-soft));
      transform: rotate(1deg);
    }

    .app-tile-media::after {
      content: "PDF";
    }

    .app-tile-join {
      background: linear-gradient(135deg, var(--yellow), #fff4b8 54%, var(--paper));
      transform: rotate(-1deg);
    }

    .app-tile-join::after {
      content: "NRW";
    }

    .app-tile-label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .12em;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 rgba(16,32,20,.14);
    }

    .app-tile strong {
      position: relative;
      z-index: 1;
      max-width: 660px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(34px, 4.2vw, 62px);
      line-height: .88;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .app-tile p {
      position: relative;
      z-index: 1;
      max-width: 620px;
      margin: 0;
      color: inherit;
      opacity: .82;
      font-size: clamp(16px, 1.6vw, 19px);
      font-weight: 720;
      line-height: 1.55;
    }

    .app-tile-action {
      position: relative;
      z-index: 1;
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      min-height: 46px;
      padding: 0 16px;
      border: 3px solid var(--ink);
      border-radius: 8px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 5px 5px 0 rgba(16,32,20,.16);
    }

    .split {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 54px;
      align-items: center;
    }

    .poster-panel {
      position: relative;
      border: 4px solid var(--ink);
      border-radius: 18px;
      padding: 12px;
      background: var(--paper);
      box-shadow: 14px 14px 0 rgba(16,32,20,.12), var(--shadow);
      transform: rotate(-1.3deg);
    }
    .poster-panel img { border-radius: 10px; width: 100%; }
    .poster-panel::before {
      content: "TEILEN";
      position: absolute;
      right: -20px;
      top: 46px;
      padding: 8px 16px;
      border: 3px solid var(--ink);
      border-radius: 6px;
      color: var(--ink);
      background: var(--yellow);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 26px;
      transform: rotate(8deg);
      box-shadow: 5px 5px 0 rgba(16,32,20,.14);
    }

    .action-grid {
      display: grid;
      gap: 14px;
      margin: 28px 0 0;
    }

    .action-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border: 3px solid var(--ink);
      border-radius: 14px;
      background: rgba(255,250,240,.72);
      box-shadow: 5px 5px 0 rgba(16,32,20,.10);
    }
    .action-item:nth-child(2) { background: rgba(242,223,114,.62); }

    .action-date {
      display: grid;
      place-items: center;
      min-height: 64px;
      border: 3px solid var(--olive);
      border-radius: 12px;
      color: var(--paper);
      background: var(--olive);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 24px;
      line-height: .9;
      text-align: center;
      text-transform: uppercase;
    }
    .action-date small { display: block; font-size: 12px; letter-spacing: .08em; }
    .action-item strong { display: block; margin-bottom: 4px; font-size: 18px; }
    .action-item p { margin: 0; color: rgba(16,32,20,.74); font-weight: 700; line-height: 1.5; }

    .wide-panel {
      position: relative;
      overflow: hidden;
      padding: 42px;
      border: 4px solid var(--ink);
      border-radius: 22px;
      background: var(--green-deep);
      color: var(--paper);
      box-shadow: 14px 14px 0 rgba(16,32,20,.13), var(--shadow);
    }
    .wide-panel::after {
      content: "WIR SIND IN DER PFLICHT";
      position: absolute;
      right: -18px;
      bottom: -8px;
      color: rgba(255,250,240,.08);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(58px, 10vw, 150px);
      line-height: .72;
      text-align: right;
      text-transform: uppercase;
      pointer-events: none;
    }
    .wide-panel > * { position: relative; z-index: 2; }
    .wide-panel .kicker { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
    .wide-panel h2 { color: var(--paper); max-width: 900px; }
    .wide-panel .lead { color: rgba(255,250,240,.82); max-width: 840px; }

    .principles {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }
    .principle {
      padding: 22px;
      border: 3px solid rgba(255,250,240,.85);
      border-radius: 14px;
      background: rgba(255,250,240,.08);
    }
    .principle strong {
      display: block;
      margin-bottom: 9px;
      color: var(--yellow);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: .03em;
    }
    .principle p { margin: 0; color: rgba(255,250,240,.78); font-weight: 650; line-height: 1.55; }

    .support-panel {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 34px;
      align-items: center;
      padding: 34px;
      border: 4px solid var(--ink);
      border-radius: 22px;
      background: var(--paper);
      box-shadow: 14px 14px 0 rgba(16,32,20,.13), var(--shadow);
    }

    .support-panel h2 { margin-bottom: 18px; }
    .support-panel p { color: rgba(16,32,20,.78); font-weight: 720; line-height: 1.62; }

    .logo-grid-shell {
      position: relative;
      padding: 16px;
      border: 3px solid var(--ink);
      border-radius: 16px;
      background: #fff;
      transform: rotate(1deg);
      box-shadow: 7px 7px 0 rgba(16,32,20,.12), inset 0 0 0 2px rgba(16,32,20,.04);
    }
    .logo-grid-shell::before {
      content: "UNTERSTÜTZER";
      position: absolute;
      left: -22px;
      top: -22px;
      padding: 8px 14px;
      border: 3px solid var(--ink);
      border-radius: 6px;
      background: var(--yellow);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 22px;
      transform: rotate(-5deg);
      box-shadow: 4px 4px 0 rgba(16,32,20,.14);
    }
    .logo-grid-shell img { width: 100%; border-radius: 10px; }


    .sponsor-names-line {
      margin: 14px 4px 2px;
      padding-top: 12px;
      border-top: 2px solid rgba(16,32,20,.16);
      color: rgba(16,32,20,.78);
      font-size: clamp(11px, 1.25vw, 14px);
      font-weight: 850;
      line-height: 1.55;
      letter-spacing: .025em;
      text-align: center;
    }
    .sponsor-names-line strong {
      color: var(--olive);
      font-weight: 1000;
      text-transform: uppercase;
      letter-spacing: .055em;
    }

    .share-kit {
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 24px;
      align-items: stretch;
    }

    .share-card, .contact-card {
      padding: 30px;
      border: 4px solid var(--ink);
      border-radius: 22px;
      background: rgba(255,250,240,.72);
      box-shadow: 12px 12px 0 rgba(16,32,20,.11);
    }

    .share-card h3, .contact-card h3 {
      margin-bottom: 12px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 38px;
      line-height: .95;
      text-transform: uppercase;
    }

    .share-text {
      width: 100%;
      min-height: 188px;
      margin: 12px 0 16px;
      padding: 18px;
      border: 3px solid var(--ink);
      border-radius: 14px;
      color: var(--ink);
      background: var(--paper);
      font-weight: 730;
      line-height: 1.55;
      resize: vertical;
      box-shadow: inset 3px 3px 0 rgba(16,32,20,.06);
    }

    .mini-note {
      margin: 0;
      color: rgba(16,32,20,.68);
      font-size: 14px;
      font-weight: 750;
      line-height: 1.5;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }
    .contact-row {
      padding: 16px;
      border: 3px solid var(--ink);
      border-radius: 14px;
      background: var(--paper);
      font-weight: 900;
      box-shadow: 4px 4px 0 rgba(16,32,20,.10);
    }
    .contact-row span {
      display: block;
      margin-bottom: 3px;
      color: var(--olive-dark);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    form {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }
    label {
      display: grid;
      gap: 7px;
      color: rgba(16,32,20,.78);
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    input, select, textarea {
      width: 100%;
      padding: 15px 16px;
      border: 3px solid var(--ink);
      border-radius: 12px;
      color: var(--ink);
      background: var(--paper);
      outline: none;
    }
    textarea { min-height: 116px; resize: vertical; }
    input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 5px rgba(242,223,114,.45); }

    .footer {
      padding: 34px 22px 50px;
      color: rgba(16,32,20,.72);
      background: rgba(255,250,240,.38);
      border-top: 4px solid var(--ink);
    }
    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 14px;
      font-weight: 800;
    }

    .footer-credit {
      color: var(--olive-dark);
      letter-spacing: .08em;
      text-transform: uppercase;
      line-height: 1.35;
    }
    .footer-credit strong {
      color: var(--green);
      text-shadow: 0 0 14px rgba(40,255,93,.28);
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .ticker-track { animation: none; }
      .btn { transition: none; }
      .join-hero-visual::before,
      .join-phone,
      .join-floating-note,
      .join-page .hero-label {
        animation: none;
      }
    }

    @media (max-width: 1040px) {
      .hero-inner, .split, .support-panel, .share-kit { grid-template-columns: 1fr; }
      .hero-art { min-height: auto; max-width: 620px; margin: 0 auto; }
      .logo-floating { display: none; }
      .bubble {
        right: 14px;
        bottom: 54px;
        width: clamp(170px, 30vw, 220px);
        min-height: clamp(170px, 30vw, 220px);
      }
      .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .principles { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      .nav { padding-inline: 16px; }
      .nav-links { display: none; }
      .brand-title span { display: none; }
      .brand-mark {
        width: 94px;
        min-width: 94px;
        height: 58px;
        padding: 6px 8px;
        border-radius: 12px;
      }
      .site-header .btn { min-height: 42px; padding-inline: 14px; font-size: 11px; }
      .hero { padding-top: 42px; }
      .title-ribbon { font-size: clamp(44px, 13vw, 70px); }
      .title-ribbon:nth-child(2), .title-ribbon:nth-child(3) { transform: rotate(0deg) translateX(0); }
      .facts-strip, .cards { grid-template-columns: 1fr; }
      .app-hub-grid { grid-template-columns: 1fr; }
      .app-tile { min-height: 280px; border-width: 3px; border-radius: 16px; }
      .app-tile-media { transform: none; }
      .section { padding-block: 56px; }
      .flyer-card, .poster-panel, .support-panel, .wide-panel, .share-card, .contact-card { border-width: 3px; border-radius: 16px; }
      .wide-panel, .support-panel, .share-card, .contact-card { padding: 22px; }
      .bubble {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        margin-top: 14px;
        border-radius: 18px;
        transform: none;
        padding: 18px;
      }
      .bubble strong { font-size: clamp(24px, 8vw, 34px); }
      .bubble span { font-size: 13px; line-height: 1.25; }
      .flyer-label { left: 10px; top: 14px; font-size: 18px; }
      .action-item { grid-template-columns: 1fr; }
      h2 { font-size: clamp(38px, 12vw, 58px); }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
    }

    @media (max-width: 560px) {
      .sponsor-names-line { font-size: 10.5px; line-height: 1.5; }
    }


    /* Legal modals & cookie banner */
    body.modal-open { overflow: hidden; }

    .footer-inner {
      align-items: center;
      flex-wrap: wrap;
    }

    .legal-footer-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 10px 16px;
      min-width: min(100%, 420px);
    }

    .legal-link {
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--olive-dark);
      cursor: pointer;
      padding: 0;
      font: inherit;
      font-weight: 850;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      opacity: .92;
    }

    .legal-link:hover,
    .legal-link:focus-visible {
      color: var(--green-deep);
      outline: none;
    }

    .cookie-banner {
      position: fixed;
      left: clamp(14px, 3vw, 30px);
      right: clamp(14px, 3vw, 30px);
      bottom: clamp(14px, 3vw, 30px);
      z-index: 9998;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
      max-width: 1180px;
      margin: 0 auto;
      padding: clamp(18px, 2.4vw, 26px);
      color: var(--ink);
      border: 3px solid var(--ink);
      border-radius: 24px;
      background:
        radial-gradient(circle at 10% 0%, rgba(242,223,114,.34), transparent 34%),
        linear-gradient(135deg, var(--paper), #fff7dc 58%, var(--mint-soft));
      box-shadow: 12px 12px 0 rgba(16, 32, 20, .20), 0 24px 70px rgba(16,32,20,.25);
    }

    .cookie-banner[hidden] { display: none !important; }

    .cookie-sticker,
    .legal-label {
      width: max-content;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 13px;
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: var(--yellow);
      box-shadow: 4px 4px 0 rgba(16,32,20,.16);
      font-weight: 950;
      font-size: 12px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .12em;
      transform: rotate(-2deg);
    }

    .cookie-copy h2 {
      margin: 0 0 6px;
      font-size: clamp(20px, 2.3vw, 30px);
      line-height: .95;
      text-transform: uppercase;
      letter-spacing: .02em;
      font-weight: 1000;
    }

    .cookie-copy p {
      margin: 0;
      max-width: 720px;
      font-weight: 750;
      line-height: 1.48;
    }

    .cookie-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn-mini {
      min-height: 44px;
      padding: 11px 16px;
      border: 2px solid var(--ink);
      border-radius: 10px;
      box-shadow: 4px 4px 0 rgba(16,32,20,.16);
      cursor: pointer;
      font-weight: 950;
      font-size: 12px;
      line-height: 1;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .btn-mini-yellow { background: var(--yellow); color: var(--ink); }
    .btn-mini-paper { background: var(--paper); color: var(--ink); }
    .btn-mini-green { background: var(--olive); color: var(--paper); }

    .btn-mini:hover,
    .btn-mini:focus-visible {
      transform: translate(-1px, -1px);
      outline: none;
    }

    .legal-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: clamp(14px, 3vw, 30px);
    }

    .legal-modal.is-open { display: flex; }

    .legal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9, 28, 16, .76);
      backdrop-filter: blur(5px);
    }

    .legal-dialog {
      position: relative;
      width: min(980px, 100%);
      max-height: min(86vh, 900px);
      overflow: auto;
      border: 3px solid var(--ink);
      border-radius: 28px;
      background:
        radial-gradient(circle at 14% 0%, rgba(242,223,114,.28), transparent 32%),
        linear-gradient(180deg, var(--paper), #fff7dc 100%);
      box-shadow: 15px 15px 0 rgba(0,0,0,.22), var(--shadow);
      padding: clamp(22px, 4vw, 44px);
      scrollbar-width: thin;
    }

    .modal-close {
      position: sticky;
      top: 0;
      float: right;
      z-index: 1;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin: -6px -6px 12px 18px;
      border: 3px solid var(--ink);
      border-radius: 999px;
      background: var(--yellow);
      box-shadow: 4px 4px 0 rgba(16,32,20,.16);
      cursor: pointer;
      font-size: 26px;
      line-height: 1;
      font-weight: 950;
    }

    .modal-close:hover,
    .modal-close:focus-visible {
      transform: translate(-1px, -1px);
      outline: none;
    }

    .legal-dialog h2 {
      clear: none;
      margin: 14px 0 16px;
      font-size: clamp(38px, 7vw, 78px);
      line-height: .86;
      text-transform: uppercase;
      letter-spacing: -.035em;
      color: var(--olive-dark);
      text-shadow: 3px 3px 0 rgba(16,32,20,.12);
    }

    .legal-dialog h3 {
      margin: 26px 0 10px;
      font-size: clamp(20px, 2.6vw, 30px);
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .02em;
      color: var(--ink);
    }

    .legal-dialog p,
    .legal-dialog li {
      font-weight: 700;
      line-height: 1.58;
    }

    .legal-dialog ul {
      padding-left: 20px;
      margin: 10px 0 18px;
    }

    .legal-box-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin: 18px 0 24px;
    }

    .legal-box {
      border: 2px solid rgba(16,32,20,.78);
      border-radius: 16px;
      padding: 16px;
      background: rgba(159,202,189,.26);
      box-shadow: 5px 5px 0 rgba(16,32,20,.10);
    }

    .legal-box strong {
      display: block;
      margin-bottom: 8px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .legal-muted {
      color: rgba(16,32,20,.76);
      font-size: 14px;
    }

    .legal-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    @media (max-width: 860px) {
      .cookie-banner {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .cookie-actions { justify-content: flex-start; }
      .legal-box-grid { grid-template-columns: 1fr; }
      .footer-inner { align-items: flex-start; }
      .legal-footer-links { justify-content: flex-start; }
    }

    @media (max-width: 520px) {
      .cookie-actions,
      .legal-actions { width: 100%; }
      .btn-mini { width: 100%; }
      .legal-dialog { border-radius: 22px; max-height: 88vh; }
      .modal-close { width: 40px; height: 40px; font-size: 24px; }
    }



    /* Final mobile hardening */
    html, body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    *, *::before, *::after {
      min-width: 0;
    }

    img, svg, video {
      max-width: 100%;
      height: auto;
    }

    .cta-short { display: none; }

    @media (max-width: 860px) {
      body {
        padding-top: 84px;
      }

      .site-header {
        top: 0;
      }

      .nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
      }

      .brand {
        min-width: 0;
        gap: 10px;
      }

      .brand-title {
        min-width: 0;
        max-width: 100%;
      }

      .brand-title strong,
      .brand-title span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .site-header .btn,
      .site-header .header-cta {
        width: auto;
        min-width: 0;
        justify-self: end;
        white-space: nowrap;
        padding-inline: 14px;
      }
    }

    @media (max-width: 760px) {
      :root {
        --section: clamp(54px, 12vw, 76px);
      }

      .page-marquee {
        font-size: 18px;
        padding-block: 8px;
      }

      .hero {
        padding-top: 32px;
      }

      .hero-inner {
        gap: 30px;
      }

      .eyebrow {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .stamp {
        transform: none !important;
        max-width: 100%;
        white-space: nowrap;
      }

      .poster-title {
        gap: 8px;
      }

      .title-ribbon {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
        line-height: .88;
        font-size: clamp(38px, 12vw, 64px);
        padding: .10em .16em .14em;
      }

      .poster-title .title-ribbon:nth-child(2),
      .poster-title .title-ribbon:nth-child(3) {
        width: 100%;
      }

      .intro {
        font-size: clamp(18px, 5vw, 24px);
      }

      .btn {
        white-space: normal;
        text-align: center;
        line-height: 1.12;
      }

      .hero-actions .btn,
      .share-actions .btn,
      .final-actions .btn {
        width: 100%;
      }

      .site-header .btn,
      .site-header .header-cta {
        width: auto;
        min-height: 42px;
        white-space: nowrap;
      }

      .hero-art {
        width: 100%;
        max-width: 520px;
      }

      .flyer-card {
        transform: none;
        border-radius: 22px;
      }

      .flyer-label {
        left: 10px;
        top: -18px;
        max-width: calc(100% - 20px);
        font-size: clamp(18px, 6vw, 28px);
        transform: rotate(-3deg);
      }

      .bubble {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
      }

      .bubble strong {
        font-size: clamp(25px, 8.5vw, 40px);
        line-height: .9;
      }

      .logo-floating,
      .leaf-doodle {
        display: none;
      }

      .support-logo,
      .final-logo {
        transform: none;
        padding: 16px;
      }

      .support-panel,
      .final-cta {
        border-radius: 22px;
        padding: clamp(22px, 6vw, 32px);
      }

      .section-head h2,
      .support-copy h2,
      .share-copy h2,
      .final-copy h2 {
        overflow-wrap: anywhere;
      }

      .partner-line {
        font-size: 13px;
        line-height: 1.45;
      }
    }

    @media (max-width: 560px) {
      .brand-title span {
        display: none;
      }

      .brand-title strong {
        font-size: 12px;
        letter-spacing: .07em;
      }

      .brand-mark {
        width: 86px;
        min-width: 86px;
        height: 54px;
        padding: 6px 7px;
        border-radius: 11px;
      }

      .header-cta .cta-full { display: none; }
      .header-cta .cta-short { display: inline; }

      .site-header .header-cta {
        padding-inline: 12px;
        min-height: 40px;
        font-size: 11px;
      }

      .hero,
      .section,
      .site-footer {
        padding-inline: 14px;
      }

      .hero-inner {
        padding-inline: 0;
      }

      .eyebrow {
        gap: 7px;
      }

      .stamp {
        font-size: 15px;
        min-height: 34px;
        padding: 0 10px;
      }

      .title-ribbon {
        font-size: clamp(34px, 11.4vw, 52px);
        box-shadow: 5px 5px 0 rgba(16,32,20,.12);
      }

      .intro {
        max-width: 100%;
      }

      .fact-card,
      .info-card,
      .share-card {
        border-radius: 16px;
        padding: 18px;
      }

      .flyer-card {
        border-width: 3px;
        box-shadow: 7px 7px 0 rgba(16,32,20,.18);
      }

      .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        max-height: calc(100dvh - 20px);
        overflow: auto;
        border-radius: 18px;
        padding: 16px;
        gap: 12px;
      }

      .cookie-sticker {
        transform: none;
        width: fit-content;
        max-width: 100%;
        white-space: normal;
      }

      .cookie-copy p {
        font-size: 13px;
        line-height: 1.35;
      }

      .cookie-actions {
        width: 100%;
      }

      .legal-modal {
        padding: 10px;
      }

      .legal-dialog {
        width: calc(100vw - 20px);
        max-height: calc(100dvh - 20px);
        border-radius: 20px;
        padding: 20px 16px;
      }

      .legal-dialog h2 {
        font-size: clamp(30px, 10vw, 48px);
        overflow-wrap: anywhere;
      }

      .legal-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
      }
    }

    @media (max-width: 390px) {
      body {
        padding-top: 72px;
      }

      .nav {
        padding: 9px 10px;
        gap: 8px;
      }

      .brand {
        gap: 8px;
      }

      .brand-title {
        display: none;
      }

      .brand-mark {
        width: 80px;
        min-width: 80px;
        height: 50px;
      }

      .site-header .header-cta {
        padding-inline: 10px;
        min-height: 38px;
      }

      .stamp {
        font-size: 13px;
      }

      .title-ribbon {
        font-size: clamp(31px, 10.7vw, 42px);
        letter-spacing: .012em;
      }

      .btn {
        font-size: 11px;
        min-height: 46px;
      }
    }

    /* Shared responsive menu */
    .mobile-menu {
      position: relative;
      display: none;
    }

    .mobile-menu summary {
      list-style: none;
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border: 3px solid var(--ink);
      border-radius: 8px;
      background: var(--paper);
      box-shadow: 4px 4px 0 rgba(16,32,20,.14);
      cursor: pointer;
      color: var(--ink);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .08em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu[open] summary {
      background: var(--yellow);
    }

    .mobile-menu-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      z-index: 60;
      width: min(270px, calc(100vw - 28px));
      display: grid;
      gap: 8px;
      padding: 14px;
      border: 3px solid var(--ink);
      border-radius: 16px;
      background: var(--paper);
      box-shadow: 9px 9px 0 rgba(16,32,20,.16), var(--shadow);
    }

    .mobile-menu-panel a {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 10px 12px;
      border: 2px solid rgba(16,32,20,.70);
      border-radius: 10px;
      background: rgba(159,202,189,.22);
      color: var(--ink);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .mobile-menu-panel a[aria-current="page"] {
      background: var(--yellow);
    }

    @media (max-width: 860px) {
      .nav {
        grid-template-columns: minmax(0, 1fr) auto auto;
      }

      .mobile-menu {
        display: block;
        justify-self: end;
      }
    }

    @media (max-width: 390px) {
      .mobile-menu summary {
        min-height: 38px;
        padding-inline: 10px;
      }
    }

    /* Program page */
    .program-page .hero {
      padding-bottom: 48px;
      color: var(--paper);
      border-bottom: 4px solid var(--ink);
      background:
        radial-gradient(circle at 16% 14%, rgba(242,223,114,.24), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(159,202,189,.22), transparent 26%),
        linear-gradient(135deg, var(--green-deep), var(--olive-dark) 56%, var(--olive));
    }

    /* Join page */
    .join-page .hero {
      padding-block: clamp(52px, 7vw, 88px) clamp(52px, 7vw, 78px);
      border-bottom: 4px solid var(--ink);
      background:
        radial-gradient(circle at 14% 12%, rgba(255,250,240,.62), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(242,223,114,.38), transparent 24%),
        linear-gradient(145deg, #b9d9ce, var(--mint) 42%, #eef3e5);
    }

    .join-page .hero::before {
      display: none;
    }

    .join-page .hero::after {
      content: "MITMACHEN · TEILEN · DABEI SEIN";
      bottom: 12px;
      color: rgba(79,103,38,.14);
      font-size: clamp(50px, 9vw, 144px);
      letter-spacing: -.035em;
    }

    .join-hero-inner {
      grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: center;
    }

    .join-hero-copy {
      position: relative;
      z-index: 2;
    }

    .join-page h1 {
      margin: 0 0 24px;
      max-width: 860px;
      color: var(--green-deep);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(54px, 8vw, 112px);
      line-height: .86;
      letter-spacing: .01em;
      text-transform: uppercase;
    }

    .join-page .hero-lead {
      max-width: 760px;
      color: rgba(16,32,20,.80);
      font-weight: 730;
      line-height: 1.56;
    }

    .join-quick-actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 760px;
      margin-top: 28px;
    }

    .join-quick-actions a {
      min-height: 92px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
      padding: 15px;
      border: 3px solid var(--ink);
      border-radius: 14px;
      background: rgba(255,250,240,.72);
      box-shadow: 5px 5px 0 rgba(16,32,20,.12);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .join-quick-actions a:hover,
    .join-quick-actions a:focus-visible {
      transform: translate(-2px, -2px);
      box-shadow: 8px 8px 0 rgba(16,32,20,.14);
      background: var(--yellow);
      outline: none;
    }

    .join-quick-actions span {
      color: var(--olive-dark);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .12em;
    }

    .join-quick-actions strong {
      font-size: 15px;
      line-height: 1.12;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .join-hero-visual {
      position: relative;
      min-height: clamp(520px, 58vw, 670px);
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .join-hero-visual::before {
      content: "";
      position: absolute;
      inset: 8% 0 10%;
      z-index: -1;
      border: 4px solid var(--ink);
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(255,250,240,.52), rgba(242,223,114,.48)),
        repeating-linear-gradient(-12deg, transparent, transparent 12px, rgba(16,32,20,.06) 12px, rgba(16,32,20,.06) 15px);
      box-shadow: 14px 14px 0 rgba(16,32,20,.12), var(--shadow);
      transform: rotate(2deg);
      animation: joinPanelFloat 7s ease-in-out infinite;
    }

    .join-phone {
      width: min(74%, 390px);
      border: 4px solid var(--ink);
      border-radius: 24px;
      background: var(--paper);
      padding: 14px;
      box-shadow: 16px 18px 0 rgba(16,32,20,.13), var(--shadow);
      transform: rotate(-3deg);
      animation: joinPhoneFloat 5.8s ease-in-out infinite;
    }

    .join-phone img {
      border-radius: 15px;
      width: 100%;
      aspect-ratio: 1240 / 1728;
      object-fit: cover;
    }

    .join-page .hero-label {
      position: absolute;
      left: 4%;
      top: 14%;
      z-index: 2;
      padding: 11px 16px;
      color: var(--paper);
      background: var(--olive);
      border: 3px solid var(--ink);
      border-radius: 6px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 22px;
      letter-spacing: .05em;
      text-transform: uppercase;
      transform: rotate(-8deg);
      box-shadow: 5px 5px 0 rgba(16,32,20,.16);
      animation: popIn .54s ease both;
    }

    .join-floating-note {
      position: absolute;
      z-index: 3;
      width: clamp(150px, 17vw, 210px);
      padding: 15px;
      border: 3px solid var(--ink);
      border-radius: 16px;
      background: var(--yellow);
      box-shadow: 7px 7px 0 rgba(16,32,20,.14);
      animation: floatBadge 6.5s ease-in-out infinite;
    }

    .join-floating-note span {
      display: block;
      margin-bottom: 6px;
      color: var(--olive-dark);
      font-size: 10px;
      font-weight: 1000;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .join-floating-note strong {
      display: block;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(25px, 3vw, 36px);
      line-height: .9;
      text-transform: uppercase;
    }

    .join-note-top {
      right: 0;
      top: 20%;
      transform: rotate(4deg);
    }

    .join-note-bottom {
      left: 0;
      bottom: 18%;
      background: var(--paper);
      transform: rotate(-5deg);
      animation-delay: -2s;
    }

    @keyframes joinPanelFloat {
      0%, 100% { transform: rotate(2deg) translateY(0); }
      50% { transform: rotate(1deg) translateY(-8px); }
    }

    @keyframes joinPhoneFloat {
      0%, 100% { transform: rotate(-3deg) translateY(0); }
      50% { transform: rotate(-1.8deg) translateY(-10px); }
    }

    @keyframes floatBadge {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -8px; }
    }

    @keyframes popIn {
      from { opacity: 0; transform: rotate(-8deg) scale(.88); }
      to { opacity: 1; transform: rotate(-8deg) scale(1); }
    }

    .program-page .hero::before {
      display: none;
    }

    .program-page .hero::after {
      content: "PROGRAMM · TALKS · LIVE MUSIK";
      bottom: 6px;
      color: rgba(255,250,240,.10);
      font-size: clamp(50px, 9vw, 144px);
      letter-spacing: -.035em;
    }

    .program-page .hero-inner {
      grid-template-columns: 1.02fr .98fr;
    }

    .program-page h1 {
      margin: 0 0 24px;
      max-width: 840px;
      color: var(--paper);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(54px, 8vw, 118px);
      line-height: .86;
      letter-spacing: .01em;
      text-transform: uppercase;
      text-shadow: 5px 5px 0 rgba(16,32,20,.22);
    }

    .program-page .hero-lead {
      max-width: 760px;
      color: rgba(255,250,240,.86);
      font-weight: 730;
      line-height: 1.56;
    }

    .program-page .hero .stamp:first-child {
      border-color: var(--yellow);
      color: var(--yellow);
      background: rgba(255,250,240,.08);
    }

    .program-page .hero .stamp:nth-child(2) {
      color: var(--ink);
      background: var(--yellow);
      border-color: var(--yellow);
    }

    .program-page .hero-card {
      position: relative;
      border: 4px solid var(--ink);
      border-radius: 18px;
      background: var(--paper);
      padding: 14px;
      box-shadow: 16px 18px 0 rgba(16,32,20,.13), var(--shadow);
      transform: rotate(2deg);
    }

    .program-page .hero .btn-secondary {
      background: rgba(255,250,240,.94);
    }

    .program-page .hero-card img {
      border-radius: 10px;
      width: 100%;
      aspect-ratio: 1240 / 1728;
      object-fit: cover;
    }

    .program-page .hero-label {
      position: absolute;
      left: -22px;
      top: 34px;
      z-index: 2;
      padding: 11px 16px;
      color: var(--paper);
      background: var(--olive);
      border: 3px solid var(--ink);
      border-radius: 6px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 22px;
      letter-spacing: .05em;
      text-transform: uppercase;
      transform: rotate(-8deg);
      box-shadow: 5px 5px 0 rgba(16,32,20,.16);
    }

    .program-grid {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 24px;
      align-items: start;
    }

    .info-panel,
    .timeline {
      border: 4px solid var(--ink);
      border-radius: 22px;
      background: rgba(255,250,240,.72);
      box-shadow: 12px 12px 0 rgba(16,32,20,.11);
    }

    .info-panel {
      position: sticky;
      top: 116px;
      padding: 28px;
    }

    .info-card {
      padding: 18px;
      border: 3px solid var(--ink);
      border-radius: 14px;
      background: var(--paper);
      box-shadow: 4px 4px 0 rgba(16,32,20,.10);
    }

    .info-card + .info-card {
      margin-top: 12px;
    }

    .info-card span {
      display: block;
      margin-bottom: 5px;
      color: var(--olive-dark);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .info-card strong {
      display: block;
      font-size: 20px;
      line-height: 1.18;
    }

    .timeline {
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .program-item {
      display: grid;
      grid-template-columns: 148px minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
      padding: 18px;
      border: 3px solid var(--ink);
      border-radius: 16px;
      background: var(--paper);
      box-shadow: 5px 5px 0 rgba(16,32,20,.10);
    }

    .program-item:nth-child(even) {
      background: rgba(242,223,114,.62);
    }

    .program-time {
      display: grid;
      place-items: center;
      min-height: 92px;
      padding: 12px;
      border: 3px solid var(--olive);
      border-radius: 13px;
      color: var(--paper);
      background: var(--olive);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(22px, 2.2vw, 30px);
      line-height: .9;
      text-align: center;
      text-transform: uppercase;
      overflow-wrap: anywhere;
    }

    .program-time small {
      display: block;
      margin-top: 5px;
      font-family: ui-sans-serif, system-ui, sans-serif;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .08em;
    }

    .program-copy h3 {
      margin: 0 0 8px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(27px, 3vw, 38px);
      line-height: .96;
      text-transform: uppercase;
      letter-spacing: .02em;
    }

    .program-copy p {
      margin: 0;
      color: rgba(16,32,20,.76);
      font-weight: 720;
      line-height: 1.56;
    }

    .speaker-link {
      text-decoration: underline;
      text-decoration-thickness: 3px;
      text-decoration-color: var(--yellow);
      text-underline-offset: 6px;
    }

    .speaker-link:hover,
    .speaker-link:focus-visible {
      color: var(--olive-dark);
      outline: none;
    }

    .notice {
      position: relative;
      overflow: hidden;
      padding: 42px;
      border: 4px solid var(--ink);
      border-radius: 22px;
      background: var(--green-deep);
      color: var(--paper);
      box-shadow: 14px 14px 0 rgba(16,32,20,.13), var(--shadow);
    }

    .notice::after {
      content: "FRIEDLICH · SICHTBAR · GEMEINSAM";
      position: absolute;
      right: -14px;
      bottom: -7px;
      color: rgba(255,250,240,.08);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(52px, 9vw, 132px);
      line-height: .72;
      text-align: right;
      text-transform: uppercase;
      pointer-events: none;
    }

    .notice > * {
      position: relative;
      z-index: 1;
    }

    .notice .kicker {
      border-color: var(--yellow);
      background: var(--yellow);
      color: var(--ink);
    }

    .notice h2 {
      color: var(--paper);
      max-width: 900px;
    }

    .notice .lead {
      color: rgba(255,250,240,.82);
      max-width: 850px;
    }

    @media (max-width: 1040px) {
      .program-page .hero-inner,
      .join-page .hero-inner,
      .program-grid {
        grid-template-columns: 1fr;
      }

      .program-page .hero-card {
        max-width: 620px;
        margin: 0 auto;
      }

      .join-hero-visual {
        max-width: 660px;
        width: 100%;
        margin: 0 auto;
      }

      .info-panel {
        position: static;
      }
    }

    @media (max-width: 760px) {
      .program-page h1 {
        font-size: clamp(42px, 13vw, 72px);
        overflow-wrap: anywhere;
      }

      .join-page h1 {
        font-size: clamp(42px, 13vw, 72px);
        overflow-wrap: anywhere;
      }

      .program-page .hero-card {
        transform: none;
        border-width: 3px;
        border-radius: 22px;
        box-shadow: 7px 7px 0 rgba(16,32,20,.18);
      }

      .program-page .hero-label {
        left: 10px;
        top: -18px;
        max-width: calc(100% - 20px);
        font-size: clamp(18px, 6vw, 28px);
        transform: rotate(-3deg);
      }

      .join-hero-visual {
        min-height: auto;
        padding: 28px 0 18px;
      }

      .join-hero-visual::before {
        inset: 7% 4% 6%;
        border-width: 3px;
        border-radius: 24px;
      }

      .join-phone {
        width: min(78%, 380px);
        border-width: 3px;
        border-radius: 20px;
      }

      .join-page .hero-label {
        left: 8%;
        top: 8%;
        font-size: clamp(18px, 6vw, 28px);
        transform: rotate(-5deg);
      }

      .join-floating-note {
        width: min(42vw, 180px);
        padding: 12px;
      }

      .join-quick-actions {
        grid-template-columns: 1fr;
      }

      .program-item {
        grid-template-columns: 1fr;
      }

      .program-time {
        min-height: 70px;
      }

      .notice,
      .info-panel,
      .timeline {
        border-width: 3px;
        border-radius: 18px;
      }

      .notice,
      .info-panel {
        padding: 22px;
      }

      .timeline {
        padding: 12px;
      }
    }

    /* Media page */
    .media-page .hero {
      padding-bottom: 48px;
    }

    .media-page .hero::before {
      display: none;
    }

    .media-page .hero::after {
      content: "PRESSE · MEDIA · DOWNLOADS";
      bottom: 6px;
      font-size: clamp(50px, 9vw, 144px);
      letter-spacing: -.035em;
    }

    .media-page .hero-inner {
      grid-template-columns: 1fr .86fr;
    }

    .media-page h1 {
      margin: 0 0 24px;
      max-width: 840px;
      color: var(--green-deep);
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(54px, 8vw, 118px);
      line-height: .86;
      letter-spacing: .01em;
      text-transform: uppercase;
    }

    .media-page .hero-lead {
      max-width: 760px;
      color: rgba(16,32,20,.80);
      font-weight: 730;
      line-height: 1.56;
    }

    .media-feature {
      position: relative;
      border: 4px solid var(--ink);
      border-radius: 22px;
      background: var(--paper);
      padding: 18px;
      box-shadow: 16px 18px 0 rgba(16,32,20,.13), var(--shadow);
      transform: rotate(2deg);
    }

    .media-label {
      position: absolute;
      left: -18px;
      top: 28px;
      z-index: 2;
      padding: 10px 16px;
      color: var(--paper);
      background: var(--olive);
      border: 3px solid var(--ink);
      border-radius: 6px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: 25px;
      letter-spacing: .05em;
      text-transform: uppercase;
      transform: rotate(-8deg);
      box-shadow: 5px 5px 0 rgba(16,32,20,.16);
    }

    .media-document {
      min-height: 430px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 18px;
      padding: clamp(26px, 4vw, 42px);
      border: 3px solid var(--ink);
      border-radius: 16px;
      background:
        radial-gradient(circle at 16% 10%, rgba(242,223,114,.48), transparent 28%),
        linear-gradient(155deg, #fff, var(--paper) 46%, var(--mint-soft));
      box-shadow: inset 0 0 0 2px rgba(16,32,20,.05);
    }

    .media-document span,
    .media-type {
      display: inline-flex;
      width: max-content;
      max-width: 100%;
      align-items: center;
      min-height: 34px;
      padding: 0 11px;
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .12em;
      line-height: 1;
      text-transform: uppercase;
    }

    .media-document strong {
      display: block;
      max-width: 520px;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(42px, 5vw, 72px);
      line-height: .86;
      text-transform: uppercase;
      letter-spacing: .01em;
    }

    .media-document p {
      max-width: 500px;
      margin: 0;
      color: rgba(16,32,20,.76);
      font-size: 18px;
      font-weight: 740;
      line-height: 1.52;
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .media-card {
      min-height: 300px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 26px;
      border: 4px solid var(--ink);
      border-radius: 16px;
      background: rgba(255,250,240,.72);
      box-shadow: var(--hard-shadow);
      overflow: hidden;
    }

    .media-card:nth-child(2),
    .media-card:nth-child(5) {
      background: rgba(242,223,114,.62);
      transform: rotate(1deg);
    }

    .media-card:nth-child(3),
    .media-card:nth-child(6) {
      background: #dfeee6;
      transform: rotate(-1deg);
    }

    .media-card-primary {
      background: var(--paper);
    }

    .media-card h3 {
      margin: 0;
      font-family: Impact, "Arial Black", sans-serif;
      font-size: clamp(30px, 3vw, 42px);
      line-height: .92;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .media-card p {
      margin: 0;
      color: rgba(16,32,20,.76);
      font-weight: 720;
      line-height: 1.56;
    }

    .media-card .btn {
      margin-top: auto;
    }

    @media (max-width: 1040px) {
      .media-page .hero-inner {
        grid-template-columns: 1fr;
      }

      .media-feature {
        max-width: 620px;
        margin: 0 auto;
      }

      .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .media-page h1 {
        font-size: clamp(42px, 13vw, 72px);
        overflow-wrap: anywhere;
      }

      .media-feature {
        transform: none;
        border-width: 3px;
        border-radius: 20px;
        box-shadow: 7px 7px 0 rgba(16,32,20,.18);
      }

      .media-label {
        left: 10px;
        top: -18px;
        max-width: calc(100% - 20px);
        font-size: clamp(18px, 6vw, 28px);
        transform: rotate(-3deg);
      }

      .media-document {
        min-height: 340px;
      }

      .media-grid {
        grid-template-columns: 1fr;
      }

      .media-card {
        min-height: 0;
        border-width: 3px;
        border-radius: 16px;
        transform: none !important;
      }
    }

    @media (max-width: 760px) {
      .home-page .hero {
        padding-top: 24px;
        padding-bottom: 34px;
      }

      .home-page .hero::after {
        display: none;
      }

      .home-page .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 26px;
      }

      .home-page .poster-title {
        margin-bottom: 18px;
      }

      .home-page .hero-lead {
        font-size: clamp(16px, 4.4vw, 18px);
        line-height: 1.48;
      }

      .home-page .hero-actions {
        margin: 24px 0 18px;
      }

      .home-page .facts-strip {
        gap: 10px;
      }

      .home-page .fact {
        padding: 14px;
        transform: none !important;
      }

      .home-page .hero-art {
        display: grid;
        gap: 12px;
        width: min(100%, 430px);
        max-width: 430px;
        min-height: 0;
        margin: 2px auto 0;
      }

      .home-page .flyer-card {
        display: grid;
        place-items: center;
        width: 100%;
        padding: 10px;
        border-radius: 18px;
        box-shadow: 7px 7px 0 rgba(16,32,20,.18), 0 18px 42px rgba(16,32,20,.18);
      }

      .home-page .flyer-card img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: min(72vh, 560px);
        aspect-ratio: auto;
        object-fit: contain;
        background: var(--paper);
      }

      .home-page .flyer-label {
        position: relative;
        left: auto;
        top: auto;
        z-index: 3;
        justify-self: start;
        width: fit-content;
        margin: 0 0 -4px 8px;
      }

      .home-page .bubble {
        width: 100%;
        margin-top: 0;
        box-shadow: 5px 5px 0 rgba(16,32,20,.14);
      }
    }

    @media (max-width: 430px) {
      .home-page .hero {
        padding-top: 18px;
      }

      .home-page .stamp {
        font-size: 13px;
        letter-spacing: .04em;
      }

      .home-page .title-ribbon {
        font-size: clamp(31px, 10.4vw, 44px);
      }

      .home-page .hero-art {
        width: 100%;
      }

      .home-page .flyer-card img {
        max-height: 62vh;
      }
    }

    html.frame-mobile body {
      padding-top: 84px;
    }

    html.frame-mobile .site-header {
      position: fixed;
      top: 0;
    }

    html.frame-mobile .nav {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
    }

    html.frame-mobile .brand {
      min-width: 0;
      gap: 10px;
    }

    html.frame-mobile .brand-title {
      min-width: 0;
      max-width: 100%;
    }

    html.frame-mobile .brand-title strong {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 12px;
      letter-spacing: .07em;
    }

    html.frame-mobile .brand-title span,
    html.frame-mobile .header-cta .cta-full {
      display: none;
    }

    html.frame-mobile .header-cta .cta-short {
      display: inline;
    }

    html.frame-mobile .brand-mark {
      width: 86px;
      min-width: 86px;
      height: 54px;
      padding: 6px 7px;
      border-radius: 11px;
    }

    html.frame-mobile .nav-links {
      display: none;
    }

    html.frame-mobile .mobile-menu {
      display: block;
      justify-self: end;
    }

    html.frame-mobile .site-header .btn,
    html.frame-mobile .site-header .header-cta {
      width: auto;
      min-width: 0;
      min-height: 40px;
      padding-inline: 12px;
      font-size: 11px;
      white-space: nowrap;
    }

    html.frame-mobile .hero,
    html.frame-mobile .section,
    html.frame-mobile .footer {
      padding-inline: 14px;
    }

    html.frame-mobile .hero {
      padding-top: 32px;
    }

    html.frame-mobile .section {
      padding-block: 56px;
    }

    html.frame-mobile .hero-inner,
    html.frame-mobile .split,
    html.frame-mobile .support-panel,
    html.frame-mobile .share-kit,
    html.frame-mobile .program-grid,
    html.frame-mobile .media-page .hero-inner,
    html.frame-mobile .join-hero-inner {
      grid-template-columns: 1fr;
    }

    html.frame-mobile .hero-inner,
    html.frame-mobile .join-hero-inner {
      gap: 30px;
    }

    html.frame-mobile .stamp-row {
      gap: 7px;
    }

    html.frame-mobile .stamp {
      max-width: 100%;
      min-height: 34px;
      padding: 0 10px;
      font-size: 15px;
      white-space: nowrap;
      transform: none !important;
    }

    html.frame-mobile .poster-title {
      gap: 8px;
    }

    html.frame-mobile .title-ribbon,
    html.frame-mobile .poster-title .title-ribbon:nth-child(2),
    html.frame-mobile .poster-title .title-ribbon:nth-child(3) {
      width: 100%;
      max-width: 100%;
      padding: .10em .16em .14em;
      font-size: clamp(34px, 11.4vw, 52px);
      line-height: .88;
      white-space: normal;
      overflow-wrap: anywhere;
      transform: none;
    }

    html.frame-mobile h1,
    html.frame-mobile h2,
    html.frame-mobile .program-page h1,
    html.frame-mobile .media-page h1,
    html.frame-mobile .join-page h1 {
      overflow-wrap: anywhere;
    }

    html.frame-mobile .facts-strip,
    html.frame-mobile .cards,
    html.frame-mobile .principles,
    html.frame-mobile .app-hub-grid,
    html.frame-mobile .media-grid,
    html.frame-mobile .join-quick-actions {
      grid-template-columns: 1fr;
    }

    html.frame-mobile .btn {
      white-space: normal;
      text-align: center;
      line-height: 1.12;
    }

    html.frame-mobile .hero-actions,
    html.frame-mobile .share-actions,
    html.frame-mobile .contact-actions,
    html.frame-mobile .final-actions {
      flex-direction: column;
      align-items: stretch;
    }

    html.frame-mobile .hero-actions .btn,
    html.frame-mobile .share-actions .btn,
    html.frame-mobile .contact-actions .btn,
    html.frame-mobile .final-actions .btn {
      width: 100%;
    }

    html.frame-mobile .site-header .btn {
      width: auto;
    }

    html.frame-mobile .hero-art,
    html.frame-mobile .program-page .hero-art,
    html.frame-mobile .join-hero-visual {
      width: 100%;
      max-width: 520px;
      min-height: auto;
      margin: 0 auto;
    }

    html.frame-mobile .flyer-card,
    html.frame-mobile .poster-panel,
    html.frame-mobile .support-panel,
    html.frame-mobile .wide-panel,
    html.frame-mobile .share-card,
    html.frame-mobile .contact-card,
    html.frame-mobile .program-page .hero-card,
    html.frame-mobile .media-feature,
    html.frame-mobile .join-phone,
    html.frame-mobile .final-cta {
      border-width: 3px;
      border-radius: 20px;
      transform: none;
    }

    html.frame-mobile .wide-panel,
    html.frame-mobile .support-panel,
    html.frame-mobile .share-card,
    html.frame-mobile .contact-card,
    html.frame-mobile .final-cta {
      padding: 22px;
    }

    html.frame-mobile .flyer-label,
    html.frame-mobile .media-label {
      left: 10px;
      top: -18px;
      max-width: calc(100% - 20px);
      font-size: clamp(18px, 6vw, 28px);
      transform: rotate(-3deg);
    }

    html.frame-mobile .bubble {
      position: relative;
      right: auto;
      bottom: auto;
      width: 100%;
      max-width: 100%;
      min-height: 0;
      margin-top: 14px;
      padding: 18px;
      border-radius: 18px;
      transform: none;
    }

    html.frame-mobile .logo-floating,
    html.frame-mobile .leaf-doodle {
      display: none;
    }

    html.frame-mobile .action-item,
    html.frame-mobile .program-item {
      grid-template-columns: 1fr;
    }

    html.frame-mobile .media-card,
    html.frame-mobile .card {
      min-height: 0;
      border-width: 3px;
      border-radius: 16px;
      transform: none !important;
    }

    html.frame-mobile .media-document {
      min-height: 340px;
    }

    html.frame-mobile .join-hero-visual {
      padding: 28px 0 18px;
    }

    html.frame-mobile .join-floating-note {
      width: min(42vw, 180px);
      padding: 12px;
    }

    html.frame-mobile .home-page .hero {
      padding-top: 24px;
      padding-bottom: 34px;
    }

    html.frame-mobile .home-page .hero::after {
      display: none;
    }

    html.frame-mobile .home-page .hero-inner {
      grid-template-columns: minmax(0, 1fr);
      align-items: start;
      gap: 26px;
    }

    html.frame-mobile .home-page .hero-art {
      display: grid;
      gap: 12px;
      width: 100%;
      max-width: 100%;
      min-height: 0;
      margin: 2px auto 0;
    }

    html.frame-mobile .home-page .flyer-card {
      display: grid;
      place-items: center;
      width: 100%;
      padding: 10px;
      border-radius: 18px;
      box-shadow: 7px 7px 0 rgba(16,32,20,.18), 0 18px 42px rgba(16,32,20,.18);
    }

    html.frame-mobile .home-page .flyer-card img {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: none;
      aspect-ratio: 1240 / 1728;
      object-fit: cover;
      background: var(--paper);
    }

    html.frame-mobile .home-page .flyer-label {
      position: relative;
      left: auto;
      top: auto;
      justify-self: start;
      width: fit-content;
      margin: 0 0 -4px 8px;
    }

    html.frame-mobile .home-page .bubble {
      width: 100%;
      margin-top: 0;
      box-shadow: 5px 5px 0 rgba(16,32,20,.14);
    }

    @media (max-width: 390px) {
      html.frame-mobile body {
        padding-top: 70px;
      }

      html.frame-mobile .nav {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 9px 10px;
        gap: 8px;
      }

      html.frame-mobile .brand-title {
        display: none;
      }

      html.frame-mobile .brand-mark {
        width: 80px;
        min-width: 80px;
        height: 50px;
      }

      html.frame-mobile .site-header .header-cta {
        display: none;
      }
    }
