* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6efe5;
  --dark: #171717;
  --text: #222222;
  --muted: #666666;
  --card: #ffffff;
  --accent: #c87523;
  --accent-dark: #9f5518;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.hero {
  min-height: 92vh;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42)),
    url("bilder/essen1.jpg");
  background-size: cover;
  background-position: center;
  padding: 28px;
}

.nav {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  color: #ffd08a;
}

.hero-content {
  width: min(1120px, 100%);
  margin: 150px auto 0;
}

.eyebrow {
  color: #ffd08a;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 650px;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--dark);
}

.quick-info {
  width: min(1120px, calc(100% - 40px));
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.info-card strong {
  font-size: 18px;
}

.section {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 90px 24px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.split p {
  font-size: 18px;
  color: #3b3b3b;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tags span {
  padding: 11px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-weight: 800;
  color: #333;
}

.ratings {
  width: 100%;
  max-width: none;
  background: var(--dark);
  color: white;
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  padding-right: max(24px, calc((100vw - 1120px) / 2));
}

.section-header {
  margin-bottom: 34px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.rating-card {
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 34px;
}

.stars {
  color: #ffd08a;
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.rating-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.rating-number {
  font-size: 42px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}

.rating-card p:last-child {
  color: #cfcfcf;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #ddd;
}

.gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 476px;
}

.contact-section {
  padding-top: 40px;
}

.contact-box {
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(50, 31, 16, 0.96));
  color: white;
  border-radius: 34px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-list {
  margin-top: 24px;
}

.contact-list p {
  margin-bottom: 8px;
  color: #eeeeee;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  background: #111111;
  color: white;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a {
  color: #d8d8d8;
}

.footer a:hover {
  color: #ffd08a;
}

@media (max-width: 950px) {
  .quick-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img:first-child {
    grid-column: span 2;
    height: 360px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding: 22px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .hero-content {
    margin-top: 90px;
    padding-bottom: 70px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 18px;
  }

  .quick-info {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -40px;
  }

  .section {
    padding: 64px 18px;
  }

  .rating-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    grid-column: span 1;
    height: 260px;
  }

  .contact-box {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}