:root {
  --bg: #0b2230;
  --bg-deep: #071722;
  --panel: rgba(8, 25, 36, 0.78);
  --panel-solid: #102a38;
  --paper: #efe1be;
  --paper-strong: #f6e9c9;
  --ink: #f7f0dc;
  --muted: #d5c59f;
  --gold: #d6ae5b;
  --gold-strong: #efc76c;
  --line: rgba(214, 174, 91, 0.28);
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  --radius: 0;
  --radius-small: 0;
  --content-width: min(1180px, calc(100% - 40px));
  --display-font: "Rockwell", "Georgia", serif;
  --body-font: "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 148px;
}

.anchor-target {
  scroll-margin-top: 148px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    linear-gradient(180deg, rgba(8, 19, 28, 0.92), rgba(5, 15, 22, 0.98)),
    linear-gradient(135deg, rgba(212, 161, 68, 0.07), transparent 42%),
    var(--bg);
  background-attachment: fixed;
}

body.menu-lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/texture-wood.png") center/520px repeat;
  mix-blend-mode: soft-light;
  opacity: 0.18;
  pointer-events: none;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 16px max(22px, calc((100vw - var(--content-width)) / 2 + 22px)) 16px 12px;
  border: 1px solid rgba(214, 174, 91, 0.22);
  border-radius: 0;
  background: rgba(6, 20, 30, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-brand {
  width: min(250px, 48vw);
  flex: 0 0 auto;
}

.site-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 99px;
  font-family: var(--display-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav .nav-label {
  display: inline-block;
  transition: transform 0.2s ease, text-shadow 0.2s ease, letter-spacing 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 174, 91, 0), rgba(214, 174, 91, 0.95), rgba(214, 174, 91, 0));
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-strong);
  transform: translateY(-2px);
}

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

.site-nav a:hover .nav-label,
.site-nav a:focus-visible .nav-label {
  transform: scale(1.08);
  letter-spacing: 0.09em;
  text-shadow: 0 0 18px rgba(214, 174, 91, 0.34);
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  margin-right: -140px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.site-header-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(214, 174, 91, 0.28);
  border-radius: 999px;
  background: #D1C4A7;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header-social svg {
  width: 18px;
  height: 18px;
}

.site-header-social:hover,
.site-header-social:focus-visible {
  color: var(--gold-strong);
  border-color: rgba(239, 199, 108, 0.72);
  background: rgba(239, 199, 108, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-center p {
    animation: none;
  }

  .has-reveal .reveal-item,
  .has-reveal .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(239, 233, 201, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
}

.section {
  padding: 72px 0;
}

.has-reveal .reveal-item {
  opacity: 0.01;
  transform: translateY(26px);
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal .site-header.reveal-item {
  transform: translateY(-18px);
}

.has-reveal .hero-center.reveal-item {
  transform: translateY(18px);
}

.has-reveal .highlight-card.reveal-item,
.has-reveal .gallery-item.reveal-item,
.has-reveal .contact-card.reveal-item,
.has-reveal .legal-card.reveal-item,
.has-reveal .menu-card.reveal-item {
  transform: translateY(30px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 140px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px max(22px, calc((100vw - var(--content-width)) / 2 + 22px)) 36px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(242, 197, 105, 0.22) 0%, rgba(242, 197, 105, 0.08) 18%, rgba(8, 22, 31, 0) 42%),
    linear-gradient(90deg, rgba(214, 174, 91, 0.12) 0%, rgba(214, 174, 91, 0) 14%, rgba(214, 174, 91, 0) 86%, rgba(214, 174, 91, 0.12) 100%),
    linear-gradient(90deg, rgba(6, 17, 24, 0.92) 0%, rgba(7, 20, 29, 0.78) 38%, rgba(8, 22, 31, 0.42) 68%, rgba(7, 20, 29, 0.54) 100%),
    linear-gradient(180deg, rgba(5, 14, 21, 0.3), rgba(5, 14, 21, 0.66)),
    url("../img/hero-night.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(214, 174, 91, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(248, 233, 196, 0.05),
    inset 0 0 48px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 0;
}

.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(56vw, 560px);
  width: min(100%, 1120px);
}

.hero-center::before {
  content: "";
  position: absolute;
  width: min(78vw, 860px);
  height: min(22vw, 240px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at center, rgba(243, 206, 133, 0.32) 0%, rgba(243, 206, 133, 0.16) 34%, rgba(243, 206, 133, 0) 72%);
  filter: blur(12px);
  opacity: 0.95;
}

.hero-center::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 2px);
  width: min(72vw, 780px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(214, 174, 91, 0), rgba(214, 174, 91, 0.45), rgba(214, 174, 91, 0));
  box-shadow: 0 0 20px rgba(214, 174, 91, 0.24);
  opacity: 0.7;
}

.hero-center p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  font-family: "Rye", var(--display-font);
  font-size: clamp(2rem, 5.8vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  animation: heroPulse 4.4s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, letter-spacing, text-shadow, color, opacity;
  text-shadow:
    0 2px 0 rgba(38, 20, 6, 0.65),
    0 10px 28px rgba(0, 0, 0, 0.52),
    0 0 26px rgba(214, 174, 91, 0.16);
}

.hero-center p::before {
  content: "";
  position: absolute;
  inset: -20px -34px;
  border-top: 1px solid rgba(214, 174, 91, 0.42);
  border-bottom: 1px solid rgba(214, 174, 91, 0.42);
  opacity: 0.78;
}

.hero-center p::after {
  content: "";
  position: absolute;
  inset: -34px -56px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 44%, rgba(255, 245, 214, 0.16) 50%, rgba(255, 255, 255, 0) 56%);
  transform: translateX(-18%);
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: heroSheen 7.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.96;
    letter-spacing: 0.04em;
    transform: translateY(0) scale(1);
    text-shadow:
      0 2px 0 rgba(38, 20, 6, 0.65),
      0 10px 28px rgba(0, 0, 0, 0.52),
      0 0 26px rgba(214, 174, 91, 0.16);
  }

  50% {
    opacity: 1;
    letter-spacing: 0.045em;
    transform: translateY(-1px) scale(1.015);
    text-shadow:
      0 2px 0 rgba(38, 20, 6, 0.68),
      0 12px 30px rgba(0, 0, 0, 0.56),
      0 0 28px rgba(214, 174, 91, 0.22);
  }
}

