    :root {
      --navy: #023E75;
      --navy-dark: #012a52;
      --gold: #C99408;
      --gold-light: #E0B020;
      --cream: #F5F1E8;
      --wood: #705040;
      --wood-dark: #4a352a;
      --raute-blue: #0055BB;
      --raute-light: #D4E9F6;
      --text: #1a1a1a;
      --frame-t: 30px;
      --frame-s: 30px;
      --corner-size: 196px;
    }

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

    html, body {
      height: 100%;
      overflow: hidden;
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      color: var(--text);
      background: white;
      line-height: 1.6;
    }

    h1, h2, h3, .brand-font {
      font-family: 'IBM Plex Sans Condensed', sans-serif;
    }

    a { color: inherit; }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== AGE GATE ===== */
    .age-gate {
      position: fixed;
      inset: 0;
      background: rgba(1, 42, 82, 0.96);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding: 20px;
    }
    .age-gate.hidden { display: none; }
    .age-gate-content {
      background: var(--cream);
      padding: 56px 40px;
      border-radius: 4px;
      text-align: center;
      max-width: 460px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
      border: 2px solid var(--wood);
    }
    .age-gate-content h2 {
      font-size: 30px;
      color: var(--navy);
      margin-bottom: 18px;
      font-weight: 700;
    }
    .age-gate-content p {
      font-size: 15px;
      color: #444;
      margin-bottom: 28px;
    }
    .age-gate-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .age-gate-buttons button {
      padding: 14px 30px;
      font-size: 15px;
      font-weight: 700;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      font-family: 'IBM Plex Sans Condensed', sans-serif;
      transition: all .2s ease;
    }
    .age-confirm { background: var(--gold); color: white; }
    .age-confirm:hover { background: #a67c06; }
    .age-deny { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
    .age-deny:hover { background: var(--navy); color: white; }

    /* ===== HEADER / NAV ===== */
    header {
      background: white;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 500;
    }
    .nav-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .nav-logo { height: 40px; }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      font-size: 15px;
      font-weight: 500;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--navy);
      transition: color .2s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--navy);
      color: white !important;
      padding: 10px 22px;
      border-radius: 3px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
    }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 26px;
      line-height: 1;
      color: var(--navy);
      cursor: pointer;
      padding: 6px 8px;
      min-width: 44px;
      min-height: 44px;
    }

    @media (max-width: 860px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 6px 24px 14px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
        border-bottom: 1px solid #eee;
        gap: 0;
      }
      .nav-links.open a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f1f1f1;
        font-size: 16px;
      }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      background: linear-gradient(180deg, #0a4a86 0%, #1462a6 26%, #2f81c4 50%, #86929c 76%, #c7975f 100%);
      padding: 70px 20px 90px;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(45deg, var(--raute-blue) 25%, transparent 25%, transparent 75%, var(--raute-blue) 75%),
        linear-gradient(45deg, var(--raute-blue) 25%, transparent 25%, transparent 75%, var(--raute-blue) 75%);
      background-size: 90px 90px;
      background-position: 0 0, 45px 45px;
      opacity: 0.05;
    }
    /* München-Skyline: fotorealistisches Horizont-Band, oben weich ins Navy geblendet */
    .hero-skyline {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 460px;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 52%);
      mask-image: linear-gradient(to bottom, transparent 0%, #000 52%);
    }
    .hero-skyline img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
      opacity: 0.92;
    }
    @media (max-width: 768px) { .hero-skyline { height: 280px; } }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1160px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 20px;
      text-align: left;
    }
    .hero-content { max-width: 560px; min-width: 0; }
    .hero-bottle {
      position: relative;
      height: 480px;
      width: 100%;
      animation: bottleEnter 1s cubic-bezier(.2,.7,.3,1) both,
                 bottleFloat 5.5s ease-in-out 1s infinite;
      will-change: transform, filter;
    }
    @keyframes bottleEnter {
      from { opacity: 0; transform: translateY(40px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes bottleFloat {
      0%, 100% { transform: translateY(0);
                 filter: drop-shadow(0 0 22px rgba(1,22,46,0.55))
                         drop-shadow(0 32px 42px rgba(0,0,0,0.4)); }
      50%      { transform: translateY(-16px);
                 filter: drop-shadow(0 0 26px rgba(1,22,46,0.5))
                         drop-shadow(0 48px 54px rgba(0,0,0,0.28)); }
    }
    /* Karussell: Flaschen liegen gestapelt und blenden weich ineinander */
    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      opacity: 0;
      transition: opacity 1s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img { height: 100%; width: auto; }
    @media (prefers-reduced-motion: reduce) {
      .hero-bottle { animation: none; }
      .hero-slide { transition: none; }
    }
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-content { max-width: 100%; margin: 0 auto; }
      .hero-bottle { height: 300px; order: -1; margin-bottom: 10px; }
    }
    .hero-logo { height: 110px; margin-bottom: 36px; max-width: 100%; }
    .hero-logo img {
      height: 100%;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
    }
    .hero-claim {
      font-size: 52px;
      font-weight: 700;
      color: white;
      margin-bottom: 18px;
      letter-spacing: -1px;
      text-shadow: 0 2px 18px rgba(0,22,48,.5), 0 1px 3px rgba(0,22,48,.4);
    }
    .hero-tagline {
      font-size: 18px;
      color: rgba(255,255,255,0.96);
      margin-bottom: 36px;
      font-weight: 300;
      max-width: 560px;
      text-shadow: 0 1px 12px rgba(0,22,48,.5);
    }
    @media (max-width: 860px) {
      .hero-tagline { margin-left: auto; margin-right: auto; }
    }
    .cta-button {
      display: inline-block;
      background: var(--gold);
      color: white;
      padding: 16px 42px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 3px;
      transition: all 0.25s ease;
      border: 2px solid var(--gold);
      letter-spacing: 0.5px;
    }
    .cta-button:hover {
      background: transparent;
      color: var(--gold-light);
      transform: translateY(-2px);
    }
    .cta-outline {
      display: inline-block;
      background: transparent;
      color: white;
      padding: 14px 36px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 3px;
      border: 2px solid rgba(255,255,255,0.5);
      margin-left: 14px;
      transition: all .25s ease;
    }
    .cta-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

    /* ===== INTRO BLOCK ===== */
    .intro {
      padding: 70px 20px;
      text-align: center;
      background: white;
    }
    .intro p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 19px;
      color: #333;
      line-height: 1.8;
    }
    .intro strong { color: var(--navy); }

    /* ===== FRAMED STORY SECTION (echtes Etikett-Rahmen-Bild) ===== */
    .story {
      background: var(--cream);
      padding: 90px 20px;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 60px;
      align-items: center;
      max-width: 1160px;
      margin: 0 auto;
    }
    .framed-panel {
      position: relative;
      width: 100%;
      max-width: 420px;
      aspect-ratio: 650 / 945;
      margin: 0 auto;
    }
    .framed-panel-bg {
      position: absolute;
      top: 5.3%;
      left: 7.7%;
      right: 7.7%;
      bottom: 6.7%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .framed-panel-bg img {
      width: 78%;
      height: auto;
      filter: brightness(0) invert(1);
      opacity: 0.95;
    }
    .framed-panel img.frame-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .story-text h2 {
      font-size: 40px;
      color: var(--navy);
      margin-bottom: 24px;
      letter-spacing: -1px;
      line-height: 1.15;
    }
    .story-text p {
      font-size: 16px;
      color: #444;
      margin-bottom: 18px;
      line-height: 1.75;
    }
    .story-text p strong { color: var(--navy); }
    .usp-badges {
      display: flex;
      gap: 14px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .usp-badge {
      background: white;
      border-left: 4px solid var(--gold);
      padding: 14px 18px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      flex: 1;
      min-width: 180px;
    }

    @media (max-width: 860px) {
      .story-grid { grid-template-columns: 1fr; }
    }

    /* ===== AUSZEICHNUNGEN ===== */
    .awards {
      background: white;
      padding: 70px 20px 80px;
      text-align: center;
    }
    .awards-grid {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      max-width: 800px;
      margin: 0 auto;
    }
    .award-item {
      width: 170px;
    }
    .award-item img {
      width: 140px;
      height: 140px;
      object-fit: contain;
      margin-bottom: 16px;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
      transition: transform 0.25s ease;
    }
    .award-item:hover img { transform: translateY(-4px) scale(1.03); }
    .award-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .award-desc {
      font-size: 13px;
      color: #6b6b6b;
    }

    /* ===== PRODUCT COLLECTIONS ===== */
    .collection {
      padding: 80px 20px;
    }
    .collection.alt { background: var(--light-gray, #FAFAF8); }
    .collection-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    .collection-header .eyebrow {
      color: var(--gold);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
    }
    .collection-header h2 {
      font-size: 38px;
      color: var(--navy);
      letter-spacing: -0.5px;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 28px;
      max-width: 1160px;
      margin: 0 auto;
    }
    .product-card {
      text-align: center;
      background: white;
      border: 1px solid #eee;
      border-radius: 6px;
      padding: 26px 16px 22px;
      transition: all 0.25s ease;
    }
    .product-card:hover {
      box-shadow: 0 12px 28px rgba(2,62,117,0.1);
      border-color: var(--gold);
      transform: translateY(-3px);
    }
    .product-image {
      height: 280px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 16px;
    }
    .product-image img { max-height: 100%; width: auto; }
    .product-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .product-desc { font-size: 13px; color: #6b6b6b; margin-bottom: 10px; }
    .product-price { font-size: 16px; font-weight: 700; color: var(--wood); }

    /* ===== EDITIONEN (kuratierte Gateways zum Shop) ===== */
    .editions { padding: 90px 20px; background: white; }
    .section-intro {
      max-width: 640px;
      margin: 16px auto 0;
      color: #555;
      font-size: 16px;
      line-height: 1.75;
    }
    .edition-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 52px auto 0;
    }
    .edition-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      background: var(--cream);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #ece7db;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .edition-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 34px rgba(2,62,117,0.12);
      border-color: var(--gold);
    }
    .edition-img {
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
    }
    .edition-img img {
      max-height: 100%;
      width: auto;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12))
              drop-shadow(0 22px 28px rgba(0,0,0,0.15));
      transition: transform .3s ease;
    }
    .edition-card:hover .edition-img img { transform: scale(1.05); }
    .edition-body { padding: 24px 26px 28px; text-align: left; }
    .edition-body h3 {
      font-family: 'IBM Plex Sans Condensed', sans-serif;
      font-size: 24px;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .edition-body p { color: #666; font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
    .edition-link {
      color: var(--gold);
      font-weight: 700;
      font-size: 14px;
      font-family: 'IBM Plex Sans Condensed', sans-serif;
      letter-spacing: 0.3px;
    }
    .editions-cta { text-align: center; margin-top: 52px; }

    /* ===== MINIS (Probieren & Verschenken) ===== */
    .minis { background: white; padding: 30px 20px 90px; }
    .minis-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .minis-text .eyebrow {
      color: var(--gold);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }
    .minis-text h2 {
      font-family: 'IBM Plex Sans Condensed', sans-serif;
      font-size: 40px;
      color: var(--navy);
      letter-spacing: -0.5px;
      line-height: 1.1;
    }
    .minis-text p {
      color: #555;
      font-size: 16px;
      line-height: 1.75;
      margin: 16px 0 28px;
      max-width: 460px;
    }
    .minis-bottles {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-end;
      gap: 8px;
      background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
      border: 1px solid #ece7db;
      border-radius: 8px;
      padding: 36px 24px 28px;
    }
    .minis-bottles img {
      height: 210px;
      width: auto;
      filter: drop-shadow(0 8px 14px rgba(0,0,0,0.18))
              drop-shadow(0 26px 30px rgba(0,0,0,0.16));
      transition: transform .25s ease;
    }
    .minis-bottles img:hover { transform: translateY(-8px); }
    @media (max-width: 860px) {
      .minis-inner { grid-template-columns: 1fr; text-align: center; gap: 34px; }
      .minis-text p { margin-left: auto; margin-right: auto; }
      .minis-bottles img { height: 168px; }
    }

    /* ===== USP STRIP ===== */
    .usp-strip {
      background: linear-gradient(160deg, #0f5aa0 0%, #063f76 100%);
      padding: 60px 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1160px;
      margin: 0 auto;
      border-radius: 6px;
    }
    .usp-strip-item { text-align: center; color: white; padding: 10px; }
    .usp-strip-item .num { font-size: 34px; font-weight: 700; color: var(--gold); margin-bottom: 8px; display: block; }
    .usp-strip-item p { font-size: 14px; opacity: 0.9; }
    @media (max-width: 700px) {
      .usp-strip { grid-template-columns: 1fr; }
    }

    /* ===== WEITERE HIGHLIGHTS ===== */
    .highlights {
      background: var(--cream);
      padding: 90px 20px;
    }
    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 26px;
      max-width: 1160px;
      margin: 0 auto;
    }
    .highlight-card {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--navy);
      display: flex;
      align-items: flex-end;
      box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }
    .highlight-card img.hl-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .highlight-card .hl-overlay {
      position: relative;
      z-index: 2;
      width: 100%;
      background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
      padding: 24px 18px 18px;
      color: white;
    }
    .highlight-card .hl-overlay h3 { font-size: 18px; margin-bottom: 4px; }
    .highlight-card .hl-overlay p { font-size: 13px; opacity: 0.85; }

    /* ===== NEWSLETTER / CONVERSION ===== */
    .conversion {
      background: var(--wood-dark);
      color: white;
      padding: 70px 20px;
      text-align: center;
    }
    .conversion h2 { font-size: 32px; margin-bottom: 14px; }
    .conversion p { opacity: 0.85; margin-bottom: 30px; }
    .newsletter-form {
      max-width: 460px;
      margin: 0 auto;
      display: flex;
      gap: 10px;
    }
    .newsletter-form input {
      flex: 1;
      padding: 14px 18px;
      border: none;
      border-radius: 3px;
      font-size: 15px;
    }
    .newsletter-form button {
      padding: 14px 28px;
      background: var(--gold);
      color: white;
      border: none;
      border-radius: 3px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'IBM Plex Sans Condensed', sans-serif;
    }
    .newsletter-form button:hover { background: #a67c06; }

    /* ===== FOOTER ===== */
    footer {
      background: #0a0a0a;
      color: #ccc;
      padding: 50px 20px 30px;
      font-size: 14px;
    }
    .footer-grid {
      max-width: 1160px;
      margin: 0 auto 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
    }
    .footer-grid h4 { color: white; font-size: 15px; margin-bottom: 14px; }
    .footer-grid ul { list-style: none; }
    .footer-grid li { margin-bottom: 8px; }
    .footer-grid a { color: #aaa; text-decoration: none; }
    .footer-grid a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1160px;
      margin: 0 auto;
      border-top: 1px solid #222;
      padding-top: 24px;
      text-align: center;
      color: #777;
      font-size: 12px;
    }

    /* ===== STORY VISUAL (Flasche statt Rahmen) ===== */
    .story-visual {
      display: flex; align-items: center; justify-content: center;
      background: radial-gradient(ellipse at 50% 42%, #ffffff 0%, var(--cream) 72%);
      border: 1px solid #ece7db; border-radius: 8px;
      padding: 40px 24px; min-height: 440px; max-width: 420px; margin: 0 auto;
    }
    .story-visual img {
      max-height: 470px; width: auto; max-width: 100%;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)) drop-shadow(0 30px 40px rgba(0,0,0,.14));
    }

    /* ===== WOLPERTINGER (Wappentier + Legende) ===== */
    .wolpertinger { background: #fff; padding: 90px 20px; }
    .wolpertinger-inner {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    }
    .wolpertinger-crest {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      background: radial-gradient(ellipse at center, #fbf9f3 0%, var(--cream) 78%);
      border: 1px solid #ece7db; border-radius: 10px; padding: 30px;
    }
    .wolpertinger-crest img { width: 100%; max-width: 460px; height: auto; mix-blend-mode: multiply; }
    .wolpertinger-text .eyebrow {
      color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 2px;
      text-transform: uppercase; display: block; margin-bottom: 12px;
    }
    .wolpertinger-text h2 {
      font-size: 40px; color: var(--navy); letter-spacing: -.5px; line-height: 1.1; margin-bottom: 20px;
    }
    .wolpertinger-text p { color: #444; font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
    .wolpertinger-text p strong { color: var(--navy); }
    @media (max-width: 860px) {
      .wolpertinger-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    }

    /* ===== SOIZ & PFEFFA / BROTZEIT ===== */
    .brotzeit { background: var(--cream); padding: 90px 20px; }
    .brotzeit-inner {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    }
    .brotzeit-photo {
      border-radius: 10px; overflow: hidden; border: 1px solid #e3ddcf;
      box-shadow: 0 14px 34px rgba(2,62,117,.14);
    }
    .brotzeit-photo img { width: 100%; height: auto; display: block; }
    .brotzeit-text .eyebrow {
      color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 2px;
      text-transform: uppercase; display: block; margin-bottom: 12px;
    }
    .brotzeit-text h2 {
      font-size: 38px; color: var(--navy); letter-spacing: -.5px; line-height: 1.12; margin-bottom: 20px;
    }
    .brotzeit-text p { color: #444; font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
    .brotzeit-text p strong { color: var(--navy); }
    .brotzeit-text .cta-button { margin-top: 8px; }
    @media (max-width: 860px) {
      .brotzeit-inner { grid-template-columns: 1fr; gap: 32px; }
      .brotzeit-text h2 { font-size: 30px; }
    }

    /* ===== REZEPTE ===== */
    .recipes { background: var(--cream); padding: 90px 20px; }
    .recipe-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 26px; max-width: 1160px; margin: 46px auto 0;
    }
    .recipe-card {
      background: #fff; border: 1px solid #ece7db; border-radius: 8px;
      overflow: hidden; display: flex; flex-direction: column;
      box-shadow: 0 3px 12px rgba(2,62,117,.05);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .recipe-card:hover {
      transform: translateY(-4px); box-shadow: 0 16px 32px rgba(2,62,117,.12); border-color: var(--gold);
    }
    .recipe-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
    .recipe-card:hover .recipe-photo { filter: brightness(1.03); }
    .recipe-head {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: #fff; padding: 22px 24px 20px; border-bottom: 3px solid var(--gold);
    }
    .recipe-base {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px;
    }
    .recipe-head h3 { font-size: 24px; margin-bottom: 6px; }
    .recipe-tag { font-size: 13.5px; opacity: .85; font-style: italic; }
    .recipe-body { padding: 22px 24px 24px; }
    .recipe-body h4 {
      font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold);
      margin: 0 0 8px; font-family: 'IBM Plex Sans Condensed', sans-serif;
    }
    .recipe-body ul { list-style: none; margin: 0 0 18px; padding: 0; }
    .recipe-body li {
      font-size: 14.5px; color: #333; padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid #f2efe6;
    }
    .recipe-body li::before { content: '·'; position: absolute; left: 4px; color: var(--gold); font-weight: 700; }
    .recipe-steps { font-size: 14.5px; color: #444; line-height: 1.7; margin-bottom: 16px; }
    .recipe-meta { font-size: 13px; color: #777; border-top: 1px solid #f2efe6; padding-top: 14px; }

    /* ===== FOCUS-STATES (A11y) ===== */
    a:focus-visible, button:focus-visible, input:focus-visible,
    .cta-button:focus-visible, .cta-outline:focus-visible, .nav-cta:focus-visible,
    .edition-card:focus-visible, .exp-link:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
      border-radius: 3px;
    }

    /* ===== TRUST-ROW ICONS ===== */
    .usp-strip-item .usp-icon { display: inline-flex; color: var(--gold); margin-bottom: 12px; }
    .usp-strip-item .usp-icon svg { width: 42px; height: 42px; }
    .usp-strip-item h3 { font-size: 19px; color: #fff; margin-bottom: 6px; font-weight: 700; }

    /* ===== STORY BADGE ICONS ===== */
    .usp-badge { display: flex; align-items: center; gap: 9px; }
    .badge-icon { display: inline-flex; color: var(--gold); flex-shrink: 0; }
    .badge-icon svg { width: 20px; height: 20px; }

    /* ===== KRUGMEISTER ERLEBEN ===== */
    .experience { background: var(--cream); padding: 90px 20px; }
    .experience-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 26px; max-width: 1080px; margin: 46px auto 0;
    }
    .experience-card {
      background: #fff; border: 1px solid #ece7db; border-radius: 8px;
      padding: 34px 28px; text-align: center;
      box-shadow: 0 3px 12px rgba(2,62,117,.05);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .experience-card:hover {
      transform: translateY(-4px); box-shadow: 0 16px 32px rgba(2,62,117,.12); border-color: var(--gold);
    }
    .exp-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(201,148,8,.1); color: var(--gold); margin-bottom: 18px;
    }
    .exp-icon svg { width: 30px; height: 30px; }
    .experience-card h3 { font-size: 21px; color: var(--navy); margin-bottom: 10px; }
    .experience-card p { font-size: 15px; color: #555; line-height: 1.65; margin-bottom: 18px; }
    .exp-link { color: var(--gold); font-weight: 700; font-size: 14px; text-decoration: none;
      font-family: 'IBM Plex Sans Condensed', sans-serif; }
    .exp-link:hover { color: #a67c06; }

    /* ===== A11y UTIL ===== */
    .visually-hidden {
      position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ===== SCROLL-REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease-out, transform .7s cubic-bezier(.2,.7,.3,1); }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero-claim { font-size: 36px; }
      .wolpertinger-text h2 { font-size: 30px; }
      .collection-header h2 { font-size: 30px; }
      .story-text h2 { font-size: 30px; }
      .newsletter-form { flex-direction: column; }
      .cta-outline { margin-left: 0; margin-top: 12px; display: block; }
      :root { --frame-t: 18px; --frame-s: 18px; --corner-size: 118px; }
    }
    @media (max-width: 480px) {
      .hero-logo { height: 80px; }
      .hero-claim { font-size: 28px; }
      .intro p { font-size: 16px; }
      .nav-inner { padding: 12px 14px; gap: 10px; }
      .nav-logo { height: 34px; }
      .nav-cta { padding: 9px 14px; font-size: 13px; }
    }

    /* ===== ETIKETT-RAHMEN (fix am Bildschirmrand, Inhalt scrollt darin) ===== */
    .site-frame { position: fixed; inset: 0; z-index: 900; pointer-events: none; }
    .frame-edge { position: fixed; z-index: 901; }
    .frame-top, .frame-bottom {
      left: 0; right: 0; height: var(--frame-t);
      background-image: url('../frame-assets/wood-strip-h.png');
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    .frame-top { top: 0; }
    .frame-bottom { bottom: 0; }
    .frame-left, .frame-right {
      top: 0; bottom: 0; width: var(--frame-s);
      background-image: url('../frame-assets/wood-strip-v.png');
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    .frame-left { left: 0; }
    .frame-right { right: 0; }
    .frame-corner {
      position: fixed;
      width: var(--corner-size);
      height: var(--corner-size);
      background-size: cover;
      z-index: 902;
    }
    .corner-tl { top: 0; left: 0; background-image: url('../frame-assets/corner-tl.png'); }
    .corner-br { bottom: 0; right: 0; background-image: url('../frame-assets/corner-br.png'); }
    .corner-plain {
      position: fixed;
      width: var(--frame-s);
      height: var(--frame-t);
      background-size: cover;
      z-index: 902;
    }
    .corner-tr { top: 0; right: 0; background-image: url('../frame-assets/corner-plain-tr.png'); }
    .corner-bl { bottom: 0; left: 0; background-image: url('../frame-assets/corner-plain-bl.png'); }
    .frame-inner-shadow {
      display: none;
    }
    .page-content {
      position: fixed;
      top: var(--frame-t);
      left: var(--frame-s);
      right: var(--frame-s);
      /* minimal unter die untere Holzleiste ziehen, damit kein Rundungs-Spalt durchscheint */
      bottom: calc(var(--frame-t) - 3px);
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      z-index: 100;
      /* Nativen Scrollbalken ausblenden, damit der Inhalt rechts buendig ans Holz laeuft */
      scrollbar-width: none;
    }
    .page-content::-webkit-scrollbar { display: none; }
    /* Keine Maske mehr noetig: Ecken-Holz besteht jetzt 1:1 aus Leisten-Material */

    /* ===== NEUE FEATURES: Aktions-Banner · Events · Händlerkarte · Instagram ===== */
    .aktionsbanner{ position:sticky; top:0; z-index:600; background:linear-gradient(90deg,var(--navy),var(--navy-dark)); color:#fff; overflow:hidden; white-space:nowrap; border-bottom:2px solid var(--gold); }
    .aktionsbanner .run{ display:inline-block; padding:8px 0; animation:tick 26s linear infinite; font-size:13px; font-weight:600; }
    .aktionsbanner .run span{ margin:0 44px; } .aktionsbanner .run b{ color:var(--gold-light); }
    @keyframes tick{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
    header{ top:35px !important; } /* Platz für den Aktions-Banner */
    .finder{ background:var(--cream); padding:90px 20px; }
    .events-strip{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; max-width:1100px; margin:36px auto 0; }
    .ev{ background:#fff; border:1px solid #ece7db; border-radius:8px; padding:22px; border-left:4px solid var(--gold); }
    .ev .d{ font-family:ui-monospace,monospace; font-size:11px; color:var(--gold); letter-spacing:1px; }
    .ev h3{ font-family:'IBM Plex Sans Condensed',sans-serif; font-size:19px; color:var(--navy); margin:6px 0 4px; }
    .ev p{ font-size:13px; color:#666; line-height:1.5; }
    .map-block{ max-width:1100px; margin:44px auto 0; }
    .map-tools{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px; }
    .map-tools input{ padding:12px 15px; border:1px solid #d8d2c2; border-radius:4px; font-size:15px; min-width:240px; flex:1; }
    .map-tools button{ padding:12px 22px; background:var(--gold); color:#fff; border:none; border-radius:4px; font-weight:700; cursor:pointer; font-family:inherit; }
    #km-map{ height:440px; border-radius:8px; border:1px solid #d8d2c2; box-shadow:0 6px 22px rgba(2,62,117,.1); z-index:1; }
    .km-pin{ background:var(--gold); width:20px; height:20px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); border:2px solid #fff; box-shadow:0 2px 5px rgba(0,0,0,.4); }
    .map-count{ font-size:13px; color:#666; margin-top:10px; }
    .km-online-cta{ max-width:1100px; margin:20px auto 0; text-align:center; font-size:14.5px; color:#555; }
    .km-online-cta a{ color:var(--gold); font-weight:700; text-decoration:none; }
    .pop-name{ font-family:'IBM Plex Sans Condensed',sans-serif; font-weight:700; color:var(--navy); font-size:15px; }
    .pop-typ{ font-family:ui-monospace,monospace; font-size:10px; text-transform:uppercase; color:var(--gold); }
    .igstrip{ background:#fff; padding:70px 20px; }
    .igrow{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:12px; max-width:1000px; margin:30px auto 0; }
    .igrow a{ aspect-ratio:1; border-radius:8px; overflow:hidden; display:block; box-shadow:0 3px 12px rgba(2,62,117,.1); transition:transform .3s ease; }
    .igrow a:hover{ transform:translateY(-4px); }
    .igrow img{ width:100%; height:100%; object-fit:cover; }
    .wappen-seal{ display:inline-block; margin-top:16px; font-family:ui-monospace,monospace; font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); border:1px solid var(--gold); border-radius:999px; padding:6px 16px; }
