:root {
  --background: #f3efe4;
  --foreground: #1e2a22;
  --card: #faf7ef;
  --card-foreground: #1e2a22;
  --primary: #173e2e;
  --primary-foreground: #fffdf7;
  --secondary: #c98b51;
  --secondary-foreground: #1d241f;
  --muted: #e6e0d2;
  --muted-foreground: #676d65;
  --accent: #d1a06b;
  --accent-foreground: #17241d;
  --border: #cbc4b6;
  --ring: #906d48;
  --radius: 0.45rem;
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

.dark {
  --background: #132119;
  --foreground: #f3efe4;
  --card: #1b3024;
  --card-foreground: #f3efe4;
  --primary: #e4c79b;
  --primary-foreground: #15251c;
  --secondary: #a86f3f;
  --secondary-foreground: #fff8ea;
  --muted: #263b2e;
  --muted-foreground: #b8b7ac;
  --accent: #c9945c;
  --accent-foreground: #16231b;
  --border: #3c5143;
  --ring: #d5ad7d;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background-image: url('assets/fischerstoebli-hero.png');
  background-position: 59% center;
  background-size: cover;
  color: #fffdf7;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(10 27 19 / 88%) 0%, rgb(10 27 19 / 62%) 43%, transparent 75%),
    linear-gradient(0deg, rgb(8 24 17 / 58%) 0%, transparent 45%);
}

.site-nav {
  width: min(1380px, calc(100% - 7vw));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.015em;
}

.nav-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgb(6 20 13 / 18%);
}

.wordmark small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a,
.text-link,
.line-link {
  transition: opacity 180ms ease;
}

.nav-toggle,
.nav-link-mobile {
  display: none;
}

