:root {
  --bg: #1b4f6c;
  --bg-deep: #12384f;
  --panel: rgba(17, 55, 78, 0.8);
  --panel-solid: #1b4f6c;
  --paper: #edf5f9;
  --paper-strong: #f7fbfd;
  --ink: #f3f8fb;
  --muted: #c6dbe8;
  --gold: #d7bf8f;
  --gold-strong: #ecd7ad;
  --line: rgba(215, 191, 143, 0.24);
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  --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;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    linear-gradient(180deg, rgba(13, 42, 59, 0.9), rgba(10, 33, 49, 0.96)),
    linear-gradient(135deg, rgba(155, 198, 224, 0.1), transparent 42%),
    var(--bg);
  background-attachment: fixed;
}

body.nav-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.14;
  pointer-events: none;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

.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(215, 191, 143, 0.22);
  background: rgba(14, 42, 60, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: min(250px, 48vw);
  text-decoration: none;
  flex: 0 0 auto;
}

.site-brand-mark {
  width: 100%;
  flex: 0 0 auto;
}

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

.site-brand-copy {
  display: grid;
  gap: 2px;
}

.site-brand-copy strong {
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-brand-copy span {
  color: rgba(237, 245, 249, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.9rem;
  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(215, 191, 143, 0), rgba(215, 191, 143, 0.95), rgba(215, 191, 143, 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,
.site-nav a[aria-current="page"] {
  color: var(--gold-strong);
  transform: translateY(-2px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav a:hover .nav-label,
.site-nav a:focus-visible .nav-label,
.site-nav a[aria-current="page"] .nav-label {
  transform: scale(1.08);
  letter-spacing: 0.09em;
  text-shadow: 0 0 18px rgba(215, 191, 143, 0.24);
}

.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(237, 245, 249, 0.26);
  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);
}

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

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

.section {
  padding: 72px 0;
}

.section-kicker,
.card-kicker,
.footer-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;
}

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

h3 {
  margin: 0;
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.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-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(214, 229, 240, 0.18) 0%, rgba(214, 229, 240, 0.08) 18%, rgba(8, 22, 31, 0) 42%),
    linear-gradient(90deg, rgba(215, 191, 143, 0.08) 0%, rgba(215, 191, 143, 0) 14%, rgba(215, 191, 143, 0) 86%, rgba(215, 191, 143, 0.08) 100%),
    linear-gradient(90deg, rgba(10, 32, 46, 0.9) 0%, rgba(16, 56, 79, 0.74) 38%, rgba(18, 72, 101, 0.34) 68%, rgba(10, 32, 46, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 22, 31, 0.24), rgba(7, 22, 31, 0.62)),
    url("../img/hero-rutsche-hostel.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(215, 191, 143, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(247, 251, 253, 0.05),
    inset 0 0 48px rgba(0, 0, 0, 0.18);
  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%, 1280px);
  text-align: center;
}

.hero-copy-centered {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy-centered::before {
  display: none;
}

.hero-copy-centered::after {
  display: none;
}

.hero-copy-centered > * {
  position: relative;
  z-index: 1;
}

.hero-copy-centered h1 {
  font-family: "Rye", var(--display-font);
  font-size: clamp(2.15rem, 4.5vw, 4.35rem);
  letter-spacing: 0.03em;
}

.hero-home-headline {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: none;
  margin: 12px 0 18px;
  color: var(--paper);
  font-weight: 400;
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  animation: heroPulse 5.8s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, letter-spacing, text-shadow, color, opacity;
  justify-self: center;
  text-shadow:
    0 2px 0 rgba(38, 20, 6, 0.65),
    0 8px 22px rgba(0, 0, 0, 0.46),
    0 0 18px rgba(215, 191, 143, 0.12);
}

.hero-home-headline::before {
  content: "";
  position: absolute;
  inset: -8px -24px;
  border-top: 1px solid rgba(215, 191, 143, 0.42);
  border-bottom: 1px solid rgba(215, 191, 143, 0.42);
  opacity: 0.78;
}

.hero-home-headline::after {
  content: "";
  position: absolute;
  inset: -12px -28px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 45%, rgba(255, 245, 214, 0.1) 50%, rgba(255, 255, 255, 0) 55%);
  transform: translateX(-18%);
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: heroSheen 9.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.98;
    letter-spacing: 0.04em;
    transform: translateY(0) scale(1);
    text-shadow:
      0 2px 0 rgba(38, 20, 6, 0.65),
      0 8px 22px rgba(0, 0, 0, 0.46),
      0 0 18px rgba(215, 191, 143, 0.12);
  }

  50% {
    opacity: 1;
    letter-spacing: 0.042em;
    transform: translateY(-0.5px) scale(1.006);
    text-shadow:
      0 2px 0 rgba(38, 20, 6, 0.66),
      0 9px 24px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(215, 191, 143, 0.16);
  }
}

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

  18% {
    opacity: 0.06;
  }

  46% {
    transform: translateX(18%);
    opacity: 0.44;
  }

  62% {
    opacity: 0.1;
  }
}

