    :root {
      --green: #24472f;
      --green-dark: #173420;
      --cream: #f7f3e9;
      --paper: #fffdf8;
      --orange: #d95f2b;
      --text: #262626;
      --muted: #666;
      --border: #e4ddcf;
      --shadow: 0 12px 32px rgba(0, 0, 0, .10);
      --radius: 18px;
      --max-width: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--paper);
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; }
    .container { width: min(100% - 32px, var(--max-width)); margin-inline: auto; }
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 8px;
      background: #fff;
      padding: 10px 14px;
      z-index: 1000;
    }
    .skip-link:focus { left: 8px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 253, 248, .96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      font-weight: 800;
      color: var(--green-dark);
      white-space: nowrap;
    }
    .brand img { width: 64px; max-height: 54px; object-fit: contain; }
    .nav-toggle {
      display: none;
      border: 0;
      background: var(--green);
      color: #fff;
      border-radius: 10px;
      padding: 10px 13px;
      font-size: 1rem;
      cursor: pointer;
    }
    .nav-list {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    .nav-list a {
      display: inline-block;
      text-decoration: none;
      font-weight: 700;
      padding: 10px 11px;
      border-radius: 9px;
    }
    .nav-list a:hover, .nav-list a:focus-visible { background: var(--cream); }
    .nav-list .reserve-link { background: var(--orange); color: #fff; }
    .nav-list .reserve-link:hover, .nav-list .reserve-link:focus-visible { background: #bd4c20; }

    .hero {
      min-height: 620px;
      display: grid;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(13, 35, 22, .88), rgba(13, 35, 22, .45)),
        url("./bilder/spareribs-hero.jpg") center/cover no-repeat,
        url("https://www.das-schutzhaus.at/neu_design/startseite_bild.jpg") center/cover no-repeat;
    }
    .hero-content { max-width: 760px; padding-block: 84px; }
    .eyebrow {
      display: inline-block;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
      font-size: .85rem;
      color: #ffd3bf;
    }
    h1, h2, h3 { line-height: 1.15; margin-top: 0; }
    h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); margin-bottom: 18px; }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--green-dark); margin-bottom: 18px; }
    h3 { font-size: 1.35rem; color: var(--green-dark); }
    .hero p { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 670px; margin-bottom: 28px; }
    .button-row { display: flex; flex-wrap: wrap; gap: 12px; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 11px;
      text-decoration: none;
      font-weight: 800;
      border: 2px solid transparent;
    }
    .button-primary { background: var(--orange); color: #fff; }
    .button-primary:hover, .button-primary:focus-visible { background: #bd4c20; }
    .button-light { background: #fff; color: var(--green-dark); }
    .button-outline { border-color: rgba(255,255,255,.75); color: #fff; }
    .button-outline:hover, .button-outline:focus-visible { background: #fff; color: var(--green-dark); }

    .quick-info {
      margin-top: -52px;
      position: relative;
      z-index: 5;
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 26px;
    }
    .card p:last-child { margin-bottom: 0; }
    .card-label {
      color: var(--orange);
      font-weight: 800;
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 6px;
    }

    .payment-note {
      margin-top: 12px;
      font-size: .96rem;
      color: var(--muted);
    }
    .payment-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }
    .payment-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 7px 11px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--cream);
      color: var(--green-dark);
      font-size: .93rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .cards-section {
      padding-top: 54px;
    }
    .menu-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 30px;
    }
    .menu-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .menu-card-preview {
      min-height: 420px;
      background: var(--cream);
      display: grid;
      place-items: center;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .menu-card-preview img {
      width: 100%;
      height: 100%;
      max-height: 620px;
      object-fit: contain;
      background: #fff;
    }
    .menu-card-placeholder {
      padding: 46px 28px;
      text-align: center;
      color: var(--muted);
    }
    .menu-card-placeholder strong {
      display: block;
      color: var(--green-dark);
      font-size: 1.2rem;
      margin-bottom: 8px;
    }
    .menu-card-body {
      padding: 26px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .menu-card-body p { color: var(--muted); }
    .menu-card-body .button { margin-top: auto; align-self: flex-start; }
    .menu-dialog {
      width: min(94vw, 920px);
      max-width: none;
      max-height: 94vh;
      padding: 0;
      border: 0;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    }
    .menu-dialog::backdrop { background: rgba(15, 25, 20, .78); }
    .menu-dialog-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--border);
    }
    .menu-dialog-header strong { color: var(--green-dark); }
    .menu-dialog-close {
      min-height: 44px;
      padding: 9px 15px;
      border: 0;
      border-radius: 999px;
      background: var(--green-dark);
      color: #fff;
      font: inherit;
      font-weight: 800;
      cursor: pointer;
    }
    .menu-dialog-content {
      max-height: calc(94vh - 77px);
      overflow: auto;
      padding: 14px;
      text-align: center;
      background: var(--cream);
    }
    .menu-dialog-content img {
      display: block;
      width: auto;
      max-width: 100%;
      height: auto;
      margin: 0 auto;
    }
    body.dialog-open { overflow: hidden; }
    section { padding: 88px 0; }
    .section-muted { background: var(--cream); }
    .two-column {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 54px;
      align-items: center;
    }
    .content-image {
      border-radius: var(--radius);
      min-height: 360px;
      width: 100%;
      object-fit: cover;
      box-shadow: var(--shadow);
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 34px;
    }
    .feature-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 15px;
      padding: 24px;
    }
    .feature-card p { color: var(--muted); }
    .text-link { color: var(--green); font-weight: 800; }

    .notice {
      padding: 24px;
      border-radius: 14px;
      border-left: 5px solid var(--orange);
      background: #fff;
    }
    .notice strong { color: var(--green-dark); }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }
    .contact-list { list-style: none; padding: 0; margin: 0; }
    .contact-list li { margin-bottom: 12px; }
    .contact-list a { color: var(--green); font-weight: 800; }

    footer {
      background: var(--green-dark);
      color: #fff;
      padding: 38px 0;
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
    .footer-links a { color: #fff; }

    @media (max-width: 1020px) {
      .info-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .nav-toggle { display: inline-block; }
      .site-nav {
        display: none;
        position: absolute;
        inset: 76px 0 auto 0;
        background: var(--paper);
        border-bottom: 1px solid var(--border);
        padding: 12px 16px 18px;
      }
      .site-nav.open { display: block; }
      .nav-list { flex-direction: column; align-items: stretch; }
      .nav-list a { display: block; }
      .feature-grid, .menu-card-grid { grid-template-columns: 1fr; }
      .two-column, .contact-grid { grid-template-columns: 1fr; }
      .quick-info { margin-top: 0; padding-top: 24px; }
      .hero { min-height: 560px; }
      section { padding: 68px 0; }
    }

    @media (max-width: 620px) {
      .info-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 520px) {
      .container { width: min(100% - 22px, var(--max-width)); }
      .brand span { display: none; }
      .hero-content { padding-block: 64px; }
      .button-row .button { width: 100%; }
      .card { padding: 21px; }
      section { padding: 54px 0; }
    }

    /* Gemeinsames Unterseiten-System auf Basis von index(8).php */
    .page-hero {
      min-height: 390px;
      display: grid;
      padding: 0;
      color: #fff;
      background-color: var(--green-dark);
      background-position: center;
      background-size: cover;
    }
    .page-hero-overlay {
      min-height: 390px;
      display: grid;
      align-items: center;
      padding: 72px 0;
      background: linear-gradient(90deg, rgba(13,35,22,.92), rgba(13,35,22,.50));
    }
    .page-hero h1 { margin: 0 0 16px; color: #fff; }
    .page-hero .lead { max-width: 720px; margin: 0; font-size: clamp(1.08rem,2vw,1.3rem); }
    .grid-2, .download-grid {
      display: grid;
      grid-template-columns: repeat(2,minmax(0,1fr));
      gap: 28px;
      align-items: start;
    }
    .button:not(.button-primary):not(.button-light):not(.button-outline) {
      background: var(--cream);
      border-color: var(--border);
      color: var(--green-dark);
    }
    .button-row { margin-top: 22px; }
    .facts { display: grid; gap: 12px; margin-bottom: 18px; }
    .fact { padding: 14px 16px; border-radius: 12px; background: var(--cream); }
    .fact strong { display: block; color: var(--green-dark); }
    .muted { color: var(--muted); }
    .legal-content { max-width: 880px; }
    .legal-content h2:not(:first-child) { margin-top: 42px; }
    .map-image { object-fit: contain; background: #fff; }
    .download-card, .empty-state {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }
    .download-card img { max-height: 300px; margin: 0 auto 24px; object-fit: contain; }
    .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
    .gallery-item { overflow: hidden; aspect-ratio: 4/3; border-radius: 15px; box-shadow: var(--shadow); background: var(--cream); }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
    .gallery-item:hover img { transform: scale(1.025); }
    @media (max-width:900px) {
      .grid-2, .download-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width:620px) {
      .page-hero, .page-hero-overlay { min-height: 330px; }
      .gallery-grid { grid-template-columns: 1fr; }
    }