@media (hover: hover) {
  .nav-links a:hover,
  .text-link:hover,
  .line-link:hover {
    opacity: 0.64;
  }
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

@media (hover: hover) {
  .nav-cta:hover {
    background: #fffdf7;
    color: #173e2e;
  }
}

.hero-copy {
  width: min(1380px, calc(100% - 7vw));
  margin: 0 auto;
  padding-top: clamp(120px, 16vh, 190px);
}

.eyebrow {
  margin: 0 0 20px;
  color: #e5c18e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #91653d;
}

.eyebrow.light {
  color: #d9b887;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: inherit;
  font-weight: 400;
}

.hero-lead {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgb(255 253 247 / 77%);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button-light {
  background: #f5efe2;
  color: #193126;
}

.button-dark {
  background: #173e2e;
  color: #fffdf7;
}

.text-link,
.line-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  right: max(3.5vw, 28px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(16 38 27 / 52%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note small {
  display: block;
  color: rgb(255 255 255 / 63%);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.intro {
  width: min(1320px, calc(100% - 8vw));
  margin: 0 auto;
  padding: clamp(100px, 13vw, 190px) 0 100px;
  display: grid;
  grid-template-columns: minmax(150px, 0.52fr) 1.48fr;
  gap: 7vw;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 7px;
  color: #6f766d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label span {
  color: #a46d3e;
}

.section-label p {
  margin: 0;
}

.intro-content {
  max-width: 930px;
}

.intro h2,
.menu-section h2,
.visit-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(45px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.intro-lead {
  max-width: 770px;
  margin: 34px 0 28px;
  color: #5c655e;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
}

.line-link {
  padding-bottom: 7px;
  border-bottom: 1px solid #8d6d4e;
}

.moments {
  padding: clamp(95px, 11vw, 160px) max(4vw, 24px) clamp(135px, 14vw, 210px);
  background:
    radial-gradient(circle at 78% 16%, rgb(204 164 116 / 14%), transparent 34%),
    linear-gradient(135deg, #493327 0%, #6b4a35 100%);
  color: #fff8ed;
}

.moments-heading,
.moment-grid {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.moments-heading {
  display: grid;
  grid-template-columns: 1fr;
}

.moments-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -3vw;
  color: #ddbd91;
}

.moments-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.3vw, 34px);
  margin-top: 80px;
}

.moment-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 36px;
  background: #f3efe4;
  color: #1e2a22;
  box-shadow: 0 24px 70px rgb(8 20 14 / 24%);
  transition: transform 220ms ease;
}

.moment-card:nth-child(2) {
  transform: translateY(44px);
}

@media (hover: hover) {
  .moment-card:hover {
    transform: translateY(-7px);
  }

  .moment-card:nth-child(2):hover {
    transform: translateY(37px);
  }
}

.moment-number {
  position: absolute;
  top: -26px;
  right: 18px;
  color: rgb(185 120 70 / 14%);
  font-family: var(--font-display);
  font-size: 145px;
  line-height: 1;
}

.moment-icon {
  position: relative;
  color: #9b6237;
}

.moment-card h3 {
  position: relative;
  margin: 130px 0 15px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
}

.moment-card p {
  position: relative;
  max-width: 310px;
  margin: 0;
  color: #626a63;
  font-size: 14px;
  line-height: 1.7;
}

.menu-section {
  padding: clamp(90px, 10vw, 150px) max(4vw, 24px);
  background: #173e2e;
  color: #f7f1e6;
}

.menu-heading,
.menu-toolbar,
.menu-groups,
.menu-footnote {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.menu-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 34px;
}

.menu-heading p:last-child {
  max-width: 520px;
  margin: 0 0 7px;
  color: rgb(247 241 230 / 72%);
  font-size: 15px;
  line-height: 1.75;
}

.menu-toolbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px;
  border: 1px solid rgb(247 241 230 / 24%);
  border-radius: 8px;
  background: rgb(23 62 46 / 94%);
  box-shadow: 0 14px 34px rgb(8 24 17 / 22%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.menu-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.menu-filters button {
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid rgb(247 241 230 / 42%);
  border-radius: 999px;
  background: rgb(247 241 230 / 7%);
  color: rgb(255 248 237 / 90%);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) {
  .menu-filters button:hover {
    border-color: rgb(247 241 230 / 78%);
    background: rgb(247 241 230 / 14%);
    color: #fff8ed;
    transform: translateY(-2px);
  }
}

.menu-filters button.is-active {
  border-color: #d6ad76;
  background: #d6ad76;
  color: #173e2e;
}

.menu-filters button:focus-visible {
  outline: 2px solid #d6ad76;
  outline-offset: 3px;
}

.menu-count {
  min-width: max-content;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgb(214 173 118 / 54%);
  border-radius: 999px;
  background: rgb(214 173 118 / 12%);
  color: rgb(255 248 237 / 78%);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-count strong {
  margin-right: 3px;
  color: #e6c694;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.menu-groups {
  column-count: 2;
  column-gap: 26px;
  margin-top: 34px;
}

.menu-groups.is-single {
  column-count: 1;
}

.menu-groups.is-single .menu-group {
  max-width: 900px;
}

.menu-group {
  position: relative;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 26px;
  padding: clamp(26px, 2.6vw, 36px);
  border: 1px solid rgb(120 90 60 / 18%);
  border-radius: 8px;
  background: linear-gradient(145deg, #f8f3e9 0%, #f0e9dc 100%);
  color: #1e2a22;
  box-shadow: 0 18px 46px rgb(77 44 24 / 17%);
  break-inside: avoid;
  animation: menu-reveal 360ms ease both;
}

.menu-group::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #a46b3e, #d4b27d 52%, #a46b3e);
  content: '';
}

.menu-group-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #c9bcaa;
}

.menu-group-heading span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgb(164 107 62 / 38%);
  border-radius: 50%;
  color: #a46b3e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.menu-group-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 400;
}

.dish-row {
  padding: 22px 0;
  border-bottom: 1px solid #d4c9b9;
}

.dish-title-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 18px;
  align-items: baseline;
}

.dish-row h4,
.dish-row strong {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) {
  .dish-row:hover h4 {
    color: #7b4e2d;
    transform: translateX(4px);
  }

  .dish-row:hover strong {
    color: #a46b3e;
  }
}

.dish-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.dish-row h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.dish-row p {
  max-width: calc(100% - 104px);
  margin: 10px 0 0;
  color: #515b54;
  font-size: 15px;
  line-height: 1.65;
}

.dish-row strong {
  color: #7b4e2d;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.menu-footnote {
  margin-top: 30px;
  color: rgb(247 241 230 / 62%);
  font-size: 12px;
  line-height: 1.6;
}

@keyframes menu-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visit-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  background: #d8cfbd;
}

.visit-image {
  min-height: 620px;
  background-image: linear-gradient(rgb(20 38 27 / 12%), rgb(20 38 27 / 22%)), url('assets/fischerstoebli-hero.png');
  background-position: 72% center;
  background-size: cover;
}

.visit-card {
  padding: clamp(70px, 8vw, 130px) clamp(34px, 6vw, 95px);
  align-self: center;
}

.visit-card h2 {
  font-size: clamp(44px, 4.5vw, 72px);
}

.visit-card > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: #5d665f;
  font-size: 16px;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
  border-top: 1px solid #aaa190;
}

.contact-grid > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid #aaa190;
  color: #374a3d;
  font-size: 13px;
}