.hero-lead,
.section-copy p,
.section-heading p,
.contact-card p,
.legal-card p,
.stay-card p,
.teaser-card p,
.fact-card p,
.form-shell p,
.cta-panel p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(243, 248, 251, 0.88);
}

.hero-copy-body {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 60ch);
  margin: 0 auto;
}

.hero-lead {
  max-width: none;
  margin: 0;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  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, color 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(215, 191, 143, 0.2);
}

.button-secondary {
  border-color: rgba(237, 245, 249, 0.22);
  background: rgba(237, 245, 249, 0.06);
  color: var(--paper-strong);
}

.highlight-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1520px);
  margin-left: auto;
  margin-right: auto;
  transform: none;
  gap: 0;
  margin-top: -62px;
  z-index: 2;
}

.highlight-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 70px minmax(3.1em, auto) auto;
  justify-items: center;
  align-content: start;
  min-height: 238px;
  padding: 26px 26px 30px;
  transform: translateY(0);
  background:
    linear-gradient(180deg, rgba(227, 235, 241, 0.6), rgba(180, 209, 227, 0.46)),
    url("../img/pergament.jpg") center center / cover no-repeat;
  color: var(--bg-deep);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    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);
  will-change: transform, box-shadow, background-size;
}

.highlight-card.reveal-item,
.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:hover,
.highlight-card:focus-within {
  transform: translateY(-12px);
  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%;
}

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

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

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

.highlight-value {
  margin: 0 0 14px;
  color: #12384f;
  font-family: var(--display-font);
  font-size: 1.54rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.highlight-card h2 {
  margin: 18px 0 0;
  color: #12384f;
  font-family: var(--display-font);
  font-size: 1.26rem;
  line-height: 1.12;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1em;
  text-align: center;
  text-transform: uppercase;
}

.highlight-card p {
  margin: 10px 0 0;
  max-width: 22ch;
  color: rgba(18, 56, 79, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.home-story-section,
.home-living-section,
.home-discovery-section,
.home-closing-section {
  padding-top: 0;
}

.home-story-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 120px;
}

.home-story-panorama,
.home-living-card,
.home-discovery-card,
.home-closing-panel {
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-story-panorama {
  position: relative;
  min-height: 720px;
  border: 0;
  box-shadow: none;
}

.home-story-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 32, 46, 0.58) 0%, rgba(10, 32, 46, 0.18) 38%, rgba(10, 32, 46, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 26, 37, 0.08), rgba(8, 26, 37, 0.48));
  pointer-events: none;
}

