/* ================================================================
         DONAU 3 FM - DER MOEBEL-TORNADO
         Redaktionell leicht pflegbare Ein-Datei-Seite.
         Farben, Abstaende und Rundungen liegen zentral in :root.
         ================================================================ */

      :root {
        --red: #d71920;
        --red-dark: #a80e17;
        --red-deep: #74040b;
        --ink: #17171a;
        --muted: #5d5d64;
        --paper: #fffdf8;
        --cream: #f7f1e7;
        --yellow: #ffd400;
        --cyan: #1fb9dc;
        --pink: #ed1585;
        --lime: #a4d928;
        --orange: #ff7800;
        --line: rgba(23, 23, 26, 0.12);
        --shadow: 0 24px 70px rgba(68, 11, 16, 0.16);
        --radius: 1.5rem;
        --content: 72rem;
        --display: "Arial Black", "Arial Narrow", Arial, sans-serif;
        --body: Arial, Helvetica, sans-serif;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        overflow-x: hidden;
        color: var(--ink);
        background: var(--paper);
        font-family: var(--body);
        line-height: 1.55;
        text-rendering: optimizeLegibility;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -3;
        pointer-events: none;
        background:
          radial-gradient(circle at 8% 12%, rgba(255, 212, 0, 0.16), transparent 20rem),
          radial-gradient(circle at 92% 32%, rgba(31, 185, 220, 0.12), transparent 24rem),
          var(--paper);
      }

      img {
        display: block;
        height: auto;
        max-width: 100%;
      }

      a {
        color: inherit;
      }

      button,
      a {
        -webkit-tap-highlight-color: transparent;
      }

      :focus-visible {
        outline: 4px solid var(--yellow);
        outline-offset: 4px;
      }

      .skip-link {
        position: fixed;
        top: 0.75rem;
        left: 0.75rem;
        z-index: 1000;
        padding: 0.8rem 1rem;
        transform: translateY(-180%);
        border-radius: 0.6rem;
        color: #fff;
        background: var(--ink);
        font-weight: 800;
      }

      .skip-link:focus {
        transform: translateY(0);
      }

      .container {
        width: min(calc(100% - 2rem), var(--content));
        margin-inline: auto;
      }

      .site-header {
        position: relative;
        z-index: 20;
        border-bottom: 1px solid var(--line);
        background: rgba(255, 253, 248, 0.94);
        backdrop-filter: blur(14px);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 4.6rem;
        gap: 1rem;
      }

      .brand-lockup {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        min-width: 0;
      }

      .brand-lockup img:first-child {
        width: 7.8rem;
      }

      .brand-lockup img:last-child {
        width: 7.6rem;
      }

      .brand-lockup img,
      .footer-brands img {
        height: auto;
        object-fit: contain;
      }

      .brand-divider {
        width: 1px;
        height: 2.2rem;
        flex: 0 0 auto;
        background: var(--line);
      }

      .header-note {
        display: none;
        color: var(--muted);
        font-size: 0.85rem;
        font-weight: 800;
        text-align: right;
      }

      .status-bar {
        position: relative;
        z-index: 11;
        overflow: hidden;
        color: #fff;
        background: var(--red-dark);
      }

      .status-bar::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.16;
        background: repeating-linear-gradient(
          120deg,
          transparent 0 22px,
          #fff 22px 24px
        );
      }

      .status-inner {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.8rem;
        padding-block: 0.55rem;
        text-align: center;
        font-size: 0.8rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      .hero {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        color: #fff;
        background:
          radial-gradient(circle at 80% 38%, rgba(255, 212, 0, 0.28), transparent 24rem),
          linear-gradient(135deg, var(--red-deep), var(--red) 62%, #e53329);
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: auto -20% -26rem 22%;
        z-index: -2;
        height: 42rem;
        transform: rotate(-8deg);
        border-radius: 50%;
        background: #fff;
        opacity: 0.08;
      }

      .bunting {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3.6rem;
        z-index: 4;
        pointer-events: none;
        opacity: 0.98;
      }

      .bunting::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(155deg, transparent 49%, var(--orange) 50%) 0 0 / 14% 100%,
          linear-gradient(155deg, transparent 49%, var(--cyan) 50%) 16% 0 / 14% 100%,
          linear-gradient(155deg, transparent 49%, var(--yellow) 50%) 32% 0 / 14% 100%,
          linear-gradient(155deg, transparent 49%, var(--pink) 50%) 48% 0 / 14% 100%,
          linear-gradient(155deg, transparent 49%, var(--lime) 50%) 64% 0 / 14% 100%,
          linear-gradient(155deg, transparent 49%, var(--cyan) 50%) 80% 0 / 14% 100%;
        background-repeat: no-repeat;
        clip-path: polygon(0 0, 100% 0, 100% 16%, 0 66%);
      }

      .hero-grid {
        display: grid;
        min-height: min(54rem, calc(100svh - 7.4rem));
        padding-block: 6.5rem 4.5rem;
        gap: 2.4rem;
        align-items: center;
      }

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

      h1,
      h2,
      h3,
      p {
        margin-top: 0;
      }

      .hero h1 {
        max-width: 10ch;
        margin-bottom: 1.25rem;
        font-family: var(--display);
        font-size: clamp(3.35rem, 13vw, 7.7rem);
        line-height: 0.94;
        letter-spacing: -0.065em;
        text-transform: uppercase;
        text-wrap: balance;
        text-shadow: 0 0.08em 0 rgba(80, 3, 8, 0.34);
      }

      .hero h1 span {
        display: block;
        color: var(--yellow);
      }

      .hero-lead {
        max-width: 39rem;
        margin-bottom: 1.4rem;
        font-size: clamp(1.12rem, 3.4vw, 1.42rem);
        line-height: 1.42;
        font-weight: 700;
      }

      .hero-facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 37rem;
        margin: 0 0 1.6rem;
        padding: 0;
        gap: 0.65rem;
        list-style: none;
      }

      .hero-facts li {
        min-width: 0;
        padding: 0.85rem 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.26);
        border-radius: 0.85rem;
        background: rgba(84, 0, 6, 0.2);
        backdrop-filter: blur(8px);
      }

      .hero-facts strong,
      .hero-facts span {
        display: block;
      }

      .hero-facts strong {
        color: var(--yellow);
        font-size: 0.78rem;
        text-transform: uppercase;
      }

      .hero-facts span {
        margin-top: 0.18rem;
        font-size: 0.88rem;
        font-weight: 800;
        line-height: 1.3;
      }

      .cta-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.85rem 1rem;
      }

      .cta {
        display: inline-flex;
        min-height: 3.7rem;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        padding: 0.9rem 1.35rem;
        border: 2px solid transparent;
        border-radius: 0.95rem;
        color: var(--ink);
        background: var(--yellow);
        box-shadow: 0 0.75rem 0 rgba(95, 4, 10, 0.38);
        font-size: 0.98rem;
        font-weight: 950;
        letter-spacing: 0.04em;
        text-decoration: none;
        text-transform: uppercase;
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .cta::after {
        content: "→";
        font-size: 1.35em;
        line-height: 1;
        transition: transform 180ms ease;
      }

      .cta:hover {
        transform: translateY(-3px);
        background: #ffe156;
        box-shadow: 0 0.95rem 0 rgba(95, 4, 10, 0.32);
      }

      .cta:hover::after {
        transform: translateX(0.2rem);
      }

      .cta:active {
        transform: translateY(0.25rem);
        box-shadow: 0 0.42rem 0 rgba(95, 4, 10, 0.38);
      }

      .cta-note {
        max-width: 16rem;
        margin: 0;
        font-size: 0.78rem;
        line-height: 1.35;
        font-weight: 700;
        opacity: 0.88;
      }

      /* Hero-Wirbel: Die Produktbilder sind bewusst illustrativ eingesetzt. */
      .tornado-stage {
        position: relative;
        z-index: 3;
        min-height: 25rem;
        perspective: 1000px;
      }

      .tornado-stage::before,
      .tornado-stage::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        border: 1.1rem solid rgba(255, 255, 255, 0.19);
        border-right-color: rgba(255, 212, 0, 0.62);
        border-radius: 50%;
        transform: translate(-50%, -50%) rotate(-14deg);
        box-shadow: 0 0 0 1.1rem rgba(255, 255, 255, 0.06);
        animation: spin-ring 15s linear infinite;
      }

      .tornado-stage::before {
        width: min(88vw, 31rem);
        height: min(88vw, 31rem);
      }

      .tornado-stage::after {
        width: min(58vw, 20rem);
        height: min(58vw, 20rem);
        animation-direction: reverse;
        animation-duration: 10s;
      }

      .prize-orb {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 7;
        display: grid;
        width: 10.8rem;
        aspect-ratio: 1;
        place-content: center;
        transform: translate(-50%, -50%) rotate(-6deg);
        border: 0.55rem solid #fff;
        border-radius: 50%;
        color: var(--red-deep);
        background: var(--yellow);
        box-shadow: 0 1.5rem 4rem rgba(69, 3, 7, 0.42);
        text-align: center;
      }

      .prize-orb small,
      .prize-orb strong,
      .prize-orb span {
        display: block;
      }

      .prize-orb small,
      .prize-orb span {
        font-weight: 950;
        line-height: 1;
        text-transform: uppercase;
      }

      .prize-orb small {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
      }

      .prize-orb strong {
        margin-block: 0.16rem;
        font-family: var(--display);
        font-size: 2.5rem;
        line-height: 0.95;
        letter-spacing: -0.06em;
      }

      .prize-orb span {
        font-size: 0.72rem;
      }

      .furniture {
        position: absolute;
        z-index: var(--z, 4);
        width: var(--w, 9rem);
        transform: translate3d(var(--x), var(--y), 0) rotate(var(--r));
        filter: drop-shadow(0 1rem 1rem rgba(62, 1, 5, 0.3));
        animation: drift var(--speed, 5.5s) ease-in-out infinite alternate;
        animation-delay: var(--delay, 0s);
        pointer-events: none;
        user-select: none;
      }

      .furniture.one {
        top: 3%;
        left: 4%;
        --w: 9.2rem;
        --x: -0.5rem;
        --y: 0;
        --r: -14deg;
        --speed: 5.2s;
      }

      .furniture.two {
        top: 5%;
        right: -6%;
        --w: 14.5rem;
        --x: 0;
        --y: 0.5rem;
        --r: 8deg;
        --speed: 6.8s;
        --delay: -2.1s;
      }

      .furniture.three {
        right: -4%;
        bottom: 4%;
        --w: 13rem;
        --x: 0;
        --y: 0;
        --r: -8deg;
        --speed: 5.8s;
        --delay: -1.4s;
      }

      .furniture.four {
        left: -4%;
        bottom: 1%;
        --w: 12rem;
        --x: 0;
        --y: 0;
        --r: 7deg;
        --speed: 7.2s;
        --delay: -3.2s;
      }

      .voucher {
        position: absolute;
        z-index: 8;
        display: grid;
        width: 5.2rem;
        height: 3rem;
        place-items: center;
        border: 3px solid #fff;
        border-radius: 0.5rem;
        color: #fff;
        background: var(--red);
        box-shadow: 0 0.8rem 1.6rem rgba(70, 3, 8, 0.34);
        font-size: 0.65rem;
        font-weight: 950;
        line-height: 1.05;
        text-align: center;
        text-transform: uppercase;
        animation: ticket-fly 5s ease-in-out infinite alternate;
      }

      .voucher.v1 {
        top: 18%;
        left: 46%;
        transform: rotate(18deg);
      }

      .voucher.v2 {
        top: 58%;
        left: 4%;
        transform: rotate(-22deg) scale(0.88);
        animation-delay: -1.6s;
      }

      .voucher.v3 {
        top: 66%;
        right: 9%;
        transform: rotate(12deg) scale(0.8);
        animation-delay: -3.2s;
      }

      @keyframes spin-ring {
        to {
          transform: translate(-50%, -50%) rotate(346deg);
        }
      }

      @keyframes drift {
        to {
          transform: translate3d(var(--x), calc(var(--y) - 0.7rem), 2rem) rotate(calc(var(--r) + 4deg));
        }
      }

      @keyframes ticket-fly {
        to {
          margin-top: -1rem;
          margin-left: 0.55rem;
        }
      }

      .quick-answer {
        position: relative;
        z-index: 12;
        margin-top: -1.8rem;
      }

      .answer-grid {
        display: grid;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
      }

      .answer-item {
        padding: 1.25rem;
      }

      .answer-item + .answer-item {
        border-top: 1px solid var(--line);
      }

      .answer-label {
        display: block;
        margin-bottom: 0.3rem;
        color: var(--red);
        font-size: 0.72rem;
        font-weight: 950;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .answer-value {
        display: block;
        font-size: 1rem;
        font-weight: 900;
        line-height: 1.35;
      }

      .section {
        padding-block: 5.25rem;
      }

      .section-kicker {
        margin-bottom: 0.65rem;
        color: var(--red);
        font-size: 0.78rem;
        font-weight: 950;
        letter-spacing: 0.11em;
        text-transform: uppercase;
      }

      .section-title {
        max-width: 15ch;
        margin-bottom: 1rem;
        font-family: var(--display);
        font-size: clamp(2.2rem, 8vw, 4.7rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
        text-transform: uppercase;
        text-wrap: balance;
      }

      .section-lead {
        max-width: 43rem;
        margin-bottom: 2rem;
        color: var(--muted);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
      }

      .steps {
        display: grid;
        gap: 1rem;
        margin-top: 2rem;
      }

      .step {
        position: relative;
        overflow: hidden;
        min-height: 15rem;
        padding: 1.4rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: 0 1rem 2.8rem rgba(77, 23, 27, 0.08);
      }

      .step::after {
        content: attr(data-step);
        position: absolute;
        right: -0.1rem;
        bottom: -1.9rem;
        color: rgba(215, 25, 32, 0.08);
        font-family: var(--display);
        font-size: 9rem;
        line-height: 1;
      }

      .step-icon {
        display: grid;
        width: 3.35rem;
        aspect-ratio: 1;
        margin-bottom: 1.15rem;
        place-items: center;
        border-radius: 0.9rem;
        color: #fff;
        background: var(--red);
        font-size: 1.55rem;
        font-weight: 950;
      }

      .step h3 {
        position: relative;
        z-index: 1;
        margin-bottom: 0.55rem;
        font-size: 1.25rem;
      }

      .step p {
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        color: var(--muted);
      }

      .prizes-section {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        color: #fff;
        background: var(--ink);
      }

      .prizes-section::before {
        content: "";
        position: absolute;
        inset: -12rem -12rem auto auto;
        z-index: -1;
        width: 32rem;
        aspect-ratio: 1;
        border: 4rem solid rgba(255, 212, 0, 0.12);
        border-radius: 50%;
      }

      .prizes-section .section-kicker {
        color: var(--yellow);
      }

      .prizes-section .section-lead {
        color: rgba(255, 255, 255, 0.75);
      }

      .prize-grid {
        display: grid;
        gap: 1rem;
      }

      .prize-card {
        position: relative;
        overflow: hidden;
        min-height: 17rem;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.075);
      }

      .prize-card.featured {
        color: var(--ink);
        background: var(--yellow);
      }

      .prize-card .number {
        display: block;
        margin-bottom: 0.65rem;
        font-family: var(--display);
        font-size: clamp(2.6rem, 8vw, 4.2rem);
        line-height: 0.9;
        letter-spacing: -0.06em;
      }

      .prize-card.featured .number {
        font-size: clamp(2.6rem, 7vw, 3.75rem);
        white-space: nowrap;
      }

      .prize-card > :not(img) {
        position: relative;
        z-index: 2;
      }

      .prize-card h3 {
        margin-bottom: 0.6rem;
        font-size: 1.25rem;
      }

      .prize-card p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.72);
      }

      .prize-card.featured p {
        color: rgba(23, 23, 26, 0.72);
      }

      .prize-card img {
        position: absolute;
        right: -1.5rem;
        bottom: -0.4rem;
        z-index: 1;
        width: min(42%, 9rem);
        opacity: 0.52;
        filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.25));
        pointer-events: none;
      }

      .specials {
        background: var(--cream);
      }

      .special-grid {
        display: grid;
        gap: 1rem;
        max-width: 45rem;
      }

      .special-card {
        padding: 1.5rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
      }

      .special-card .tag {
        display: inline-flex;
        margin-bottom: 1rem;
        padding: 0.42rem 0.7rem;
        border-radius: 99px;
        color: #fff;
        background: var(--red);
        font-size: 0.72rem;
        font-weight: 950;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      .special-card h3 {
        margin-bottom: 0.55rem;
        font-size: 1.4rem;
      }

      .special-card p {
        margin-bottom: 0;
        color: var(--muted);
      }

      .schedule {
        position: relative;
        overflow: hidden;
      }

      .schedule-grid {
        display: grid;
        gap: 2rem;
        align-items: center;
      }

      .timeline {
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .timeline li {
        position: relative;
        margin-left: 1rem;
        padding: 0 0 1.75rem 1.6rem;
        border-left: 3px solid rgba(215, 25, 32, 0.2);
      }

      .timeline li:last-child {
        padding-bottom: 0;
      }

      .timeline li::before {
        content: "";
        position: absolute;
        top: 0.25rem;
        left: -0.55rem;
        width: 0.9rem;
        aspect-ratio: 1;
        border: 3px solid #fff;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 2px var(--red);
      }

      .timeline time {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--red);
        font-size: 0.75rem;
        font-weight: 950;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .timeline strong {
        display: block;
        font-size: 1.08rem;
      }

      .timeline span {
        color: var(--muted);
        font-size: 0.92rem;
      }

      .poster-wrap {
        position: relative;
        width: min(100%, 25rem);
        margin-inline: auto;
      }

      .poster-wrap::before {
        content: "";
        position: absolute;
        inset: 4% -7% -4% 8%;
        z-index: -1;
        transform: rotate(5deg);
        border-radius: var(--radius);
        background: var(--yellow);
      }

      .poster-wrap img {
        width: 100%;
        border: 0.55rem solid #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }

      .final-cta {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        padding-block: 4.8rem;
        color: #fff;
        background: var(--red);
        text-align: center;
      }

      .final-cta::before,
      .final-cta::after {
        content: "";
        position: absolute;
        z-index: -1;
        width: 17rem;
        aspect-ratio: 1;
        border: 2.5rem solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
      }

      .final-cta::before {
        top: -9rem;
        left: -7rem;
      }

      .final-cta::after {
        right: -8rem;
        bottom: -10rem;
      }

      .final-cta h2 {
        max-width: 13ch;
        margin: 0 auto 1rem;
        font-family: var(--display);
        font-size: clamp(2.3rem, 10vw, 5rem);
        line-height: 0.96;
        letter-spacing: -0.05em;
        text-transform: uppercase;
        text-wrap: balance;
      }

      .final-cta p {
        max-width: 37rem;
        margin: 0 auto 1.6rem;
        font-size: 1.08rem;
      }

      .final-cta .cta {
        box-shadow: 0 0.75rem 0 rgba(80, 3, 8, 0.45);
      }

      .site-footer {
        padding-block: 2.5rem 7rem;
        color: rgba(255, 255, 255, 0.72);
        background: var(--ink);
      }

      .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .footer-brands {
        display: flex;
        align-items: center;
        gap: 0.7rem;
      }

      .footer-brands img {
        width: 7.5rem;
        padding: 0.38rem;
        border-radius: 0.5rem;
        background: #fff;
      }

      .footer-copy {
        margin: 0;
        font-size: 0.82rem;
      }

      .footer-copy a {
        color: #fff;
        font-weight: 800;
      }

      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
        margin-top: 0.55rem;
      }

      .footer-links a {
        color: #fff;
        font-size: 0.82rem;
        font-weight: 800;
        text-underline-offset: 0.22em;
      }

      .mobile-cta {
        position: fixed;
        right: 0.65rem;
        bottom: max(0.65rem, env(safe-area-inset-bottom));
        left: 0.65rem;
        z-index: 50;
        min-height: 3.55rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(130%);
        box-shadow: 0 0.7rem 2rem rgba(40, 0, 3, 0.3);
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .mobile-cta.is-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .reveal {
        opacity: 1;
        transform: none;
      }

      .js .reveal {
        opacity: 0;
        transform: translateY(1.5rem);
        transition: opacity 600ms ease, transform 600ms ease;
      }

      .js .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (min-width: 40rem) {
        .header-note {
          display: block;
        }

        .answer-grid {
          grid-template-columns: repeat(3, 1fr);
        }

        .answer-item + .answer-item {
          border-top: 0;
          border-left: 1px solid var(--line);
        }

        .steps,
        .prize-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .footer-inner {
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
        }
      }

      @media (min-width: 56rem) {
        .hero-grid {
          grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.98fr);
          padding-block: 7rem 5.5rem;
        }

        .tornado-stage {
          min-height: 36rem;
        }

        .schedule-grid {
          grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
          gap: 5rem;
        }

        .mobile-cta {
          display: none;
        }

        .site-footer {
          padding-bottom: 2.5rem;
        }
      }

      @media (max-width: 24rem) {
        .brand-lockup img:first-child {
          width: 6.4rem;
        }

        .brand-lockup img:last-child {
          width: 6.2rem;
        }

        .hero-facts {
          grid-template-columns: 1fr;
        }

        .hero h1 {
          font-size: 3rem;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          scroll-behavior: auto !important;
          transition-duration: 0.01ms !important;
        }

        .reveal {
          opacity: 1;
          transform: none;
        }
      }

/* === Politur: sanftes Scrollen, klare Fokus-Marker, dezenter CTA-Hover === */
html { scroll-behavior: smooth; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 8px; }
.cta { transition: transform .18s ease, box-shadow .18s ease; }
.cta:hover { transform: translateY(-2px); }