.hosts {
  min-height: 820px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) 1.18fr;
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
  padding: clamp(85px, 10vw, 150px) max(4vw, 70px);
  background: #e8dfcf;
}

.host-photo {
  position: relative;
  min-height: 610px;
  background:
    linear-gradient(0deg, rgb(13 32 23 / 58%) 0%, transparent 45%),
    url('assets/gastgeber-portrait.png') center 40% / cover;
  box-shadow: 0 35px 90px rgb(44 45 35 / 14%);
}

.host-photo::before {
  content: '';
  position: absolute;
  inset: 9% -5% -5% 9%;
  z-index: -1;
  border: 1px solid #ad8b67;
}

.host-photo span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff8ed;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
}

.hosts-content {
  max-width: 780px;
}

.hosts h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(45px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hosts-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 32px 0 36px;
  color: #5d665f;
  font-size: 17px;
  line-height: 1.75;
}

footer {
  min-height: 160px;
  padding: 45px max(4vw, 24px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  background: #10271c;
  color: #f4eee2;
}

.footer-logo {
  border-color: rgb(244 238 226 / 32%);
}

footer > p {
  margin: 0;
  color: rgb(244 238 226 / 59%);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer > div {
  justify-self: end;
  display: flex;
  gap: 22px;
  color: rgb(244 238 226 / 74%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  /* Mobiles Menü */
  .site-nav {
    position: relative;
    z-index: 20;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav-cta {
    order: 1;
  }

  .nav-toggle {
    order: 2;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 46%);
    border-radius: 50%;
    background: transparent;
    color: #fffdf7;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid #e5c18e;
    outline-offset: 3px;
  }

  .site-nav.is-open .nav-toggle {
    background: #fffdf7;
    color: #173e2e;
  }

  .site-nav.is-open .nav-toggle span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .site-nav.is-open .nav-toggle span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 6px 22px;
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 12px;
    background: rgb(12 32 23 / 94%);
    box-shadow: 0 24px 60px rgb(4 14 9 / 40%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 13px;
    letter-spacing: 0.16em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 0s linear 200ms;
  }

  .site-nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .nav-links a,
  .nav-links .nav-link-mobile {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  /* Leichtere Bilder für Smartphones und Tablets */
  .hero {
    background-image: url('assets/fischerstoebli-hero-mobil.jpg');
  }

  .visit-image {
    background-image: linear-gradient(rgb(20 38 27 / 12%), rgb(20 38 27 / 22%)), url('assets/fischerstoebli-hero-mobil.jpg');
  }

  /* Speisekarten-Filter: eine Zeile, seitlich wischbar */
  .menu-toolbar {
    padding: 8px;
  }

  .menu-filters {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
    mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
  }

  .menu-filters::-webkit-scrollbar {
    display: none;
  }

  .menu-filters::after {
    flex: 0 0 22px;
    content: '';
  }

  .menu-filters button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .menu-filters button:active {
    transform: scale(0.96);
  }

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

  .moments-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .moments-heading .eyebrow {
    margin-bottom: 0;
  }

  .moment-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .moment-card,
  .moment-card:nth-child(2) {
    min-height: 300px;
    transform: none;
  }

  @media (hover: hover) {
    .moment-card:hover,
    .moment-card:nth-child(2):hover {
      transform: translateY(-5px);
    }
  }

  .menu-heading,
  .visit-section,
  .hosts {
    grid-template-columns: 1fr;
  }

  .hosts {
    padding-right: max(4vw, 34px);
    padding-left: max(4vw, 34px);
  }

  .host-photo {
    min-height: 540px;
  }

  .visit-section {
    min-height: 0;
  }

  .menu-heading p:last-child {
    max-width: 620px;
  }

  .menu-groups {
    column-count: 1;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer > div {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  /* Startbereich */
  .hero {
    min-height: 720px;
    min-height: max(660px, 100svh);
    padding-bottom: 116px;
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(10 27 19 / 86%) 0%, rgb(10 27 19 / 53%) 83%),
      linear-gradient(0deg, rgb(8 24 17 / 68%) 0%, transparent 50%);
  }

  .site-nav {
    width: calc(100% - 36px);
    min-height: 76px;
  }

  .wordmark {
    gap: 10px;
    font-size: 19px;
  }

  .nav-logo {
    width: 46px;
    height: 46px;
  }

  .wordmark small {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .nav-cta {
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .hero-copy {
    width: calc(100% - 36px);
    padding-top: clamp(48px, 11vh, 104px);
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(38px, 13.4vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    margin-top: 28px;
  }

  .hero-actions .text-link {
    min-height: 44px;
    justify-content: center;
  }

  .button {
    width: 100%;
    min-height: 54px;
    font-size: 12px;
  }

  .button:active {
    transform: scale(0.98);
  }

  .text-link,
  .line-link {
    font-size: 12px;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-note small {
    font-size: 10.5px;
  }

  /* Einleitung */
  .intro {
    width: calc(100% - 40px);
    padding: 72px 0 76px;
    gap: 26px;
  }

  .section-label {
    padding-top: 0;
    font-size: 11px;
  }

  .intro h2,
  .menu-section h2,
  .visit-card h2,
  .moments-heading h2,
  .hosts h2 {
    font-size: clamp(33px, 10.4vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .intro-lead {
    margin: 22px 0 24px;
    font-size: 17px;
    line-height: 1.65;
  }

  .line-link {
    padding: 12px 0 10px;
  }

  /* Drei gute Gründe */
  .moments {
    padding: 72px 18px 80px;
  }

  .moment-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .moment-card,
  .moment-card:nth-child(2) {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .moment-number {
    top: -14px;
    right: 14px;
    font-size: 104px;
  }

  .moment-card h3 {
    margin: 44px 0 8px;
    font-size: 29px;
  }

  .moment-card p {
    max-width: none;
    font-size: 15px;
  }

  /* Speisekarte */
  .menu-section {
    padding: 72px 14px 64px;
  }

  .menu-heading {
    gap: 18px;
    margin-bottom: 28px;
    padding: 0 6px;
  }

  .menu-heading p:last-child {
    margin: 0;
    font-size: 16px;
  }

  .menu-toolbar {
    top: 8px;
    padding: 6px;
    gap: 0;
    border-radius: 999px;
  }

  .menu-filters {
    gap: 6px;
    padding: 0;
    border-radius: 999px;
  }

  .menu-filters button {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  /* Anzahl bleibt für Screenreader erhalten, braucht aber keinen Platz in der Leiste */
  .menu-count {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-groups {
    column-gap: 0;
    margin-top: 18px;
  }

  .menu-group {
    margin-bottom: 14px;
    padding: 24px 20px;
  }

  .menu-group-heading {
    gap: 12px;
    padding-bottom: 14px;
  }

  .menu-group-heading span {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .menu-group-heading h3 {
    font-size: 25px;
  }

  .dish-row {
    padding: 18px 0;
  }

  .dish-title-line {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .dish-row h4 {
    font-size: 21px;
  }

  .dish-row strong {
    font-size: 19px;
  }

  .dish-row p {
    max-width: 100%;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.55;
  }

  .menu-footnote {
    padding: 0 6px;
    font-size: 13px;
  }

  /* Besuch */
  .visit-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .visit-card {
    padding: 56px 20px 64px;
  }

  .visit-card > p:not(.eyebrow) {
    margin: 22px 0 28px;
    font-size: 16px;
  }

  .contact-grid {
    margin-bottom: 28px;
  }

  .contact-grid > div {
    align-items: center;
    padding: 14px 0;
    font-size: 15px;
  }

  .contact-grid a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    text-decoration: underline;
    text-decoration-color: rgb(55 74 61 / 40%);
    text-underline-offset: 4px;
  }

  /* Gastgeber */
  .hosts {
    min-height: 0;
    gap: 44px;
    padding: 64px 20px 72px;
  }

  .host-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
    background:
      linear-gradient(0deg, rgb(13 32 23 / 58%) 0%, transparent 45%),
      url('assets/gastgeber-portrait-mobil.jpg') center 40% / cover;
  }

  .host-photo span {
    right: 20px;
    bottom: 18px;
    left: 20px;
    font-size: 19px;
  }

  .hosts-content > p:not(.eyebrow) {
    margin: 22px 0 0;
    font-size: 16px;
  }

  /* Fußzeile */
  footer {
    gap: 20px;
    padding: 44px 20px 36px;
  }

  footer > p {
    font-size: 11px;
    line-height: 1.7;
  }

  footer > div {
    flex-wrap: wrap;
    gap: 0 24px;
    font-size: 12px;
  }

  footer > div a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

/* Schmale Geräte (z. B. iPhone SE, iPhone mini) */
@media (max-width: 389px) {
  .wordmark {
    font-size: 17px;
  }

  .wordmark small {
    font-size: 8.5px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .nav-logo {
    width: 40px;
    height: 40px;
  }

  .button {
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