.home-story-panorama img,
.home-living-media img,
.home-discovery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story-card {
  position: absolute;
  z-index: 1;
  right: max(28px, calc((100vw - var(--content-width)) / 2 + 28px));
  bottom: 34px;
  width: min(100% - 52px, 560px);
  margin: 0;
  padding: 36px 38px;
  border: 1px solid rgba(215, 191, 143, 0.24);
  background:
    linear-gradient(180deg, rgba(239, 244, 247, 0.97), rgba(228, 236, 241, 0.93)),
    url("../img/pergament.jpg") center center / cover no-repeat;
  color: var(--bg-deep);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.home-story-card h2,
.home-living-copy h3,
.home-living-card-list h3,
.home-discovery-copy h3,
.home-closing-copy h2 {
  color: var(--bg-deep);
}

.home-story-card p:not(.section-kicker),
.home-living-copy p,
.home-discovery-copy p,
.home-closing-copy p,
.home-closing-badge small {
  color: rgba(18, 56, 79, 0.88);
}

.home-story-card p + p {
  margin-top: 12px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.home-living-grid,
.home-discovery-grid {
  display: grid;
  gap: 20px;
}

.home-living-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  grid-template-areas:
    "lead side"
    "lead list";
  align-items: stretch;
}

.home-living-card,
.home-discovery-card {
  display: grid;
  background: rgba(13, 42, 59, 0.76);
}

.home-living-card-large {
  grid-area: lead;
}

.home-living-grid > .home-living-card:not(.home-living-card-large):not(.home-living-card-list) {
  grid-area: side;
}

.home-living-card-list {
  grid-area: list;
}

.home-living-media {
  min-height: 300px;
}

.home-living-card-large .home-living-media {
  min-height: 620px;
}

.home-living-copy,
.home-living-card-list,
.home-discovery-copy {
  padding: 26px 26px 28px;
}

.home-living-copy {
  align-content: end;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(11, 35, 49, 0.02) 0%, rgba(11, 35, 49, 0.78) 100%);
  margin-top: -170px;
}

.home-living-card-large .home-living-copy {
  padding-top: 190px;
}

.home-living-card-list {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(239, 244, 247, 0.97), rgba(228, 236, 241, 0.93)),
    url("../img/pergament.jpg") center center / cover no-repeat;
}

.home-living-card-list .feature-list {
  margin-top: 16px;
  color: rgba(18, 56, 79, 0.88);
}

.home-discovery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-discovery-media {
  min-height: 290px;
}

.home-discovery-copy {
  align-content: start;
}

.home-discovery-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(22px, calc((100vw - var(--content-width)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--content-width)) / 2 + 22px));
  padding-bottom: 86px;
  background:
    linear-gradient(180deg, rgba(11, 38, 54, 0.96), rgba(14, 47, 67, 0.92)),
    linear-gradient(135deg, rgba(155, 198, 224, 0.08), transparent 40%);
}

.home-discovery-section .section-heading {
  margin-bottom: 28px;
}

.home-discovery-section .section-heading h2,
.home-discovery-section .section-heading p {
  color: var(--paper-strong);
}

.home-discovery-card {
  grid-template-rows: 290px auto;
  border-color: rgba(215, 191, 143, 0.16);
  background: rgba(9, 31, 45, 0.64);
}

.home-discovery-copy .section-kicker {
  color: var(--gold-strong);
}

.home-discovery-copy h3 {
  color: var(--paper-strong);
}

.home-discovery-copy p:not(.section-kicker) {
  color: rgba(237, 245, 249, 0.84);
}

.home-closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 46px 48px;
  border-width: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 215, 173, 0.36), rgba(236, 215, 173, 0) 34%),
    linear-gradient(180deg, rgba(239, 244, 247, 0.97), rgba(228, 236, 241, 0.93)),
    url("../img/pergament.jpg") center center / cover no-repeat;
}

.home-closing-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 max(22px, calc((100vw - var(--content-width)) / 2 + 22px)) 24px;
}

.home-closing-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 18px;
}

.home-closing-badge {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 220px;
  padding: 26px 24px;
  border: 1px solid rgba(18, 56, 79, 0.2);
  background: rgba(248, 250, 252, 0.68);
  color: var(--bg-deep);
  text-align: center;
}

.home-closing-badge span {
  color: var(--gold-strong);
  font-family: var(--display-font);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-closing-badge strong {
  color: var(--bg-deep);
  font-family: var(--display-font);
  font-size: 1.4rem;
  line-height: 1.08;
  text-transform: uppercase;
}

#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/rutsche-hostel-pub-wenns.jpg") right 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(1.85rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 0.94;
  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;
}

.google-review-score {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 0 0 26px;
}

.google-review-rating {
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.88;
}