@keyframes heroSheen {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.2;
  }

  48% {
    opacity: 0.2;
  }

  58% {
    transform: translateX(18%);
    opacity: 0.78;
  }

  68% {
    opacity: 0.18;
  }
}

@keyframes footerHeroPulse {
  0%,
  100% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-1px) scale(1.015);
  }
}

.eyebrow,
.section-kicker,
.note-kicker {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-section h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-copy p,
.section-heading p,
.contact-card p,
.legal-copy p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(247, 240, 220, 0.88);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 0;
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--bg-deep);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow: 0 10px 24px rgba(214, 174, 91, 0.22);
}

.button-secondary {
  border: 1px solid rgba(239, 233, 201, 0.22);
  background: rgba(239, 233, 201, 0.06);
}

.menu-card,
.stack-primary,
.stack-secondary,
.gallery-item,
.legal-card,
.contact-card {
  overflow: hidden;
  border: 1px solid rgba(214, 174, 91, 0.2);
  border-radius: var(--radius);
  background: rgba(10, 24, 34, 0.76);
  box-shadow: var(--shadow);
}

.stack-primary img,
.stack-secondary img,
.gallery-item img,
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1520px, calc(100% + 260px));
  margin-left: 50%;
  transform: translateX(-50%);
  gap: 0;
  margin-top: -62px;
  padding: 0;
  overflow: visible;
  background: none;
  box-shadow: none;
  z-index: 2;
}

.highlight-band::before {
  display: none;
}

.highlight-band::after {
  display: none;
}

.highlight-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  min-height: 246px;
  padding: 26px 26px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(214, 190, 145, 0.28), rgba(106, 74, 35, 0.22)),
    url("../img/pergament.jpg") center center / cover no-repeat;
  color: var(--bg);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.12s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    background-size 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-reveal .highlight-card.reveal-item,
.has-reveal .highlight-card.reveal-item.is-visible {
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.16s ease-out,
    background-size 0.16s ease-out;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0s, 0s;
}

.highlight-card:not(:first-child)::before {
  display: none;
}

.highlight-card:hover,
.highlight-card:focus-within {
  box-shadow:
    0 26px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  background-size: cover, 108% 108%;
}

.has-reveal .highlight-card.reveal-item.is-visible:hover,
.has-reveal .highlight-card.reveal-item.is-visible:focus-within {
  transition-duration: 0.18s, 0.18s, 0.18s, 0.18s;
  transition-delay: 0s;
  transform: translateY(0);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border: 2px solid rgba(16, 50, 68, 0.88);
  border-radius: 50%;
  color: #103244;
}

.highlight-icon img {
  width: 32px;
  height: 32px;
}

