  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  :root {
      --cream: #FAF6EE;
      --warm-sand: #F0E6CC;
      --terracotta: #C05C2A;
      --terracotta-dark: #8B3E19;
      --olive: #5A6B2A;
      --olive-light: #8A9E4A;
      --brown: #4A2E12;
      --text-dark: #1A1A0A;
      --text-mid: #5A3E22;
      --text-light: #9A7A5A;
      --white: #FFFDF8;
      --gold: #C8962A;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      font-size: 16px;
      line-height: 1.7;
  }

  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(250, 246, 238, 0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(192, 92, 42, 0.2);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
  }

  .nav-logo-img {
      height: 38px;
      width: auto;
  }

  .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
  }

  .nav-links a {
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color 0.2s;
  }

  .nav-links a:hover {
      color: var(--terracotta);
  }

  .btn {
      display: inline-block;
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: 2px solid transparent;
      font-family: 'Lato', sans-serif;
  }

  .btn-primary {
      background: var(--terracotta);
      color: var(--white);
      border-color: var(--terracotta);
  }

  .btn-primary:hover {
      background: var(--terracotta-dark);
      border-color: var(--terracotta-dark);
  }

  .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.7);
  }

  .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
  }

  .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 2rem;
      padding-top: 64px;
      overflow: hidden;
  }

  .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://dionyssos-hagenburg.de/wp-content/uploads/2022/12/Dionyssos-Gastraum.jpg');
      background-size: cover;
      background-position: center;
      z-index: 0;
  }

  .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(42, 26, 10, 0.62) 0%, rgba(42, 26, 10, 0.35) 55%, rgba(250, 246, 238, 1) 100%);
  }

  .hero-content {
      position: relative;
      z-index: 1;
  }

  .hero-logo {
      width: 120px;
      height: auto;
      margin-bottom: 1.5rem;
      filter: brightness(0) invert(1);
      opacity: 0.9;
  }

  .hero-eyebrow {
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
  }

  .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 0.6rem;
  }

  .hero h1 em {
      font-style: italic;
      color: var(--warm-sand);
  }

  .hero-sub {
      font-size: 1.05rem;
      color: rgba(255, 253, 248, 0.82);
      margin-bottom: 2.5rem;
      font-weight: 300;
      letter-spacing: 0.04em;
  }

  .hero-cta {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
  }

  section {
      padding: 5rem 2rem;
  }

  .container {
      max-width: 1100px;
      margin: 0 auto;
  }

  .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 0.6rem;
      text-align: center;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.7rem);
      color: var(--brown);
      text-align: center;
      line-height: 1.2;
      margin-bottom: 1rem;
  }

  .section-text {
      text-align: center;
      color: var(--text-mid);
      max-width: 600px;
      margin: 0 auto 3rem;
      font-weight: 300;
      font-size: 1.02rem;
  }

  #ueber-uns {
      background: var(--white);
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
  }

  .about-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 260px 200px;
      gap: 8px;
  }

  .about-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 2px;
      display: block;
  }

  .about-images img:first-child {
      grid-column: 1 / 3;
  }

  .about-badge {
      background: var(--terracotta);
      color: var(--white);
      padding: 1.2rem;
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .about-badge .num {
      font-size: 2rem;
      font-family: 'Playfair Display', serif;
      line-height: 1;
  }

  .about-badge .lbl {
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      margin-top: 0.3rem;
      opacity: 0.88;
  }

  .about-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      color: var(--brown);
      margin-bottom: 1.2rem;
      line-height: 1.3;
  }

  .about-content p {
      color: var(--text-mid);
      font-weight: 300;
      margin-bottom: 1rem;
  }

  .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-top: 1.5rem;
  }

  .feature-list li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.93rem;
      color: var(--text-mid);
  }

  .feature-list li::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--olive-light);
      border-radius: 50%;
      flex-shrink: 0;
  }

  #speisekarte {
      background: var(--cream);
  }

  .menu-tabs {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
  }

  .tab-btn {
      padding: 0.45rem 1.3rem;
      border: 1.5px solid var(--terracotta);
      background: transparent;
      color: var(--terracotta);
      font-family: 'Lato', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.2s;
  }

  .tab-btn.active,
  .tab-btn:hover {
      background: var(--terracotta);
      color: var(--white);
  }

  .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.2rem;
  }

  .menu-item {
      background: var(--white);
      padding: 1.3rem 1.5rem;
      border-radius: 2px;
      border-left: 3px solid var(--terracotta);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
  }

  .menu-item h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--brown);
      margin-bottom: 0.25rem;
  }

  .menu-item p {
      font-size: 0.82rem;
      color: var(--text-light);
      font-weight: 300;
  }

  .menu-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--terracotta);
      white-space: nowrap;
      font-weight: 600;
  }

  .quote-banner {
      background: var(--terracotta);
      padding: 3.5rem 2rem;
      text-align: center;
  }

  .stars {
      font-size: 1.3rem;
      color: var(--gold);
      letter-spacing: 0.2em;
      margin-bottom: 0.75rem;
  }

  .quote-banner blockquote {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-style: italic;
      color: var(--white);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.5;
  }

  .quote-attr {
      font-family: 'Lato', sans-serif;
      font-style: normal;
      font-size: 0.78rem;
      color: rgba(255, 253, 248, 0.55);
      margin-top: 0.75rem;
      display: block;
  }

  #galerie {
      background: var(--brown);
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 280px 200px;
      gap: 8px;
  }

  .gallery-item {
      overflow: hidden;
      border-radius: 2px;
  }

  .gallery-item:first-child {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
      transform: scale(1.04);
  }

  #kontakt {
      background: var(--white);
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
  }

  .hours-table {
      width: 100%;
      border-collapse: collapse;
  }

  .hours-table tr {
      border-bottom: 1px solid rgba(90, 62, 34, 0.1);
  }

  .hours-table td {
      padding: 0.7rem 0;
      font-size: 0.92rem;
      color: var(--text-mid);
      font-weight: 300;
  }

  .hours-table td:last-child {
      text-align: right;
      color: var(--terracotta);
      font-weight: 700;
  }

  .hours-table .closed td:last-child {
      color: var(--text-light);
      font-weight: 300;
  }

  .hours-table .today td {
      font-weight: 700;
      color: var(--brown);
  }

  .hours-table .today td:last-child {
      color: var(--olive);
  }

  .hours-note {
      font-size: 0.8rem;
      color: var(--text-light);
      font-style: italic;
      margin-top: 1rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(90, 62, 34, 0.1);
  }

  .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .c-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 0.2rem;
  }

  .c-val {
      font-size: 1.05rem;
      color: var(--brown);
      font-family: 'Playfair Display', serif;
      line-height: 1.4;
  }

  .c-val a {
      color: var(--terracotta);
      text-decoration: none;
  }

  .c-val a:hover {
      text-decoration: underline;
  }

  .map-frame {
      width: 100%;
      height: 220px;
      border-radius: 2px;
      overflow: hidden;
      margin-top: 1.5rem;
      border: 1px solid rgba(192, 92, 42, 0.15);
  }

  .map-frame iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
  }

  footer {
      background: var(--text-dark);
      padding: 2.5rem 2rem;
      text-align: center;
      color: rgba(255, 253, 248, 0.35);
      font-size: 0.82rem;
      line-height: 2;
  }

  footer a {
      color: var(--gold);
      text-decoration: none;
  }

  @media (max-width: 820px) {
      .nav-links {
          display: none;
      }

      .about-grid,
      .contact-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .gallery-grid {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: 160px 160px 160px;
      }

      .gallery-item:first-child {
          grid-column: 1 / 3;
          grid-row: 1;
      }
  }