.google-review-meta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  padding-bottom: 10px;
}

.google-review-stars {
  color: rgba(239, 199, 108, 0.96);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.google-review-count {
  color: rgba(247, 240, 220, 0.72);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.google-review-excerpt {
  position: relative;
  padding-left: 18px;
}

.google-review-excerpt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(239, 199, 108, 0.9);
}

@media (max-width: 680px) {
  .google-review-score {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .google-review-meta {
    padding-bottom: 0;
  }
}

.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;
}

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

.subhero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 54px max(22px, calc((100vw - var(--content-width)) / 2 + 22px)) 58px;
  background:
    linear-gradient(180deg, rgba(14, 47, 67, 0.92), rgba(11, 38, 54, 0.88)),
    linear-gradient(135deg, rgba(155, 198, 224, 0.08), transparent 40%);
}

.subhero-media,
.split-media,
.stay-card,
.teaser-card,
.fact-card,
.contact-card,
.form-shell,
.legal-card,
.footer-card,
.soft-card,
.message-box,
.table-shell {
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.2);
  border-radius: var(--radius);
  background: rgba(13, 42, 59, 0.76);
  box-shadow: var(--shadow);
}

.subhero-media img,
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero-media {
  min-height: 420px;
}

.section-copy,
.stay-card,
.teaser-card,
.contact-card,
.form-shell,
.legal-card,
.soft-card,
.message-box {
  padding: 30px 32px;
}

.split-media-tall {
  min-height: 620px;
}

.location-section,
.teaser-section,
.table-section,
.form-section,
.feature-panel-section,
.legal-page {
  padding-top: 30px;
}

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

.section-heading.narrow,
.legal-shell {
  max-width: 880px;
}

.fact-grid,
.teaser-grid,
.footer-grid,
.stack-grid,
.dual-panel-grid {
  display: grid;
  gap: 18px;
}

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

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

.fact-card,
.teaser-card,
.footer-card,
.contact-card {
  padding: 28px 24px;
}

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

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 36px;
  border: 1px solid rgba(215, 191, 143, 0.24);
  background:
    linear-gradient(180deg, rgba(19, 62, 88, 0.9), rgba(12, 42, 60, 0.92)),
    rgba(10, 24, 34, 0.76);
  box-shadow: var(--shadow);
}

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

.feature-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  font-weight: 700;
}

.price-list dd {
  margin: 0;
  color: var(--paper-strong);
  font-weight: 700;
}

.table-shell {
  overflow-x: auto;
  background:
    linear-gradient(180deg, rgba(19, 62, 88, 0.9), rgba(12, 42, 60, 0.92)),
    rgba(10, 24, 34, 0.76);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table thead th {
  color: var(--gold-strong);
  font-family: var(--display-font);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tbody th {
  color: var(--paper-strong);
}

.section-note {
  margin-top: 18px;
  color: rgba(243, 248, 251, 0.72);
}

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

.seasonal-card {
  background:
    linear-gradient(180deg, rgba(19, 62, 88, 0.9), rgba(12, 42, 60, 0.92)),
    rgba(10, 24, 34, 0.76);
}

.seasonal-card-winter {
  background:
    linear-gradient(180deg, rgba(24, 74, 103, 0.9), rgba(13, 47, 67, 0.94)),
    rgba(10, 24, 34, 0.76);
}

.feature-panel {
  max-width: 760px;
}

.feature-list-large li {
  font-size: 1.06rem;
}

.form-shell {
  max-width: 920px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

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

.form-field-wide {
  grid-column: 1 / -1;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--paper-strong);
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(237, 245, 249, 0.18);
  border-radius: 0;
  background: rgba(247, 251, 253, 0.08);
  color: var(--paper-strong);
  font-family: var(--body-font);
}

.inquiry-form textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(243, 248, 251, 0.84);
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.checkbox-error {
  display: block;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.message-success {
  background: rgba(19, 76, 58, 0.82);
}

.message-error {
  background: rgba(92, 33, 33, 0.82);
}

.legal-shell {
  display: grid;
  gap: 22px;
}

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

.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-intro p,
.footer-card p,
.footer-card a {
  margin: 0;
  color: var(--muted);
}

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

.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(215, 191, 143, 0.22);
  background: rgba(13, 42, 59, 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-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(215, 191, 143, 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);
}

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

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

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

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

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

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

  .site-nav a {
    font-size: 0.96rem;
  }

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

  .highlight-band {
    width: calc(100% + 80px);
  }

  .home-living-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "lead lead"
      "side list";
  }

  .home-living-card-large {
    grid-row: auto;
    grid-column: auto;
  }

  .home-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 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);
  }
}