.highlight-card h2 {
  margin: 0 0 12px;
  color: #103244;
  font-family: var(--display-font);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.highlight-card p {
  margin: 0;
  max-width: 22ch;
  color: rgba(16, 50, 68, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: center;
}

#drinks.drinks-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.88fr);
  grid-template-areas:
    "intro intro"
    "media body"
    "media card";
  gap: 0 clamp(28px, 4vw, 64px);
  width: 100vw;
  margin: 48px 0 0 calc(50% - 50vw);
  padding: 42px 0 76px;
  background:
    linear-gradient(180deg, var(--bg-deep) 0 56%, #ddd0b1 56% 100%);
}

.drinks-feature-intro {
  grid-area: intro;
  width: 100%;
  max-width: none;
  margin: 0 0 34px;
  padding: 0 clamp(24px, 6vw, 96px);
}

.drinks-feature-intro .section-kicker {
  margin-bottom: 12px;
  color: rgba(239, 199, 108, 0.92);
  letter-spacing: 0.08em;
}

.drinks-feature-intro h2 {
  color: var(--paper-strong);
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.94;
  text-shadow: none;
}

.drinks-feature-media {
  grid-area: media;
  position: relative;
  margin: 0;
  align-self: start;
  min-height: 620px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.drinks-feature-media-scroll {
  position: absolute;
  inset: -10% 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 25, 0.06), rgba(6, 17, 25, 0.06)),
    url("../img/bar-tap.jpg") center center / cover no-repeat;
  transform: translate3d(0, var(--drinks-parallax-offset, 0px), 0);
  will-change: transform;
}

.drinks-feature-body {
  grid-area: body;
  align-self: start;
  max-width: 420px;
  padding-top: 8px;
}

.drinks-feature-body p {
  color: rgba(247, 240, 220, 0.9);
  line-height: 1.78;
}

.drinks-feature-signoff {
  margin-top: 20px;
  font-family: "Rye", var(--display-font);
  font-size: 1.58rem !important;
  letter-spacing: 0.04em;
  line-height: 1.1;
  animation: heroPulse 4.4s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, letter-spacing, text-shadow, color, opacity;
  text-shadow:
    0 2px 0 rgba(38, 20, 6, 0.65),
    0 10px 28px rgba(0, 0, 0, 0.52),
    0 0 26px rgba(214, 174, 91, 0.16);
  text-transform: uppercase;
}

.drinks-feature-card {
  grid-area: card;
  align-self: end;
  max-width: 520px;
  margin-top: 168px;
  padding: 40px 48px 42px;
  border: 1px solid rgba(214, 174, 91, 0.22);
  background: rgba(6, 20, 30, 0.84);
  backdrop-filter: blur(14px);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.drinks-feature-card .note-kicker {
  margin-bottom: 18px;
  color: rgba(239, 199, 108, 0.92);
}

.drinks-feature-card h3 {
  margin: 0 0 22px;
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.drinks-feature-card p {
  margin: 0 0 28px;
  color: rgba(247, 240, 220, 0.86);
  font-size: 1.02rem;
  line-height: 1.7;
}

.drinks-feature-card .button-primary {
  min-width: 230px;
  background: transparent;
  color: var(--paper-strong);
  border: 1px solid rgba(239, 225, 190, 0.7);
  box-shadow: none;
}

.drinks-feature-card .button-primary:hover,
.drinks-feature-card .button-primary:focus-visible {
  background: rgba(239, 225, 190, 0.08);
}

.drinks-scrollbackdrop {
  position: relative;
  width: 100vw;
  min-height: min(56vw, 640px);
  margin: 0 0 0 calc(50% - 50vw);
  background:
    linear-gradient(180deg, rgba(7, 23, 34, 0.18), rgba(7, 23, 34, 0.18)),
    url("../img/bar-pub-rutsche-wenns.jpg") center center / cover no-repeat;
  background-attachment: fixed;
}

.footer-scrollbackdrop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: min(54vw, 620px);
  margin: 0 0 0 calc(50% - 50vw);
  padding: 48px 24px;
  background:
    linear-gradient(180deg, rgba(7, 23, 34, 0.08), rgba(7, 23, 34, 0.14)),
    url("../img/die-rutsche-wenns.jpg") center center / cover no-repeat;
  background-attachment: fixed;
}

.footer-scrollbackdrop-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  padding: 30px 28px 26px;
  border: 1px solid rgba(16, 42, 56, 0.78);
  border-radius: 999px;
  background: rgba(221, 208, 177, 0.96);
  color: #102a38;
  text-align: center;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
}

.footer-scrollbackdrop-panel h2 {
  margin: 0 0 24px;
  color: #232b23;
  font-family: var(--body-font);
  font-size: clamp(1.25rem, 2.9vw, 1.8rem);
  font-weight: 400;
  line-height: 1.04;
  text-transform: uppercase;
}

.footer-scrollbackdrop-block {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 42, 56, 0.54);
}

.footer-scrollbackdrop-block h3 {
  margin: 0 0 10px;
  color: #232b23;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 400;
}

.footer-scrollbackdrop-block p {
  margin: 0;
  color: rgba(16, 42, 56, 0.9);
  font-size: 1.02rem;
  line-height: 1.6;
}

.footer-scrollbackdrop-block p.footer-scrollbackdrop-hero-copy {
  font-family: "Rye", var(--display-font);
  width: min(100%, 8.8ch);
  margin-inline: auto;
  font-size: clamp(1.9rem, 3vw, 2.65rem) !important;
  line-height: 0.96;
  animation: footerHeroPulse 4.4s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, opacity;
  text-wrap: balance;
}

.footer-scrollbackdrop-mark {
  display: block;
  width: min(32px, 10vw);
  height: auto;
  margin-bottom: 12px;
}

.footer-scrollbackdrop-icon {
  height: min(32px, 10vw);
  background-color: #2f2f31;
  -webkit-mask-image: url("../icons/drink.svg");
  mask-image: url("../icons/drink.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-scrollbackdrop-mark-bottom {
  margin-top: 18px;
  margin-bottom: 0;
}

.footer-scrollbackdrop-logo-bottom {
  width: min(74px, 22vw);
}

.events-showcase {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 56px 0 74px;
}

.events-showcase-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 3vw, 42px);
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  align-items: stretch;
}

