:root {
  --ink: #15120f;
  --paper: #f8f3ea;
  --cream: #fffaf0;
  --olive: #496a47;
  --olive-dark: #223625;
  --tomato: #a72d25;
  --gold: #d8a64a;
  --wood: #5b351f;
  --muted: #75695e;
  --line: rgba(21, 18, 15, 0.16);
  --shadow: 0 22px 70px rgba(18, 14, 10, 0.22);
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.top-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 9px 18px;
  background: #0d0a08;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.top-line a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(24, 18, 14, 0.82);
  border-bottom: 1px solid rgba(216, 166, 74, 0.24);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(15, 12, 9, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  padding: 172px clamp(18px, 5vw, 72px) 88px;
  text-align: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.hero-logo {
  width: 126px;
  height: 126px;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.2rem, 11vw, 8.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.lead {
  width: min(680px, 100%);
  margin: 18px auto 0;
  font-size: clamp(1.28rem, 2.4vw, 1.9rem);
  font-family: var(--font-display);
  font-weight: 600;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.contact .contact-actions {
  justify-content: flex-start;
}

.contact-instagram {
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--tomato);
  color: #fff;
}

.button.secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.button.instagram-button {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.button.instagram-button:hover,
.button.instagram-button:focus-visible {
  border-color: var(--gold);
  background: rgba(216, 166, 74, 0.14);
  color: inherit;
}

.button.wide {
  width: 100%;
  margin-top: 24px;
}

.section-pad {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy {
  max-width: 720px;
  color: #3f3831;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.intro-copy h3 {
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--tomato);
  font-weight: 900;
}

.intro-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #18120e;
  color: #fff;
}

.feature-strip article {
  min-height: 360px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.feature-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  transition: transform 240ms ease, opacity 240ms ease;
}

.feature-strip article:hover img {
  transform: scale(1.035);
  opacity: 0.68;
}

.feature-strip article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
  content: "";
}

.feature-strip h3,
.feature-strip p {
  position: relative;
  z-index: 1;
}

.feature-strip p {
  max-width: 360px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.dark-band {
  background:
    linear-gradient(rgba(17, 13, 10, 0.9), rgba(17, 13, 10, 0.9)),
    url("Bildmaterial/PHOTO-2025-11-04-17-49-34.jpg") center / cover fixed;
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.lunch-note {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin: -8px auto 34px;
  padding: 20px clamp(20px, 4vw, 34px);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.lunch-note span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
}

.lunch-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.menu-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 14, 10, 0.72);
  backdrop-filter: blur(10px);
}

.menu-panel.accent {
  border-color: rgba(216, 166, 74, 0.58);
  background: rgba(73, 106, 71, 0.28);
}

.menu-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.pdf-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.pdf-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.pdf-list .menu-download {
  min-height: 58px;
  margin-top: 8px;
  border: 1px solid rgba(216, 166, 74, 0.62);
  border-radius: 4px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
}

.pdf-list .menu-download:hover,
.pdf-list .menu-download:focus-visible {
  background: rgba(216, 166, 74, 0.16);
}

.pdf-list a::after {
  color: var(--gold);
  content: "PDF";
  font-size: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.gallery-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5) {
  margin-top: 44px;
}

.gallery-instagram {
  margin-top: 28px;
  color: #fff;
}

.contact {
  background: var(--olive-dark);
  color: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 88px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.82);
}

.hours {
  padding: clamp(24px, 4vw, 40px);
  background: var(--cream);
  color: var(--ink);
}

.hours dl {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.hours div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 900;
}

.hours dd {
  margin: 0;
  color: #4d443b;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #110d0a;
  color: #fff;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.site-footer span,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

.subpage-main {
  padding: 174px clamp(18px, 5vw, 72px) 90px;
  background:
    linear-gradient(rgba(248, 243, 234, 0.94), rgba(248, 243, 234, 0.98)),
    url("Bildmaterial/PHOTO-2025-11-04-17-49-34.jpg") center / cover fixed;
}

.legal-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-shell h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.legal-card {
  margin-top: 34px;
  padding: clamp(24px, 5vw, 52px);
  border-top: 5px solid var(--gold);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 26px;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

.legal-card h4 {
  margin: 20px 0 8px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.legal-card p,
.legal-card li {
  color: #403830;
}

.legal-card a {
  color: var(--tomato);
  font-weight: 800;
}

.legal-card ul {
  padding-left: 20px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    top: 58px;
  }

  .top-line {
    flex-direction: column;
    gap: 2px;
    text-align: center;
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px;
    background: rgba(15, 12, 9, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 4px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 164px;
  }

  .hero-bg {
    object-position: center center;
  }

  .intro-grid,
  .menu-grid,
  .contact-card,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: auto;
    max-height: 620px;
    margin-top: 0;
  }
}

@media (min-width: 861px) {
  .contact .contact-actions {
    flex-wrap: nowrap;
  }

  .contact .contact-actions .button {
    min-width: 0;
    padding-inline: 18px;
  }

  .contact-instagram {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