@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;
  }
}

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

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

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

  .hero-copy-centered {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 1280px;
    padding: 0;
    transform: none;
  }
}

@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;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    top: 12px;
    margin-left: calc(50% - 50vw);
    padding: 12px 16px;
  }

  .hero-copy-centered {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    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: 18px;
    padding: 18px 16px;
    border: 1px solid rgba(215, 191, 143, 0.22);
    background: rgba(14, 42, 60, 0.98);
    text-align: center;
    min-width: auto;
  }

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

  .site-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

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

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

  .section-split,
  .subhero-grid,
  .fact-grid,
  .teaser-grid,
  .footer-grid,
  .stack-grid,
  .dual-panel-grid,
  .list-grid,
  .split-duo,
  .cta-panel,
  .form-grid,
  .home-living-grid,
  .home-discovery-grid,
  .home-closing-panel {
    grid-template-columns: 1fr;
  }

  #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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, calc(100% - 30px));
    margin-top: -48px;
    gap: 14px;
  }

  .subhero-media,
  .split-media-tall {
    min-height: 340px;
  }

  .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-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 .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;
  }

  .home-story-panorama {
    min-height: 500px;
  }

  .home-story-card {
    right: 18px;
    bottom: 18px;
    width: min(100% - 36px, 620px);
  }

  .home-living-card-large .home-living-media,
  .home-discovery-media {
    min-height: 280px;
  }

  .home-living-card-large .home-living-copy {
    margin-top: -120px;
    padding-top: 140px;
  }

  .home-closing-copy .hero-actions {
    justify-content: center;
  }

  .home-closing-badge {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    margin-left: calc(50% - 50vw);
    padding: 12px 16px;
  }

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

  .site-brand-copy strong {
    font-size: 0.84rem;
  }

  .site-brand-copy span {
    font-size: 0.68rem;
  }

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

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: calc(100vh - 90px);
    padding-top: 40px;
  }

  .hero-copy-centered h1,
  h1,
  .section h2,
  .legal-page h1 {
    font-size: clamp(2.05rem, 9vw, 3.5rem);
  }

  .hero-home-headline {
    width: min(100%, 12ch);
    margin: 8px 0 14px;
    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(215, 191, 143, 0.26);
    text-wrap: balance;
    white-space: normal;
  }

  .hero-home-headline::before {
    inset: -6px -12px;
  }

  .hero-home-headline::after {
    inset: -10px -16px;
  }

  .section-copy,
  .stay-card,
  .teaser-card,
  .contact-card,
  .form-shell,
  .legal-card,
  .soft-card,
  .message-box,
  .home-story-card,
  .home-living-copy,
  .home-living-card-list,
  .home-discovery-copy,
  .home-closing-panel {
    padding: 24px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .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(237, 245, 249, 0.26);
    background: #d1c4a7;
    box-shadow: none;
    transform: none;
  }

  .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);
  }

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

  .home-story-panorama {
    min-height: 320px;
  }

  .home-story-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 24px, 100%);
    margin: -48px auto 0;
  }

  .inline-actions,
  .home-closing-copy .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-living-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "side"
      "list";
  }

  .home-living-copy {
    margin-top: 0;
    background: rgba(13, 42, 59, 0.76);
  }

  .home-living-media,
  .home-living-card-large .home-living-media,
  .home-discovery-media {
    min-height: 220px;
  }

  .home-discovery-section,
  .home-closing-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 560px) {
  .highlight-band {
    grid-template-columns: 1fr;
  }
}

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

  .hero-home-headline,
  .hero-home-headline::after {
    animation: none;
  }

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