.events-showcase-stage {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 760px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 20, 30, 0.18), rgba(6, 20, 30, 0.58)),
    url("../img/two-fighters-rutsche-wenns.jpg") center center / cover no-repeat;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.events-showcase-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 30, 0.82) 0%, rgba(6, 20, 30, 0.44) 54%, rgba(6, 20, 30, 0.18) 100%);
  pointer-events: none;
}

.events-showcase-copy {
  position: relative;
  z-index: 1;
}

.events-showcase-copy {
  width: min(100%, 600px);
  padding: 30px 32px;
  background: rgba(6, 20, 30, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.events-showcase-copy .section-kicker {
  margin-bottom: 12px;
  color: rgba(239, 199, 108, 0.92);
}

.events-showcase-copy h2 {
  margin: 0 0 18px;
  color: var(--paper-strong);
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.events-showcase-copy p:not(.section-kicker) {
  margin: 0;
  max-width: 54ch;
  color: rgba(247, 240, 220, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

.events-showcase-copy p:not(.section-kicker) + p:not(.section-kicker) {
  margin-top: 14px;
}

.events-showcase-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.upcoming-events-heading {
  margin: 0;
  padding: 24px 26px 26px;
  background: rgba(6, 20, 30, 0.84);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.upcoming-events-heading .section-kicker {
  margin-bottom: 12px;
  color: rgba(239, 199, 108, 0.92);
}

.upcoming-events-heading h2 {
  color: var(--paper-strong);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.upcoming-event-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: stretch;
  min-height: 248px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.upcoming-event-date-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: rgba(6, 20, 30, 0.92);
  color: var(--paper-strong);
  text-align: center;
}

.upcoming-event-item:not(.upcoming-event-item-featured) .upcoming-event-date-box {
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 10px;
}

.upcoming-event-date-main {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.upcoming-event-date-sub {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upcoming-event-item:not(.upcoming-event-item-featured) .upcoming-event-date-main {
  font-size: 1.22rem;
  line-height: 1;
}

.upcoming-event-item:not(.upcoming-event-item-featured) .upcoming-event-date-sub {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.upcoming-event-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 24px 22px;
  background: rgba(221, 208, 177, 0.96);
  color: #102a38;
}

.upcoming-event-body h3 {
  margin: 0;
  color: #102a38;
  font-family: var(--body-font);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.upcoming-event-item-featured .upcoming-event-body {
  justify-content: flex-start;
}

.upcoming-event-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

.google-thanks-section {
  padding-top: 20px;
}

.google-thanks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.google-reviews-shell {
  display: block;
}

.google-reviews-summary,
.google-review-card {
  border: 1px solid rgba(214, 174, 91, 0.24);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.google-reviews-summary {
  padding: 34px 34px 32px;
  background:
    linear-gradient(180deg, rgba(14, 35, 48, 0.84), rgba(7, 22, 31, 0.88)),
    rgba(10, 24, 34, 0.76);
}

.google-reviews-summary h2 {
  margin: 0;
  color: var(--paper-strong);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.96;
  text-wrap: balance;
}

.google-reviews-summary-copy {
  margin: 18px 0 0;
  color: rgba(247, 240, 220, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}

.google-reviews-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.google-reviews-score {
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: clamp(3.1rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.google-reviews-score-meta {
  display: grid;
  gap: 8px;
}

.google-reviews-score-meta p {
  margin: 0;
  color: rgba(247, 240, 220, 0.88);
  font-size: 1rem;
  line-height: 1.5;
}

.google-reviews-stars {
  position: relative;
  display: inline-block;
  min-width: 6.4em;
  letter-spacing: 0.16em;
  line-height: 1;
  color: rgba(239, 225, 190, 0.22);
}

.google-reviews-stars::before,
.google-reviews-stars-fill::before {
  content: "★★★★★";
}

.google-reviews-stars::before {
  display: block;
}

.google-reviews-stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #d6ae5b;
  white-space: nowrap;
}

.google-reviews-button {
  margin-top: 26px;
}

.thanks-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 38px 34px;
  border: 1px solid rgba(214, 174, 91, 0.24);
  background:
    linear-gradient(180deg, rgba(14, 35, 48, 0.82), rgba(7, 22, 31, 0.86)),
    rgba(10, 24, 34, 0.74);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.thanks-panel .section-kicker {
  margin-bottom: 18px;
}

.thanks-panel p:not(.section-kicker) {
  margin: 0;
  color: rgba(247, 240, 220, 0.9);
  font-size: 1.12rem;
  line-height: 1.82;
}

.thanks-panel p:not(.section-kicker) + p:not(.section-kicker) {
  margin-top: 18px;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.menu-lightbox[hidden] {
  display: none;
}

.menu-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 18, 0.84);
  backdrop-filter: blur(10px);
}

.menu-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1080px);
  max-height: calc(100vh - 48px);
  padding: 18px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(14, 35, 48, 0.96), rgba(7, 22, 31, 0.96)),
    rgba(10, 24, 34, 0.92);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.36);
}

.menu-lightbox-dialog img {
  width: 100%;
  height: auto;
}

.menu-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(239, 225, 190, 0.64);
  background: rgba(7, 23, 34, 0.8);
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 1.1rem;
  cursor: pointer;
}

.menu-lightbox-close:hover,
.menu-lightbox-close:focus-visible {
  background: rgba(239, 225, 190, 0.12);
}

.gallery-item > a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 18, 0.84);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 1280px);
  max-height: calc(100vh - 48px);
  padding: 18px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(14, 35, 48, 0.96), rgba(7, 22, 31, 0.96)),
    rgba(10, 24, 34, 0.92);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox-dialog img {
  width: 100%;
  height: auto;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(239, 225, 190, 0.64);
  background: rgba(7, 23, 34, 0.8);
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 1.1rem;
  cursor: pointer;
}

.gallery-lightbox-close {
  top: 10px;
  right: 10px;
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-lightbox-prev {
  left: 10px;
}

.gallery-lightbox-next {
  right: 10px;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(239, 225, 190, 0.12);
}

.alt-layout {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.copy-stack {
  display: grid;
  gap: 12px;
  margin: 20px 0 30px;
}

.menu-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(14, 35, 48, 0.92), rgba(7, 22, 31, 0.92)),
    rgba(10, 24, 34, 0.8);
}

.menu-card img {
  border-radius: 0;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.stack-primary {
  position: absolute;
  inset: 0 90px 0 0;
}

.stack-secondary {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 46%;
  aspect-ratio: 0.92 / 1.1;
}

.quote-card {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold-strong);
  border-radius: 0;
  background: rgba(239, 233, 201, 0.08);
}

.quote-card p {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 1.28rem;
  line-height: 1.5;
}

.mobile-drinks-followup {
  display: none;
}

.gallery-swipe-hint {
  display: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-slider {
  overflow: visible;
}

.gallery-item {
  margin: 0;
  min-height: 320px;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 660px;
}

.gallery-item-wide {
  grid-column: span 2;
  min-height: 360px;
}

.gallery-item-triple {
  grid-column: span 3;
  min-height: 360px;
}

.gallery-item-tall {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-item-wide {
  grid-column: span 2;
}

.contact-section {
  padding-bottom: 44px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 28px 24px;
}

.contact-card h3,
.legal-card h2 {
  margin: 0 0 16px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.contact-card a,
.legal-card a {
  color: var(--gold-strong);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 28px;
  margin-top: 20px;
  padding: 28px 0 10px;
  border-top: 1px solid var(--line);
}

.footer-intro {
  display: grid;
  gap: 8px;
}

.footer-kicker {
  margin: 0;
  color: var(--gold-strong);
  font-family: var(--display-font);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-intro p,
.footer-card p,
.footer-card a {
  margin: 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.footer-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px 20px;
  border: 1px solid rgba(214, 174, 91, 0.22);
  background: rgba(6, 20, 30, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-card h2 {
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-card a {
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-card a:hover,
.footer-card a:focus-visible {
  color: var(--gold-strong);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 8px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(214, 174, 91, 0.28);
  border-radius: 999px;
  color: var(--muted);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-row {
  position: absolute;
  top: 28px;
  right: 0;
  display: flex;
  gap: 8px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-social:hover,
.footer-social:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold-strong);
}

.legal-page .site-shell {
  min-height: 100vh;
}

.legal-main {
  padding-top: 34px;
}

.legal-page .legal-card {
  width: 100%;
  max-width: none;
  padding: 22px 20px 20px;
}

.legal-section h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.legal-card {
  max-width: 820px;
  padding: 30px 28px;
}

.legal-card-full {
  width: 100%;
  max-width: none;
}

.legal-copy h2 {
  margin-top: 28px;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
    padding-right: 24px;
  }

  .site-brand {
    width: min(220px, 34vw);
  }

  .site-nav {
    gap: clamp(24px, 3.6vw, 52px);
    font-size: 0.96rem;
  }

  .site-header-actions {
    margin-right: 0;
  }

  .section-split,
  .alt-layout {
    grid-template-columns: 1fr;
  }

  #drinks.drinks-feature {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
    grid-template-areas:
      "intro intro"
      "media body"
      "media card";
    gap: 0 28px;
    padding: 36px 0 60px;
  }

  .drinks-feature-media {
    min-height: 500px;
  }

  .drinks-feature-card {
    padding: 34px 32px 36px;
  }

  .drinks-scrollbackdrop {
    min-height: min(62vw, 520px);
  }

  .footer-scrollbackdrop {
    min-height: min(60vw, 500px);
  }

  .footer-scrollbackdrop-panel {
    width: min(100%, 430px);
    padding: 34px 30px 30px;
  }

  .events-showcase {
    padding: 48px 0 64px;
  }

  .events-showcase-shell {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 44px));
  }

  .events-showcase-stage {
    justify-items: center;
    align-content: center;
    min-height: 680px;
  }

  .events-showcase-copy {
    width: min(100%, 560px);
  }

  .google-reviews-shell {
    max-width: 760px;
    margin: 0 auto;
  }

  .google-thanks-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-events-heading {
    margin-bottom: 0;
    text-align: center;
  }

  .thanks-panel {
    padding: 32px 30px;
  }

  .menu-lightbox-dialog {
    width: min(94vw, 920px);
  }

  .gallery-lightbox-dialog {
    width: min(95vw, 1040px);
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-center {
    min-height: min(64vw, 500px);
  }

  .highlight-band,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-band {
    margin-top: -40px;
  }

  .highlight-card:nth-child(odd)::before {
    display: none;
  }

  .highlight-card:nth-child(n + 3)::after {
    display: none;
  }

  .gallery-item-large {
    grid-row: auto;
    min-height: 400px;
  }

  .gallery-item-wide,
  .gallery-item-triple,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 400px;
  }

  .image-stack {
    min-height: 520px;
  }

  .section-copy,
  .section-heading,
  .drinks-feature-intro,
  .drinks-feature-body,
  .drinks-feature-card,
  .events-showcase-copy,
  .upcoming-event-body,
  .thanks-panel,
  .legal-section,
  .legal-card {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .drinks-feature-body,
  .drinks-feature-card,
  .events-showcase-sidebar,
  .legal-card {
    max-width: 720px;
  }

  .quote-card {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .upcoming-event-body {
    align-items: center;
  }

  .upcoming-event-date {
    text-align: center;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .events-showcase-sidebar,
  .upcoming-events-list,
  .upcoming-events-heading {
    width: 100%;
    max-width: none;
  }

  .upcoming-event-item {
    grid-template-columns: 156px minmax(0, 1fr);
  }

  .upcoming-event-body {
    width: 100%;
    align-items: stretch;
    box-sizing: border-box;
  }

  .gallery-grid > .gallery-item:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  #drinks.drinks-feature {
    background:
      linear-gradient(180deg, var(--bg-deep) 0 62%, #ddd0b1 62% 100%);
  }

  .footer-scrollbackdrop {
    background-attachment: scroll;
  }

  .drinks-feature-body p:not(.drinks-feature-signoff) {
    padding-inline: clamp(18px, 4vw, 34px);
  }

  .section-split.alt-layout .section-copy > p:not(.section-kicker) {
    padding-inline: clamp(18px, 4vw, 34px);
  }
}

@media (min-width: 761px) and (max-width: 1440px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-right: max(18px, calc((100vw - var(--content-width)) / 2 + 18px));
  }

  .site-brand {
    width: min(200px, 22vw);
  }

  .site-nav {
    position: static;
    left: auto;
    transform: none;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
    font-size: 0.88rem;
  }

  .site-header-actions {
    margin-left: 0;
    margin-right: 0;
    gap: 8px;
  }

  .site-header-social-row {
    gap: 8px;
  }

  .site-header-social {
    width: 38px;
    height: 38px;
  }

  .highlight-band {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}

@media (min-width: 1081px) and (max-width: 1400px) {
  .legal-card {
    max-width: 980px;
  }

  .site-nav {
    gap: clamp(34px, 3.7vw, 58px);
  }

  .section-split.alt-layout .section-copy h2 {
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  }
}

@media (min-width: 1401px) and (max-width: 1440px) {
  .site-nav {
    gap: clamp(34px, 3.7vw, 58px);
  }
}

@media (min-width: 1401px) {
  .legal-card {
    max-width: 980px;
  }
}

@media (min-width: 921px) {
  .site-header {
    padding-top: 20px;
  }
}

@media (min-width: 1721px) {
  .site-header {
    padding-left: calc((100vw - 1720px) / 2 + 12px);
  }
}

@media (min-width: 1801px) {
  .site-header {
    padding-left: 12px;
    padding-right: 18px;
  }

  .site-header-actions {
    margin-right: 120px;
  }
}

@media (max-width: 920px) {
  .site-shell {
    width: min(100% - 22px, 100%);
    padding-top: 12px;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    top: 12px;
    margin-left: calc(50% - 50vw);
    padding: 12px 16px;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  .site-brand {
    width: min(142px, calc(100% - 132px));
  }

  .site-header-actions {
    margin-left: auto;
    margin-right: 0;
    gap: 10px;
  }

  .site-header-social-row {
    gap: 8px;
  }

  .site-header-social {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(214, 174, 91, 0.22);
    border-radius: 0;
    background: rgba(5, 17, 25, 0.98);
    text-align: center;
  }

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

  .site-nav a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  html {
    scroll-padding-top: 116px;
  }

  .anchor-target {
    scroll-margin-top: 116px;
  }

  body {
    background-attachment: scroll;
  }

  body::before {
    display: none;
  }

  .site-shell {
    width: min(100% - 22px, 100%);
    padding-top: 12px;
  }

  .site-header {
    align-items: center;
    gap: 14px;
    top: 12px;
    margin-left: calc(50% - 50vw);
    padding: 12px 16px;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  .site-brand {
    width: min(142px, calc(100% - 132px));
  }

  .site-header-actions {
    margin-right: 0;
    gap: 10px;
  }

  .site-header-social-row {
    gap: 8px;
  }

  .site-header-social {
    width: 36px;
    height: 36px;
    -webkit-tap-highlight-color: transparent;
  }

  .site-header-social:focus,
  .site-header-social:focus-visible,
  .site-header-social:active {
    color: var(--muted);
    border-color: rgba(214, 174, 91, 0.28);
    background: #D1C4A7;
    box-shadow: none;
    transform: none;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(214, 174, 91, 0.22);
    border-radius: 0;
    background: rgba(5, 17, 25, 0.98);
    text-align: center;
  }

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

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: calc(100svh - 128px);
    padding: 20px 16px 28px;
  }

  .hero::after {
    inset: 12px;
  }

  .hero-center {
    width: 100%;
    min-height: min(96vw, 430px);
    padding: 28px 0;
    justify-content: center;
    text-align: center;
  }

  .hero-center::before {
    width: min(86vw, 520px);
    height: min(32vw, 180px);
  }

  .hero-center::after {
    width: min(82vw, 500px);
  }

  .hero-center p::before {
    inset: -14px -14px;
  }

  .hero-center p::after {
    inset: -24px -20px;
  }

  .hero-center p {
    width: min(100%, 12ch);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation-duration: 3.2s;
    text-shadow:
      0 2px 0 rgba(38, 20, 6, 0.72),
      0 12px 32px rgba(0, 0, 0, 0.62),
      0 0 36px rgba(214, 174, 91, 0.26);
    text-wrap: balance;
    white-space: normal;
  }

  .hero h1,
  .section h2,
  .legal-section h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

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

  .highlight-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    touch-action: pan-y;
  }

  .highlight-card {
    justify-content: flex-start;
    padding-top: 22px;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
    user-select: none;
    pointer-events: none;
  }

  .highlight-card * {
    pointer-events: none;
  }

  .highlight-card h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1em;
    margin-bottom: 10px;
  }

  .highlight-card:hover,
  .highlight-card:active,
  .highlight-card:focus-within,
  .has-reveal .highlight-card.reveal-item.is-visible:active,
  .has-reveal .highlight-card.reveal-item.is-visible:hover,
  .has-reveal .highlight-card.reveal-item.is-visible:focus-within {
    transform: none;
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    background-size: cover, cover;
  }

  .gallery-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding-bottom: 0;
    flex-wrap: nowrap;
    transition: transform 0.28s ease;
    will-change: transform;
  }

  .gallery-slider {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y pinch-zoom;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .has-reveal .gallery-item.reveal-item,
  .has-reveal .gallery-item.reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #drinks.drinks-feature {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "body"
      "media"
      "card";
    gap: 24px;
    margin-top: 32px;
    padding: 28px 0 36px;
    background: var(--bg-deep);
  }

  .highlight-band {
    width: min(100%, calc(100% + 24px));
    gap: 0;
    margin-top: -24px;
    padding: 0;
  }

  .highlight-band::before {
    display: none;
  }

  .highlight-card::before {
    display: none;
  }

  .highlight-card:not(:first-child)::after {
    display: none;
  }

  .drinks-feature-intro {
    margin-bottom: 0;
  }

  .drinks-feature-media {
    min-height: 320px;
    background: #ddd0b1;
  }

  .drinks-feature-media-scroll {
    inset: 0;
    transform: none;
  }

  .drinks-feature-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    padding-top: 0;
    text-align: center;
  }

  .drinks-feature-signoff {
    animation-duration: 3.2s;
    text-shadow:
      0 2px 0 rgba(38, 20, 6, 0.72),
      0 12px 32px rgba(0, 0, 0, 0.62),
      0 0 36px rgba(214, 174, 91, 0.24);
  }

  .drinks-feature-card {
    z-index: 0;
    position: relative;
    max-width: none;
    margin: 0 16px;
    padding: 30px 24px 32px;
    border: 0;
    background: #2f343b !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 26px 46px rgba(96, 73, 33, 0.28) !important;
    text-align: left;
  }

  .drinks-feature-card::before {
    display: none;
  }

  .drinks-feature-card .button-primary {
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(239, 225, 190, 0.55);
    background: transparent;
    color: var(--paper-strong);
    box-shadow: none;
  }

  .drinks-scrollbackdrop {
    margin-bottom: 35px;
    min-height: 300px;
    background-attachment: scroll;
  }

  .footer-scrollbackdrop {
    min-height: 260px;
    padding: 10px 10px;
    background-attachment: scroll;
  }

  .footer-scrollbackdrop-panel {
    width: min(100%, 236px);
    aspect-ratio: 1 / 1;
    gap: 4px;
    padding: 14px 12px 12px;
  }

  .footer-scrollbackdrop-panel h2 {
    font-size: 2rem;
  }

  .footer-scrollbackdrop-block {
    margin-top: 4px;
    padding-top: 4px;
  }

  .footer-scrollbackdrop-block h3 {
    font-size: 0.72rem;
  }

  .footer-scrollbackdrop-block p {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .footer-scrollbackdrop-block p.footer-scrollbackdrop-hero-copy {
    width: min(100%, 11ch);
    margin-top: 6px;
    margin-inline: auto;
    font-size: clamp(0.88rem, 3.2vw, 1.16rem) !important;
    line-height: 0.92;
    animation: footerHeroPulse 4.1s ease-in-out infinite;
    will-change: transform, opacity;
    text-wrap: balance;
  }

  .footer-scrollbackdrop-mark {
    width: min(14px, 5vw);
    margin-bottom: 3px;
  }

  .footer-scrollbackdrop-logo-bottom {
    width: min(34px, 12vw);
  }

  .footer-scrollbackdrop-icon {
    height: min(14px, 5vw);
  }

  .footer-scrollbackdrop-mark-bottom {
    margin-top: 6px;
  }

  .events-showcase {
    padding: 34px 0 0;
  }

  .events-showcase-shell {
    width: calc(100% - 28px);
  }

  .events-showcase-stage {
    justify-items: center;
    align-content: center;
    min-height: 460px;
    padding: 18px;
  }

  .events-showcase-copy {
    width: min(100%, 540px);
    padding: 22px 20px;
    text-align: center;
  }

  .events-showcase-sidebar {
    gap: 14px;
    margin: 0 auto;
    padding-top: 0;
    width: min(100%, 540px);
  }

  .google-thanks-section {
    padding-top: 16px;
  }

  .google-reviews-summary {
    padding: 24px 20px 22px;
    text-align: center;
  }

  .google-reviews-summary h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .google-reviews-summary-copy {
    margin-top: 16px;
  }

  .google-reviews-score-row {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .google-reviews-score-meta {
    justify-items: center;
  }

  .google-reviews-button {
    margin-top: 22px;
  }

  .drinks-feature-body p:not(.drinks-feature-signoff) {
    padding-inline: clamp(18px, 6vw, 28px);
  }

  .gallery-section .section-heading p:not(.section-kicker) {
    padding-inline: 10px;
  }

  .section-split.alt-layout {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: center;
    width: 100%;
    min-height: 460px;
    margin: 0;
    padding: 18px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(6, 20, 30, 0.28), rgba(6, 20, 30, 0.74)),
      linear-gradient(90deg, rgba(6, 20, 30, 0.84) 0%, rgba(6, 20, 30, 0.48) 55%, rgba(6, 20, 30, 0.24) 100%),
      url("../img/bar-rutsche-wenns.jpg") center center / cover no-repeat;
  }

  .section-split.alt-layout .image-stack {
    display: none;
  }

  .section-split.alt-layout .section-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 540px);
    margin: 0 auto;
    padding: 22px 20px;
    background: rgba(6, 20, 30, 0.78);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    text-align: center;
  }

  .section-split.alt-layout .section-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .section-split.alt-layout .quote-card {
    background: rgba(239, 233, 201, 0.12);
  }

  .mobile-drinks-followup {
    display: block;
    width: 100%;
    margin: 0;
    min-height: 260px;
    overflow: hidden;
  }

  .mobile-drinks-followup img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
  }

  .upcoming-events-heading {
    padding: 20px 18px 22px;
    text-align: center;
  }

  .upcoming-event-item {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .upcoming-event-date-box {
    min-height: 112px;
    padding: 16px 10px;
  }

  .upcoming-event-item-featured .upcoming-event-date-box {
    min-height: 220px;
  }

  .upcoming-event-body {
    align-items: center;
    width: 100%;
    padding: 18px 16px;
    text-align: center;
  }

  .upcoming-event-body h3 {
    font-size: 1.5rem;
  }

  .upcoming-event-poster {
    width: 100%;
    height: 100%;
  }

  .thanks-panel {
    padding: 28px 22px 26px;
    text-align: center;
  }

  .thanks-panel p:not(.section-kicker) {
    font-size: 1.02rem;
  }

  .menu-lightbox {
    padding: 12px;
  }

  .menu-lightbox-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 14px;
  }

  .menu-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 14px;
  }

  .gallery-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }

  .image-stack {
    min-height: auto;
  }

  .stack-primary,
  .stack-secondary {
    position: static;
    width: 100%;
  }

  .stack-secondary {
    margin-top: 16px;
    aspect-ratio: 1 / 1;
  }

  .gallery-item,
  .gallery-item-large {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    width: 100%;
    min-height: 260px;
    min-width: 0;
  }

  .gallery-item-wide,
  .gallery-item-triple,
  .gallery-item-tall {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    width: 100%;
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    min-width: 0;
  }

  .gallery-item > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .gallery-item > a,
  .gallery-item img {
    -webkit-user-drag: none;
    user-select: none;
  }

  .gallery-swipe-hint {
    display: block;
    margin: 10px 0 0;
    color: rgba(239, 225, 190, 0.82);
    font-family: var(--display-font);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .thanks-section {
    padding-top: 28px;
  }

  .gallery-section {
    padding: 20px 0;
  }

  .site-footer {
    gap: 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro,
  .footer-card,
  .footer-legal,
  .legal-section,
  .legal-card,
  .legal-copy p,
  .legal-card h2,
  .section-heading,
  .section-copy {
    text-align: center;
  }

  .legal-card {
    padding: 24px 18px;
    background: rgba(10, 24, 34, 0.88);
  }

  .legal-section h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    line-height: 1;
  }

  .legal-card h2 {
    font-size: clamp(1.15rem, 5.6vw, 1.55rem);
    line-height: 1.15;
  }
}

@media (max-width: 760px) {
  .footer-social-row {
    position: static;
    justify-content: center;
  }

  .footer-social {
    -webkit-tap-highlight-color: transparent;
  }

  .footer-social:focus,
  .footer-social:focus-visible,
  .footer-social:active {
    color: var(--muted);
  }

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

  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
}
