:root {
  --bg: #12384f;
  --bg-deep: #12384f;
  --panel: rgba(18, 56, 79, 0.8);
  --panel-solid: #12384f;
  --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: var(--bg-deep);
  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;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: auto;
  text-wrap: pretty;
}

.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(18, 56, 79, 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-item {
  position: relative;
}

.site-nav a,
.site-nav button {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.9rem;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.site-nav-link {
  display: inline-block;
}

.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,
.site-nav button::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"],
.site-nav button:hover,
.site-nav button:focus-visible,
.site-nav button[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,
.site-nav button:hover::after,
.site-nav button:focus-visible::after,
.site-nav button[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,
.site-nav button:hover .nav-label,
.site-nav button:focus-visible .nav-label,
.site-nav button[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-subnav {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  display: grid;
  gap: 12px;
  min-width: 320px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 191, 143, 0.22);
  background: rgba(18, 56, 79, 0.96);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.site-subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.site-subnav a {
  display: block;
  color: rgba(237, 245, 249, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  padding: 3px 0;
  text-transform: uppercase;
  white-space: normal;
}

.site-subnav a::after {
  display: none;
}

.site-subnav a:hover,
.site-subnav a:focus-visible {
  color: var(--gold-strong);
  transform: none;
}

.site-subnav a:hover .nav-label,
.site-subnav a:focus-visible .nav-label {
  transform: none;
  letter-spacing: inherit;
  text-shadow: none;
}

.site-nav-item-has-subnav:hover .site-subnav,
.site-nav-item-has-subnav:focus-within .site-subnav,
.site-nav-item-has-subnav.is-open .site-subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.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:
    linear-gradient(180deg, rgba(18, 56, 79, 0.82), rgba(18, 56, 79, 0.82)),
    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 footerHeroPulse {
  0%,
  100% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }

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

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

.hero-precheckin-note {
  display: inline-block;
  max-width: 40rem;
  margin: 6px auto 20px;
  padding: 12px 18px;
  border: 1px solid rgba(215, 191, 143, 0.52);
  background: linear-gradient(180deg, rgba(215, 191, 143, 0.22), rgba(215, 191, 143, 0.1));
  box-shadow: 0 14px 30px rgba(7, 19, 31, 0.22);
  color: rgba(255, 248, 232, 0.98);
  font-family: var(--display-font);
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  line-height: 1.55;
  text-wrap: balance;
}

.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(239, 225, 190, 0.58);
  background: rgba(239, 225, 190, 0.16);
  color: var(--paper-strong);
  box-shadow: 0 10px 24px rgba(7, 19, 31, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(239, 225, 190, 0.26);
  box-shadow: 0 14px 28px rgba(7, 19, 31, 0.22);
}

.button-precheckin {
  border-color: rgba(215, 191, 143, 0.92);
  background: linear-gradient(180deg, rgba(255, 228, 167, 0.96), rgba(215, 191, 143, 0.88));
  color: #10202e;
  box-shadow: 0 18px 34px rgba(215, 191, 143, 0.28);
}

.button-precheckin:hover,
.button-precheckin:focus-visible {
  background: linear-gradient(180deg, rgba(255, 236, 188, 1), rgba(226, 200, 141, 0.96));
  color: #10202e;
  box-shadow: 0 22px 40px rgba(215, 191, 143, 0.34);
}

@media (max-width: 760px) {
  .hero-precheckin-note {
    padding: 11px 14px;
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

.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: 0;
  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-living-section {
  padding: 58px clamp(22px, 4vw, 54px) 76px;
}

.home-living-section .section-heading p {
  margin-top: 18px;
}

.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(180deg, rgba(18, 56, 79, 0.62), rgba(18, 56, 79, 0.62));
  pointer-events: none;
}

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

.home-living-pub-image {
  object-position: 38% center;
}

.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-living-copy h3 {
  margin-bottom: 14px;
}

.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(18, 56, 79, 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-e5 {
  position: relative;
  grid-template-rows: minmax(0, 1fr);
}

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

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

.home-living-card-e5 .home-living-media {
  min-height: 100%;
}

.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-e5 .home-living-copy {
  position: relative;
  z-index: 1;
  align-content: end;
  margin-top: -100%;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(11, 35, 49, 0.06) 8%, rgba(11, 35, 49, 0.9) 100%);
}

.home-living-card-e5 .home-living-copy .section-kicker,
.home-living-card-e5 .home-living-copy h3,
.home-living-card-e5 .home-living-copy p,
.home-living-card-e5 .home-living-copy a {
  color: var(--paper-strong);
}

.home-living-e5-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(146, 118, 58, 0.3);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow: 0 10px 24px rgba(215, 191, 143, 0.2);
  color: var(--bg-deep) !important;
  font-family: var(--display-font);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-living-e5-button:hover,
.home-living-e5-button:focus-visible {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow: 0 14px 28px rgba(215, 191, 143, 0.26);
  transform: translateY(-2px);
}

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

.home-living-card-large .home-living-copy h3,
.home-living-card-large .home-living-copy p {
  color: var(--paper-strong);
}

.home-living-grid > .home-living-card:not(.home-living-card-large):not(.home-living-card-list) .home-living-copy h3,
.home-living-grid > .home-living-card:not(.home-living-card-large):not(.home-living-card-list) .home-living-copy p {
  color: var(--paper-strong);
}

.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 .section-kicker {
  color: rgba(146, 118, 58, 0.96);
}

.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(18, 56, 79, 0.94), rgba(18, 56, 79, 0.94));
}

.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(18, 56, 79, 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)) 52px;
}

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

.home-closing-copy .button-primary,
.home-closing-copy .button-secondary {
  min-width: 220px;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(18, 56, 79, 0.14);
}

.home-closing-copy .button-primary {
  color: var(--bg-deep);
  border-color: rgba(146, 118, 58, 0.3);
}

.home-closing-copy .button-secondary {
  border-color: rgba(18, 56, 79, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--bg-deep);
}

.home-closing-copy .button-secondary:hover,
.home-closing-copy .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(18, 56, 79, 0.18);
}

.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(18, 56, 79, 0.06), rgba(18, 56, 79, 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: 560px;
  padding-top: 8px;
}

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

.drinks-feature-signoff {
  margin-top: 68px;
  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: 560px;
  margin-top: 168px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(214, 174, 91, 0.22);
  background: rgba(18, 56, 79, 0.84);
  backdrop-filter: blur(14px);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

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

.drinks-feature-card h3 {
  margin: 0 0 16px;
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

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

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

.review-source-card {
  display: grid;
  gap: 8px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(214, 174, 91, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.review-source-label {
  color: rgba(239, 199, 108, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-source-rating {
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 0.9;
}

.review-source-meta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px;
}

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

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

.review-source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-source-button {
  min-width: 0;
  padding-inline: 20px;
  border-color: rgba(239, 225, 190, 0.44);
  color: var(--paper-strong);
}

@media (max-width: 680px) {
  .review-source-grid {
    grid-template-columns: 1fr;
  }

  .review-source-actions .button {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .stay-room-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stay-room-showcase-text {
    max-width: 62ch;
  }
}

@media (max-width: 760px) {
  .page-home .highlight-band .highlight-card {
    pointer-events: none;
    cursor: default;
  }

  .page-stay-23 .section,
  .page-stay-16 .section,
  .page-stay-rooms .section,
  .page-stay-apartment .section {
    padding: 1px 0;
  }

  .stay-room-showcase {
    padding: 46px 16px 54px;
  }

  .home-living-section {
    padding: 46px 16px 54px;
  }

  .stay-room-showcase-intro h2 {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .stay-room-pair,
  .stay-room-pair.stay-room-pair-reverse {
    padding-bottom: 0;
  }

  .stay-room-pair-media {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 240px;
  }

  .stay-room-pair-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: auto;
    min-height: 0;
    margin: -30px 18px 0;
    padding: 24px 20px 22px;
  }

  .stay-room-showcase .stay-room-pair-copy::after {
    display: none;
  }

  .stay-room-pair-copy h3,
  .stay-room-pair-copy p,
  .stay-room-pair-copy .text-link {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .page-stay-23 .stay-feature-strip,
  .page-stay-16 .stay-feature-strip,
  .page-stay-rooms .stay-feature-strip,
  .page-stay-apartment .stay-feature-strip {
    margin: 0 18px 0;
  }
}

@media (min-width: 760px) and (max-width: 1240px) {
  .stay-23-page .stay-price-card-row > div:first-child,
  .page-stay-prices .stay-price-card-row > div:first-child {
    justify-content: center;
    text-align: center;
  }

  .stay-23-page .stay-price-variant,
  .page-stay-prices .stay-price-variant {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

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

.stay-room-showcase {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 58px clamp(22px, 4vw, 54px) 76px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
}

.stay-room-showcase-intro {
  width: min(100%, 980px);
  margin: 0 auto 40px;
  text-align: center;
}

.stay-room-showcase-intro .section-kicker {
  margin-bottom: 10px;
  color: rgba(170, 146, 78, 0.95);
}

.stay-room-showcase-intro h2 {
  margin: 0;
  color: var(--bg-deep);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: none;
}

.stay-room-showcase-text {
  max-width: none;
  margin: 18px auto 0;
  color: rgba(35, 49, 74, 0.84);
  font-size: 1.06rem;
  line-height: 1.82;
}

.stay-room-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.stay-room-pair {
  position: relative;
  min-height: 430px;
  padding-bottom: 20px;
}

.stay-room-pair-media {
  position: absolute;
  top: 0;
  left: 0;
  width: min(68%, 430px);
  height: 100%;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px rgba(7, 17, 25, 0.14);
}

.stay-room-pair-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-room-pair-copy {
  position: absolute;
  right: 12px;
  top: 50%;
  width: min(48%, 310px);
  min-height: 300px;
  padding: 34px 28px 26px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
  border: 10px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px rgba(7, 17, 25, 0.14);
}

.stay-room-pair.stay-room-pair-reverse .stay-room-pair-media {
  left: auto;
  right: 0;
}

.stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
  right: auto;
  left: 12px;
}

.stay-room-pair-copy h3 {
  margin: 0 0 20px;
  align-self: flex-start;
  padding: 16px 18px 14px;
  color: #25344a;
  font-size: clamp(1.05rem, 1.3vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 10px 20px rgba(16, 32, 46, 0.08);
  text-transform: uppercase;
}

.stay-room-pair-copy p {
  margin: 0;
  padding: 18px 18px 0;
  color: rgba(43, 56, 76, 0.88);
  font-size: 0.95rem;
  line-height: 1.66;
  background: rgba(255, 252, 247, 0.9);
}

.stay-room-pair-copy .text-link {
  margin-top: auto;
  padding: 0 18px 18px;
  color: #9f7b34;
  font-size: 0.94rem;
  background: rgba(255, 252, 247, 0.9);
}

.stay-room-pair:hover,
.stay-room-pair:focus-within {
  transform: translateY(-6px);
}

.stay-room-pair,
.stay-room-pair-copy,
.stay-room-pair-media {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stay-room-pair:hover .stay-room-pair-media,
.stay-room-pair:focus-within .stay-room-pair-media {
  box-shadow: 0 28px 60px rgba(7, 17, 25, 0.18);
}

.stay-room-pair:hover .stay-room-pair-copy,
.stay-room-pair:focus-within .stay-room-pair-copy {
  box-shadow:
    0 24px 50px rgba(7, 17, 25, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stay-room-pair:hover img,
.stay-room-pair:focus-within img {
  transform: scale(1.03);
}

.stay-room-pair img {
  transition: transform 220ms ease;
}

.stay-room-pair-copy,
.stay-room-pair-copy p,
.stay-room-pair-copy h3,
.stay-room-pair-copy .text-link {
  position: relative;
  z-index: 1;
}

.stay-room-pair-copy .text-link {
  display: inline-block;
}

.stay-room-pair-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stay-room-showcase-note {
  width: min(100%, 780px);
  margin: 14px auto 0;
  color: rgba(35, 49, 74, 0.7);
  text-align: center;
}

.stay-room-showcase .text-link {
  color: var(--bg-deep);
}

.stay-room-showcase .text-link:hover,
.stay-room-showcase .text-link:focus-visible {
  color: var(--gold-strong);
}

.stay-room-showcase .section-kicker,
.stay-room-showcase .card-kicker {
  color: rgba(170, 146, 78, 0.95);
}

.stay-room-showcase p {
  color: rgba(35, 49, 74, 0.84);
}

.stay-room-showcase .section-kicker {
  font-family: var(--display-font);
}

.stay-room-showcase .card-kicker {
  margin: 0 0 10px;
}

.stay-room-showcase-grid .text-link {
  font-size: 1rem;
}

.stay-room-showcase .stay-room-pair-copy {
  border: 1px solid rgba(215, 191, 143, 0.22);
}

.stay-room-showcase .stay-room-pair-copy::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 34px;
  bottom: 34px;
  top: 130px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(7, 17, 25, 0.05);
  pointer-events: none;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  align-self: flex-start;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link::after {
  content: " \2192";
  color: rgba(170, 146, 78, 0.95);
  margin-left: 6px;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link:hover::after,
.stay-room-showcase-grid .stay-room-pair-copy .text-link:focus-visible::after {
  color: var(--gold-strong);
}

.stay-room-showcase-grid .stay-room-pair-copy {
  overflow: hidden;
}

.stay-room-showcase-grid .stay-room-pair {
  overflow: visible;
}

.stay-room-showcase-grid .stay-room-pair-media,
.stay-room-showcase-grid .stay-room-pair-copy {
  border-radius: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy h3 {
  text-transform: none;
}

.stay-room-showcase-grid .stay-room-pair-copy p {
  color: rgba(35, 49, 74, 0.82);
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  text-underline-offset: 0.18em;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  text-decoration-thickness: 1px;
}

.stay-room-showcase-grid .stay-room-pair-copy p:last-of-type {
  margin-bottom: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  backdrop-filter: blur(0);
}

.stay-room-showcase-grid .stay-room-pair-copy {
  overflow: visible;
}

.stay-room-showcase-grid .stay-room-pair-copy h3,
.stay-room-showcase-grid .stay-room-pair-copy p,
.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  max-width: 100%;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  justify-content: flex-start;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  margin-top: auto;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  height: auto;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  min-width: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  box-sizing: border-box;
}

.stay-room-showcase-grid .stay-room-pair-media {
  box-sizing: border-box;
}

.stay-room-showcase-grid .stay-room-pair {
  box-sizing: border-box;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  word-break: normal;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  overflow-wrap: anywhere;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  isolation: isolate;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  max-width: 100%;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  align-self: center;
}

.stay-room-showcase-grid .stay-room-pair-copy {
  justify-self: end;
}

.stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
  justify-self: start;
}

/* Finaler Referenz-Override fuer die vier Zimmerkarten */
.stay-room-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 96px;
  row-gap: 80px;
  align-items: start;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}

.stay-room-showcase-grid .stay-room-pair {
  --stay-room-card-height: 320px;
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 680px;
  width: 100%;
  height: var(--stay-room-card-height);
  min-height: var(--stay-room-card-height);
  margin: 0 auto;
  padding-bottom: 0;
  overflow: visible;
  justify-self: center;
  box-sizing: border-box;
}

.stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse {
  flex-direction: row-reverse;
}

.stay-room-showcase-grid .stay-room-pair-media {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  flex: 0 0 380px;
  width: 380px;
  min-width: 380px;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  box-shadow: 0 26px 54px rgba(7, 17, 25, 0.14);
}

.stay-room-showcase-grid .stay-room-pair-copy {
  --stay-room-cta-band-height: 56px;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 340px;
  min-width: 340px;
  height: 100%;
  min-height: 100%;
  flex: 0 0 340px;
  margin-left: -55px;
  padding: 34px 36px 12px;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
  border: 0;
  box-shadow:
    0 16px 34px rgba(16, 32, 46, 0.12),
    0 0 0 1px rgba(27, 41, 60, 0.1);
  overflow: visible;
  isolation: auto;
  z-index: 2;
  box-sizing: border-box;
  min-width: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy::before {
  display: none;
}

.stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
  margin-left: 0;
  margin-right: -55px;
}

.stay-room-showcase .stay-room-pair-copy::after {
  display: none;
}

.stay-room-showcase-grid .stay-room-pair-title {
  position: static;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  min-width: 0;
}

.stay-room-pair-icon {
  width: 26px;
  height: 26px;
  display: block;
  filter: none;
}

.stay-room-showcase-grid .stay-room-pair-copy h3 {
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: #25344a;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 1.75vw, 1.9rem);
  line-height: 1.02;
  text-transform: uppercase;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.stay-room-showcase-grid .stay-room-pair-detail {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy p {
  margin: 0;
  padding: 0;
  background: transparent;
  color: rgba(43, 56, 76, 0.88);
  font-size: 0.96rem;
  line-height: 1.45;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
  max-width: 100%;
  min-width: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  align-self: flex-start;
  width: 100%;
  max-width: 190px;
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  min-height: 0;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #20334a;
  font-family: var(--display-font);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.18s ease,
    transform 0.18s ease,
    letter-spacing 0.18s ease,
    text-shadow 0.18s ease;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #d6bd73;
  transform-origin: left center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link::after {
  content: "\2192";
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link:hover,
.stay-room-showcase-grid .stay-room-pair-copy .text-link:focus-visible {
  color: #13263d;
  transform: none;
  letter-spacing: 0.04em;
  text-shadow: none;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link:hover::before,
.stay-room-showcase-grid .stay-room-pair-copy .text-link:focus-visible::before {
  transform: scaleX(1.08);
  background: #b99743;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link:hover::after,
.stay-room-showcase-grid .stay-room-pair-copy .text-link:focus-visible::after {
  color: #13263d;
  transform: translate(4px, -1px);
}

.stay-room-showcase-grid .stay-room-pair-copy,
.stay-room-showcase-grid .stay-room-pair-copy *,
.stay-room-showcase-grid .stay-room-pair-copy h3,
.stay-room-showcase-grid .stay-room-pair-copy p,
.stay-room-showcase-grid .stay-room-pair-copy a {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* Finale Strukturkorrektur fuer die vier Unterkunftskarten */
.stay-room-showcase-grid .stay-room-pair-copy {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}

.stay-room-showcase-grid .stay-room-pair-title {
  min-height: 0;
}

.stay-room-showcase-grid .stay-room-pair-detail {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.stay-room-showcase-grid .stay-room-pair-copy .text-link {
  display: block;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  align-self: stretch;
  width: 100%;
  max-width: none;
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 18px 0 0;
  color: #20334a;
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #c9ad61;
  opacity: 0.85;
  transform: none;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link::after {
  content: none;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link span:first-child {
  text-decoration: none !important;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 1px solid rgba(201, 173, 97, 0.95);
  border-radius: 50%;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link:hover,
.stay-room-showcase-grid .stay-room-pair-copy .card-more-link:focus-visible {
  color: #13263d;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link:hover::before,
.stay-room-showcase-grid .stay-room-pair-copy .card-more-link:focus-visible::before {
  background: #b8943f;
  opacity: 1;
}

.stay-room-showcase-grid .stay-room-pair-copy .card-more-link:hover span:last-child,
.stay-room-showcase-grid .stay-room-pair-copy .card-more-link:focus-visible span:last-child {
  border-color: #b8943f;
  background: rgba(201, 173, 97, 0.08);
  transform: translate(4px, -1px);
}

@media (min-width: 1280px) and (max-width: 1570px) {
  .stay-room-showcase-grid {
    column-gap: 72px;
    row-gap: 64px;
    padding: 0 40px;
  }

  .stay-room-showcase-grid .stay-room-pair {
    --stay-room-card-height: 290px;
    max-width: 600px;
  }

  .stay-room-showcase-grid .stay-room-pair-media {
    flex: 0 0 332px;
    width: 332px;
    min-width: 332px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy {
    width: 288px;
    min-width: 288px;
    flex: 0 0 288px;
    --stay-room-cta-band-height: 78px;
    margin-left: -20px;
    padding: 28px 28px 10px;
  }

  .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
    margin-right: -20px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.3rem, 1.45vw, 1.62rem);
  }

  .stay-room-showcase-grid .stay-room-pair-copy p {
    font-size: 0.9rem;
    line-height: 1.38;
  }
}

@media (max-width: 1460px) {
  .stay-room-showcase-grid {
    column-gap: 72px;
    row-gap: 64px;
    padding: 0 40px;
  }

  .stay-room-showcase-grid .stay-room-pair {
    --stay-room-card-height: 290px;
    max-width: 600px;
  }

  .stay-room-showcase-grid .stay-room-pair-media {
    flex: 0 0 332px;
    width: 332px;
    min-width: 332px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy {
    width: 288px;
    min-width: 288px;
    flex: 0 0 288px;
    --stay-room-cta-band-height: 78px;
    margin-left: -20px;
    padding: 28px 28px 10px;
  }

  .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
    margin-right: -20px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.38rem, 1.65vw, 1.78rem);
  }
}

@media (min-width: 1180px) and (max-width: 1460px) {
  .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.22rem, 1.42vw, 1.56rem);
  }
}

@media (min-width: 1280px) and (max-width: 1380px) {
  .stay-room-showcase-grid {
    column-gap: 18px;
    row-gap: 52px;
    padding: 0 18px;
  }

  .stay-room-showcase-grid .stay-room-pair {
    --stay-room-card-height: 248px;
    max-width: 536px;
  }

  .stay-room-showcase-grid .stay-room-pair-media {
    flex: 0 0 292px;
    width: 292px;
    min-width: 292px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy {
    width: 260px;
    min-width: 260px;
    flex: 0 0 260px;
    --stay-room-cta-band-height: 68px;
    margin-left: -16px;
    padding: 20px 20px 8px;
  }

  .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
    margin-right: -16px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.5rem);
  }

  .stay-room-showcase-grid .stay-room-pair-copy p {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

@media (min-width: 1180px) and (max-width: 1279px) {
  .stay-room-showcase-grid {
    column-gap: 18px;
    padding: 0 18px;
  }

  .stay-room-showcase-grid .stay-room-pair {
    max-width: 536px;
  }

  .stay-room-showcase-grid .stay-room-pair-media {
    flex: 0 0 292px;
    width: 292px;
    min-width: 292px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy {
    width: 260px;
    min-width: 260px;
    flex: 0 0 260px;
  }
}

@media (max-width: 1280px) {
  .stay-room-showcase-grid {
    column-gap: 44px;
    row-gap: 52px;
    padding: 0 24px;
  }

  .stay-room-showcase-grid .stay-room-pair {
    --stay-room-card-height: 248px;
    max-width: 508px;
  }

  .stay-room-showcase-grid .stay-room-pair-media {
    flex: 0 0 276px;
    width: 276px;
    min-width: 276px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy {
    width: 248px;
    min-width: 248px;
    flex: 0 0 248px;
    --stay-room-cta-band-height: 68px;
    margin-left: -16px;
    padding: 20px 20px 8px;
  }

  .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
    margin-right: -16px;
  }

  .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.5rem);
  }

  .stay-room-showcase-grid .stay-room-pair-copy p {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

@media (max-width: 1180px) {
  .stay-room-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .stay-room-showcase-grid .stay-room-pair,
  .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    min-height: 0;
    width: 100%;
    max-width: 760px;
    gap: 12px;
  }

  .stay-room-showcase-grid .stay-room-pair-media {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 760px;
    min-width: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    flex: none;
  }

  .stay-room-showcase-grid .stay-room-pair-copy,
  .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 760px;
    min-width: 0;
    --stay-room-cta-band-height: 0px;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    flex: none;
    margin: 0;
    padding: 20px 20px 18px;
    transform: none;
    box-shadow:
      0 16px 34px rgba(7, 17, 25, 0.1),
      0 0 0 1px rgba(232, 222, 198, 0.5);
  }

  .stay-room-showcase-grid .stay-room-pair-title {
    gap: 10px;
    min-height: 0;
  }

  .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.5rem, 4.2vw, 2rem);
    line-height: 1.04;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .stay-room-showcase-grid .stay-room-pair-copy p {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .stay-room-showcase-grid .stay-room-pair-copy .text-link {
    font-size: 0.92rem;
  }
}

@media (min-width: 1180px) and (max-width: 1380px) {
  .page-home .stay-room-showcase-grid {
    width: min(100%, 1420px);
    padding: 0 16px;
    column-gap: 12px;
    row-gap: 64px;
  }

  .page-home .stay-room-showcase-grid .stay-room-pair {
    --stay-room-card-height: 392px;
    max-width: 536px;
  }

  .page-home .stay-room-showcase-grid .stay-room-pair-media {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
  }

  .page-home .stay-room-showcase-grid .stay-room-pair-copy {
    width: 270px;
    min-width: 270px;
    flex: 0 0 270px;
    --stay-room-cta-band-height: 84px;
    margin-left: -14px;
    padding: 26px 22px 16px;
  }

  .page-home .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse .stay-room-pair-copy {
    margin-right: -14px;
  }

  .page-home .stay-room-showcase-grid .stay-room-pair-copy h3 {
    font-size: clamp(1.24rem, 1.38vw, 1.56rem);
  }

  .page-home .stay-room-showcase-grid .stay-room-pair-copy p {
    font-size: 0.89rem;
    line-height: 1.38;
  }
}

.stay-residence-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.22);
  background: rgba(18, 56, 79, 0.68);
  box-shadow: 0 24px 54px rgba(7, 17, 25, 0.18);
}

.stay-residence-spotlight-media {
  margin: 0;
  min-height: 520px;
}

.stay-residence-spotlight-media img,
.stay-residence-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-residence-spotlight-copy,
.stay-residence-tile-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 34px 32px 30px;
  background:
    linear-gradient(180deg, rgba(246, 239, 226, 0.98), rgba(238, 230, 214, 0.96)),
    url("../img/pergament.jpg") center center / cover no-repeat;
}

.stay-residence-spotlight-copy h3,
.stay-residence-tile-copy h3 {
  margin: 0;
  color: var(--bg-deep);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.stay-residence-spotlight-copy p:not(.card-kicker),
.stay-residence-tile-copy p {
  margin: 0;
  color: rgba(35, 49, 74, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

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

.stay-residence-tile {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.22);
  background: rgba(18, 56, 79, 0.66);
  box-shadow: 0 18px 42px rgba(7, 17, 25, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stay-residence-tile:hover,
.stay-residence-tile:focus-within,
.stay-residence-spotlight:hover,
.stay-residence-spotlight:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(7, 17, 25, 0.2);
}

.stay-residence-tile-media {
  margin: 0;
  min-height: 270px;
}

.stay-residence-tile-copy {
  min-height: 250px;
  padding-top: 28px;
}

.stay-residence-spotlight-copy .text-link,
.stay-residence-tile-copy .text-link {
  margin-top: auto;
  color: var(--bg-deep);
}

.drinks-scrollbackdrop {
  position: relative;
  width: 100vw;
  min-height: min(40vw, 460px);
  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/rutsche-terrasse-banner.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/hero-rutsche-hostel-wenns.jpg?v=20260717-footer7") 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: 0;
  background: rgba(221, 208, 177, 0.96);
  color: #102a38;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-scrollbackdrop-panel:hover,
.footer-scrollbackdrop-panel:focus-visible {
  transform: translateY(-3px);
  background: rgba(228, 216, 189, 0.98);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.26);
}

.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%, 12ch);
  margin-inline: auto;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem) !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-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 0 20px;
  border: 1px solid rgba(16, 42, 56, 0.52);
  color: #102a38;
  font-family: var(--display-font);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes footerMugBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-8px);
  }

  55% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-4px);
  }
}

.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(18, 56, 79, 0.9), rgba(18, 56, 79, 0.9));
}

.subhero-stay-detail {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 22px max(22px, calc((100vw - var(--content-width)) / 2 + 22px)) 12px;
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(238, 234, 226, 0.98)),
    #f5f1ea;
}

.subhero-stay-detail-grid {
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.subhero-stay-detail-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.subhero-stay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(34px, 5vw, 60px);
  color: #2b2826;
  text-align: left;
}

.subhero-stay-eyebrow {
  margin: 0;
  color: rgba(43, 40, 38, 0.62);
  font-family: var(--display-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.subhero-stay-title {
  max-width: none;
  color: #252321;
  font-family: var(--display-font);
  font-size: clamp(2.35rem, 4.2vw, 4.3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: normal;
}

.subhero-stay-title-line {
  display: block;
  white-space: nowrap;
}

.subhero-stay-lead,
.subhero-stay-text {
  max-width: 58ch;
  margin: 0;
  color: rgba(43, 40, 38, 0.82);
  text-align: left;
}

.subhero-stay-lead {
  font-size: 1.02rem;
  line-height: 1.55;
}

.subhero-stay-text {
  font-size: 0.98rem;
  line-height: 1.65;
}

.subhero-stay-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 0;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: var(--bg-deep);
  font-family: var(--body-font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(215, 191, 143, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.subhero-stay-pill:hover,
.subhero-stay-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(215, 191, 143, 0.24);
}

.subhero-stay-media {
  min-height: clamp(320px, 38vw, 430px);
  border: 0;
  border-radius: 0;
  background: #f2eee7;
  box-shadow: none;
}

.subhero-stay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.subhero-stay-detail-hostel-bg {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  background: url("../img/hostel-hero.jpg") center center / cover no-repeat;
}

.subhero-stay-detail-hostel-bg::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(100%, 920px);
  background: rgba(18, 56, 79, 0.54);
  pointer-events: none;
  z-index: 0;
}

.subhero-stay-detail-hostel-bg .subhero-stay-detail-grid {
  position: relative;
  z-index: 1;
}

.subhero-stay-detail-hostel-bg .subhero-stay-copy {
  min-height: 560px;
  width: min(100%, 880px);
  max-width: 880px;
  margin-right: auto;
  margin-left: 0;
  padding: clamp(28px, 4vw, 46px);
  background: none;
  box-shadow: none;
  color: var(--paper-strong);
}

.subhero-stay-detail-hostel-bg .subhero-stay-eyebrow {
  color: rgba(247, 251, 253, 0.78);
}

.subhero-stay-detail-hostel-bg .subhero-stay-title,
.subhero-stay-detail-hostel-bg .subhero-stay-lead,
.subhero-stay-detail-hostel-bg .subhero-stay-text {
  color: var(--paper-strong);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.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(18, 56, 79, 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;
}

.stay-subnav-section {
  padding-top: 22px;
  padding-bottom: 22px;
}

.stay-subnav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.stay-subnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(215, 191, 143, 0.24);
  background: rgba(18, 56, 79, 0.6);
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.stay-subnav a:hover,
.stay-subnav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 191, 143, 0.46);
  background: rgba(18, 56, 79, 0.86);
  color: var(--gold-strong);
}

.stay-subnav a[aria-current="page"] {
  border-color: rgba(215, 191, 143, 0.46);
  background: rgba(18, 56, 79, 0.86);
  color: var(--gold-strong);
}

@media (hover: none) and (pointer: coarse) {
  .stay-subnav a:not([aria-current="page"]):hover,
  .stay-subnav a:not([aria-current="page"]):focus-visible,
  .stay-subnav a:not([aria-current="page"]):active {
    transform: none;
    border-color: rgba(215, 191, 143, 0.24);
    background: rgba(18, 56, 79, 0.6);
    color: var(--paper-strong);
  }
}

.anchor-target,
.stay-card[id],
.price-table tr[id],
.table-shell[id] {
  scroll-margin-top: 120px;
}

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

.stay-detail-story-grid,
.stay-detail-feature-grid,
.stay-gallery-grid {
  display: grid;
  gap: 18px;
}

.stay-story-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
}

.stay-story-section .section-heading {
  padding: 0 clamp(22px, 3vw, 32px);
}

.stay-story-section .section-heading h2 {
  color: #25344a;
}

.stay-story-section .section-heading .section-kicker {
  color: rgba(170, 146, 78, 0.95);
}

.stay-story-section .section-heading p:not(.section-kicker) {
  color: rgba(43, 56, 76, 0.84);
}

.stay-story-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 26px clamp(130px, 3vw, 50px) 0;
}

.stay-story-band {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(201, 183, 143, 0.34);
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98)),
    #f6f0e7;
  border-radius: 0;
  box-shadow: 0 24px 52px rgba(16, 32, 46, 0.12);
}

.stay-story-band-copy {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  gap: 12px;
  padding: 18px 20px 22px;
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98)),
    #f6f0e7;
}

.stay-story-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 242px);
  gap: 0;
  border: 1px solid rgba(201, 183, 143, 0.22);
  background: rgba(255, 252, 247, 0.9);
}

.stay-story-fact-tile {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 24px 20px 44px;
  border-right: 1px solid rgba(201, 183, 143, 0.22);
  border-bottom: 1px solid rgba(201, 183, 143, 0.22);
  text-align: center;
}

.stay-story-fact-tile:nth-child(2n) {
  border-right: 0;
}

.stay-story-fact-tile:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stay-story-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #25344a;
  border: 2px solid rgba(37, 52, 74, 0.72);
}

.stay-story-fact-icon img,
.stay-story-fact-icon svg {
  width: 30px;
  height: 30px;
}

.stay-story-fact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stay-story-fact-tile h3 {
  color: #25344a;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.stay-story-fact-tile p {
  margin: 0;
  color: rgba(43, 56, 76, 0.88);
  line-height: 1.58;
}

.stay-story-band-copy .card-kicker {
  margin: 0 0 14px;
  color: rgba(148, 129, 84, 0.95);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-story-band-copy h2 {
  color: #25344a;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
  min-height: 2.2em;
  text-transform: none;
}

.stay-story-band-copy p:not(.card-kicker) {
  color: rgba(43, 56, 76, 0.88);
  line-height: 1.62;
}

.stay-story-band-media {
  height: 330px;
  min-height: 190px;
}

.stay-story-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-story-plan {
  margin: 18px 0 0;
  border: 1px solid rgba(201, 183, 143, 0.22);
  background: rgba(255, 252, 247, 0.9);
}

.stay-story-plan a {
  display: block;
  cursor: zoom-in;
}

.stay-story-plan img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 39, 0.88);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1280px);
  max-height: 92vh;
  padding: 18px;
  background: rgba(248, 244, 236, 0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.image-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 36px);
  width: auto;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
}

.image-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 52, 74, 0.18);
  background: rgba(248, 244, 236, 0.96);
  color: #25344a;
  font-family: var(--display-font);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: #fff;
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(37, 52, 74, 0.18);
  background: rgba(248, 244, 236, 0.96);
  color: #25344a;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

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

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

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  background: #fff;
}

.stay-detail-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.stay-gallery-section .section-heading {
  margin-bottom: 60px;
}

.stay-showcase-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "media copy"
    "facts facts";
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 41, 60, 0.08);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(249, 246, 240, 0.98), rgba(244, 238, 229, 0.98)),
    #f5efe5;
  box-shadow: 0 24px 52px rgba(16, 32, 46, 0.12);
}

.stay-showcase-media {
  grid-area: media;
  min-height: 360px;
  border-right: 1px solid rgba(27, 41, 60, 0.08);
}

.stay-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-showcase-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
}

.stay-showcase-copy .section-kicker,
.stay-feature-stage .section-kicker {
  margin-bottom: 6px;
  color: rgba(148, 129, 84, 0.95);
  letter-spacing: 0.1em;
}

.stay-showcase-copy h2,
.stay-feature-stage-intro h2 {
  color: #25344a;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.02;
  text-transform: none;
}

.stay-showcase-copy p:not(.section-kicker),
.stay-feature-stage-intro p:not(.section-kicker):not(.stay-feature-badge),
.stay-feature-tile li {
  color: rgba(43, 56, 76, 0.88);
  line-height: 1.72;
}

.stay-showcase-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(27, 41, 60, 0.08);
}

.stay-showcase-fact {
  padding: 22px 22px 24px;
  border-right: 1px solid rgba(27, 41, 60, 0.08);
  background: rgba(255, 252, 247, 0.58);
}

.stay-showcase-fact:last-child {
  border-right: 0;
}

.stay-showcase-fact-value {
  margin: 0 0 8px;
  color: #25344a;
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stay-showcase-fact p:last-child {
  margin: 0;
  color: rgba(43, 56, 76, 0.84);
  line-height: 1.6;
}

.stay-feature-stage {
  overflow: hidden;
  border: 1px solid rgba(27, 41, 60, 0.08);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.98), rgba(244, 239, 230, 0.98)),
    #f6f0e7;
  box-shadow: 0 24px 52px rgba(16, 32, 46, 0.1);
}

.stay-feature-stage-intro {
  max-width: none;
  margin: 0;
  padding: 34px clamp(24px, 4vw, 44px) 28px;
  text-align: left;
}

.stay-detail-feature-grid-editorial {
  gap: 0;
  border-top: 1px solid rgba(27, 41, 60, 0.08);
}

.stay-feature-tile {
  padding: 26px 24px 30px;
  border-right: 1px solid rgba(27, 41, 60, 0.08);
  background: rgba(255, 252, 247, 0.52);
}

.stay-feature-tile:last-child {
  border-right: 0;
}

.stay-feature-tile h3 {
  color: #25344a;
  font-size: 1.3rem;
  text-transform: none;
}

.stay-feature-tile .feature-list {
  gap: 12px;
  padding-left: 18px;
}

.stay-feature-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --stay-stage-edge: clamp(130px, 3vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(201, 183, 143, 0.34);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
  box-shadow: 0 24px 52px rgba(16, 32, 46, 0.12);
}

.stay-feature-section {
  padding-top: 0;
  padding-bottom: 0;
}

.stay-price-section {
  padding-top: 0;
  padding-bottom: 0;
}

.stay-price-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --stay-price-edge: clamp(130px, 3vw, 50px);
  padding: 0 0 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
}

.stay-price-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 22%, rgba(18, 56, 79, 0.05), transparent 18%),
    radial-gradient(circle at 88% 88%, rgba(148, 129, 84, 0.08), transparent 16%);
  pointer-events: none;
}

.stay-price-hero,
.stay-price-card,
.stay-price-notes {
  position: relative;
  z-index: 1;
}

.stay-price-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 0;
  padding-inline: var(--stay-price-edge);
  margin-bottom: 0;
}

.stay-price-intro {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 78px 0 60px;
  text-align: center;
}

.stay-price-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(148, 129, 84, 0.98);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-price-kicker::before,
.stay-price-kicker::after {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(148, 129, 84, 0.5);
}

.stay-price-kicker img {
  width: 22px;
  height: 22px;
}

.stay-price-intro h2 {
  max-width: 8.4ch;
  margin: 0;
  color: #25344a;
  font-size: clamp(4rem, 8.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.stay-price-intro h2 {
  margin-bottom: 18px;
}

.stay-price-hero-media {
  position: relative;
  overflow: hidden;
}

.stay-price-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 14%;
  background: linear-gradient(90deg, rgba(250, 247, 241, 0.98), rgba(250, 247, 241, 0));
  pointer-events: none;
}

.stay-price-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.stay-price-card {
  margin: -36px var(--stay-price-edge) 0;
  border: 1px solid rgba(37, 52, 74, 0.18);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 16px 40px rgba(16, 32, 46, 0.12);
  overflow: hidden;
}

.stay-price-card-head,
.stay-price-card-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(5, minmax(120px, 1fr));
}

.stay-price-card-head {
  background: rgba(18, 56, 79, 0.96);
}

.stay-price-card-head > div {
  padding: 28px 22px;
  border-right: 1px solid rgba(215, 191, 143, 0.2);
  color: var(--gold-strong);
  font-family: var(--display-font);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stay-price-card-head > div:last-child {
  border-right: 0;
}

.stay-price-card-row {
  align-items: center;
}

.stay-price-card-row > div {
  min-height: 140px;
  padding: 26px 22px;
  border-right: 1px solid rgba(201, 183, 143, 0.2);
  color: #25344a;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stay-price-card-row > div:last-child {
  border-right: 0;
}

.stay-price-variant {
  justify-content: flex-start;
  text-align: left;
  gap: 20px;
}

.stay-price-variant-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(18, 56, 79, 0.18);
  background: rgba(18, 56, 79, 0.96);
}

.stay-price-variant-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.stay-price-notes {
  display: grid;
  gap: 16px;
  margin: 26px var(--stay-price-edge) 0;
}

.stay-price-stage .stay-cta-stage {
  width: auto;
  margin: 30px var(--stay-price-edge) 0;
  padding: 42px clamp(34px, 4vw, 48px);
}

.stay-price-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  margin: 0;
  color: rgba(43, 56, 76, 0.9);
  font-size: 1rem;
  line-height: 1.75;
}

.stay-price-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(18, 56, 79, 0.2);
  background: rgba(255, 252, 247, 0.85);
}

.stay-price-note-icon img {
  width: 18px;
  height: 18px;
}

.stay-23-page .section-heading h2,
.stay-23-page .stay-feature-stage-intro h2,
.stay-23-page .stay-price-intro h2,
.stay-23-page .stay-cta-copy h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  line-height: 1;
}

.stay-23-page .stay-price-intro h2 {
  max-width: none;
  letter-spacing: 0;
}

.stay-23-page .stay-story-band-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.stay-23-page .section-kicker,
.stay-23-page .card-kicker,
.stay-23-page .subhero-stay-eyebrow,
.stay-23-page .stay-feature-badge,
.stay-23-page .stay-cta-kicker {
  color: rgba(170, 146, 78, 0.95);
}

.stay-23-page .subhero-stay-title {
  position: relative;
  display: inline-block;
  transform-origin: left center;
}

.stay-23-page .subhero-stay-title::after {
  content: "";
  position: absolute;
  inset: -10px -18px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 45%, rgba(255, 245, 214, 0.08) 50%, rgba(255, 255, 255, 0) 55%);
  transform: translateX(-18%);
  mix-blend-mode: screen;
  opacity: 0.36;
  pointer-events: none;
}

.stay-23-page .subhero-stay-eyebrow,
.stay-23-page .subhero-stay-pill,
.stay-23-page .stay-feature-floating-note {
  animation: none;
}

.stay-23-page .subhero-stay-detail-hostel-bg .subhero-stay-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border: 1px solid rgba(170, 146, 78, 0.24);
  background: rgba(18, 56, 79, 0.62);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: rgba(170, 146, 78, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.stay-cta-section {
  padding-top: 28px;
}

.stay-cta-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 42px clamp(130px, 3vw, 50px);
  border: 1px solid rgba(201, 183, 143, 0.34);
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.8) 0%, rgba(250, 247, 241, 0.54) 38%, rgba(250, 247, 241, 0.06) 100%),
    url("../img/berg.jpg") 97% 100% / 94% auto no-repeat,
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.99), rgba(241, 233, 218, 0.98));
  box-shadow: 0 24px 52px rgba(16, 32, 46, 0.12);
  overflow: hidden;
}

.stay-cta-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(18, 56, 79, 0.05), transparent 16%),
    radial-gradient(circle at 18% 88%, rgba(148, 129, 84, 0.08), transparent 12%);
  pointer-events: none;
}

.stay-cta-copy,
.stay-cta-action {
  position: relative;
  z-index: 1;
}

.stay-cta-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  max-width: min(100%, 35rem);
  padding: 12px 0;
}

.stay-cta-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: rgba(148, 129, 84, 0.98);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-cta-copy h2 {
  max-width: min(11.5ch, 100%);
  margin: 0;
  color: #25344a;
  font-size: clamp(3.5rem, 5.6vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-transform: uppercase;
}

.stay-cta-copy h2::after {
  content: "";
  display: block;
  width: 104px;
  height: 5px;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(148, 129, 84, 0.95), rgba(148, 129, 84, 0.3));
}

.stay-cta-copy p:last-child {
  max-width: 34rem;
  margin: 0;
  color: rgba(43, 56, 76, 0.9);
  font-size: 1.05rem;
  line-height: 1.9;
}

.stay-cta-action {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 164px;
  padding: 24px 30px;
  border: 1px solid rgba(215, 191, 143, 0.24);
  background: linear-gradient(180deg, rgba(18, 56, 79, 0.98), rgba(15, 46, 66, 0.98));
  box-shadow: 0 18px 34px rgba(16, 32, 46, 0.18);
  color: var(--gold-strong);
  text-decoration: none;
}

.stay-cta-action-label {
  font-family: var(--display-font);
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-transform: uppercase;
}

.stay-cta-action-arrow {
  font-family: var(--display-font);
  font-size: 3rem;
  line-height: 1;
}

.stay-cta-action:hover,
.stay-cta-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(16, 32, 46, 0.22);
}

.stay-feature-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 96%, rgba(201, 183, 143, 0.12) 100%),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.55), transparent 26%);
  pointer-events: none;
}

.stay-feature-hero-layout,
.stay-feature-editorial-grid,
.stay-feature-strip {
  position: relative;
  z-index: 1;
}

.stay-feature-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.18fr);
  align-items: stretch;
  min-height: 620px;
  padding-inline: var(--stay-stage-edge);
}

.stay-feature-stage-intro {
  position: relative;
  display: grid;
  align-content: start;
  gap: 26px;
  margin: 0;
  padding: 48px clamp(34px, 4vw, 56px) 28px clamp(38px, 4vw, 60px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.8) 0%, rgba(250, 247, 241, 0.54) 38%, rgba(250, 247, 241, 0.06) 100%),
    url("../img/berg.jpg") 98% 98% / 94% auto no-repeat;
}

.stay-feature-stage-intro h2 {
  margin-bottom: 18px;
}

.stay-feature-stage-intro::before {
  content: "";
  position: absolute;
  top: 126px;
  left: 26px;
  bottom: 86px;
  width: 1px;
  background: rgba(148, 129, 84, 0.34);
}

.stay-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(148, 129, 84, 0.98);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-feature-badge img {
  width: 22px;
  height: 22px;
}

.stay-feature-stage-intro h2 {
  max-width: 12ch;
  margin: 0 0 24px;
  color: #25344a;
  font-size: clamp(3.3rem, 5.8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.stay-feature-stage-intro p:not(.stay-feature-badge) {
  max-width: 38rem;
  margin: 0;
  color: rgba(43, 56, 76, 0.88);
  font-size: 1.04rem;
  line-height: 1.82;
}

.stay-feature-hero-media {
  position: relative;
  min-height: 100%;
}

.stay-feature-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 18%;
  background: linear-gradient(90deg, rgba(250, 247, 241, 0.98), rgba(250, 247, 241, 0));
  pointer-events: none;
}

.stay-feature-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.stay-feature-floating-note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  max-width: 240px;
  padding: 22px 20px 24px;
  background: rgba(18, 56, 79, 0.92);
  color: rgba(247, 244, 238, 0.94);
  box-shadow: 0 20px 34px rgba(16, 32, 46, 0.26);
  transform: rotate(-4deg);
}

.stay-feature-floating-note span {
  color: rgba(220, 204, 169, 0.92);
  font-family: var(--display-font);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stay-feature-floating-note strong {
  font-family: var(--display-font);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  font-weight: 700;
}

.stay-feature-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  padding: 0 var(--stay-stage-edge) 20px;
  margin-top: -28px;
}

.stay-feature-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(27, 41, 60, 0.1);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 16px 34px rgba(16, 32, 46, 0.12);
}

.stay-feature-card-dark {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.72fr);
  background: linear-gradient(180deg, rgba(18, 56, 79, 0.98), rgba(24, 65, 88, 0.98));
}

.stay-feature-card-dark .stay-feature-card-copy,
.stay-feature-card-dark h3,
.stay-feature-card-dark li {
  color: rgba(247, 244, 238, 0.96);
}

.stay-feature-card.stay-feature-card-dark h3 {
  color: #fff;
}

.stay-feature-card-kitchen,
.stay-feature-card-amenities {
  grid-template-rows: auto auto;
}

.stay-feature-card-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 28px 30px;
}

.stay-feature-card-dark .stay-feature-card-copy {
  padding: 28px 24px 30px;
}

.stay-feature-card-icon,
.stay-feature-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(148, 129, 84, 0.28);
  background: rgba(255, 252, 247, 0.92);
}

.stay-feature-card-dark .stay-feature-card-icon {
  background: rgba(255, 252, 247, 0.12);
  border-color: rgba(220, 204, 169, 0.24);
}

.stay-feature-card-dark .stay-feature-card-icon img {
  filter: brightness(0) invert(1);
}

.stay-feature-card-icon img,
.stay-feature-strip-icon img {
  width: 30px;
  height: 30px;
}

.stay-feature-card h3 {
  margin: 0;
  color: #25344a;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.feature-list-stage {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list-stage li {
  position: relative;
  padding-left: 28px;
  color: rgba(43, 56, 76, 0.88);
  font-size: 1rem;
  line-height: 1.58;
}

.feature-list-stage li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(148, 129, 84, 0.2);
  box-shadow: inset 0 0 0 4px rgba(148, 129, 84, 0.9);
}

.stay-feature-card-dark .feature-list-stage li {
  color: rgba(247, 244, 238, 0.94);
}

.stay-feature-card-dark .feature-list-stage li::before {
  background: rgba(220, 204, 169, 0.18);
  box-shadow: inset 0 0 0 4px rgba(220, 204, 169, 0.92);
}

.stay-feature-card-media {
  position: relative;
}

.stay-feature-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-feature-card-media-tall img {
  min-height: 100%;
}

.stay-feature-card-media-wide img {
  min-height: 240px;
}

.stay-feature-card-media-top img {
  min-height: 230px;
}

.stay-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 var(--stay-stage-edge) 26px;
  border: 1px solid rgba(18, 56, 79, 0.1);
  background: rgba(18, 56, 79, 0.96);
  color: rgba(247, 244, 238, 0.96);
}

.stay-story-section .stay-feature-strip {
  margin-top: 24px;
  margin-bottom: 24px;
}

.stay-feature-strip-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid rgba(220, 204, 169, 0.18);
  text-align: center;
}

.stay-feature-strip-item:last-child {
  border-right: 0;
}

.stay-feature-strip-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-color: rgba(220, 204, 169, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.stay-feature-strip-icon img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.stay-feature-strip-item strong,
.stay-feature-strip-item span {
  display: block;
}

.stay-feature-strip-item > div {
  display: grid;
  justify-items: center;
}

.stay-feature-strip-item strong {
  font-family: var(--display-font);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.stay-feature-strip-item span {
  margin-top: 4px;
  color: rgba(247, 244, 238, 0.74);
  font-size: 0.94rem;
  line-height: 1.4;
}

.stay-feature-strip .stay-feature-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stay-feature-strip .stay-feature-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stay-feature-strip .stay-feature-strip-icon img {
  filter: brightness(0) invert(1);
}

.stay-feature-strip .stay-feature-strip-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stay-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.2);
  background: rgba(18, 56, 79, 0.76);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.stay-gallery-item a {
  display: block;
  height: 100%;
  cursor: zoom-in;
}

.stay-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

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

.stay-gallery-item-doublewide {
  grid-column: span 2;
  min-height: 320px;
}

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

.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: break-word;
  word-break: normal;
}

.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(18, 56, 79, 0.9), rgba(18, 56, 79, 0.92)),
    rgba(18, 56, 79, 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(18, 56, 79, 0.9), rgba(18, 56, 79, 0.92)),
    rgba(18, 56, 79, 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);
}

.page-stay-prices .stay-prices-intro-section {
  padding-bottom: 18px;
}

.page-stay-prices .stay-prices-intro {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 48px);
  border: 1px solid rgba(215, 191, 143, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.9), rgba(18, 56, 79, 0.92)),
    rgba(18, 56, 79, 0.76);
  box-shadow: var(--shadow);
  text-align: center;
}

.page-stay-prices .stay-prices-intro h1 {
  margin: 0;
  color: var(--paper-strong);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  text-wrap: balance;
}

.page-stay-prices .stay-prices-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(243, 248, 251, 0.84);
  font-size: 1.04rem;
  line-height: 1.75;
}

.page-stay-prices .stay-prices-intro .button {
  margin-top: 8px;
}

.page-stay-prices .stay-prices-section {
  padding-top: 24px;
}

.page-stay-prices .stay-prices-table-shell {
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.9), rgba(18, 56, 79, 0.92)),
    rgba(18, 56, 79, 0.76);
  box-shadow: var(--shadow);
}

.page-stay-prices .stay-prices-table {
  display: grid;
}

.page-stay-prices .stay-prices-table-head,
.page-stay-prices .stay-prices-table-row {
  display: grid;
}

.page-stay-prices .stay-prices-table-groups .stay-prices-table-head,
.page-stay-prices .stay-prices-table-groups .stay-prices-table-row {
  grid-template-columns: minmax(240px, 1.6fr) repeat(5, minmax(110px, 1fr));
}

.page-stay-prices .stay-prices-table-rooms .stay-prices-table-head,
.page-stay-prices .stay-prices-table-rooms .stay-prices-table-row {
  grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(110px, 1fr));
}

.page-stay-prices .stay-prices-table-head > div {
  padding: 18px 18px 20px;
  border-right: 1px solid rgba(215, 191, 143, 0.14);
  color: var(--gold-strong);
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.page-stay-prices .stay-prices-table-head > div:last-child,
.page-stay-prices .stay-prices-table-row > div:last-child {
  border-right: 0;
}

.page-stay-prices .stay-prices-table-row > div {
  padding: 20px 18px;
  border-top: 1px solid rgba(215, 191, 143, 0.14);
  border-right: 1px solid rgba(215, 191, 143, 0.14);
  color: rgba(247, 251, 253, 0.94);
  font-size: 1rem;
  line-height: 1.6;
}

.page-stay-prices .stay-prices-table-row:last-child > div {
  border-bottom: 0;
}

.page-stay-prices .stay-prices-variant {
  display: grid;
  gap: 4px;
  align-content: center;
  min-width: 0;
}

.page-stay-prices .stay-prices-variant strong {
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-stay-prices .stay-prices-variant span {
  color: rgba(243, 248, 251, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-stay-prices .stay-prices-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.page-stay-prices .stay-prices-actions .button {
  min-width: 220px;
}

.page-stay-prices .stay-prices-notes-section {
  padding-top: 12px;
}

.page-stay-prices .stay-price-notes {
  max-width: 980px;
  margin: 0 auto;
}

.page-stay-prices .stay-prices-cta {
  max-width: 1080px;
  margin: 0 auto;
}

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

.seasonal-card {
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.9), rgba(18, 56, 79, 0.92)),
    rgba(18, 56, 79, 0.76);
}

.seasonal-card-winter {
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.9), rgba(18, 56, 79, 0.94)),
    rgba(18, 56, 79, 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-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;
}

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

@media (max-width: 760px) {
  .legal-page .legal-card h2 {
    font-size: 1.2rem;
  }
}

.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: 28px;
}

.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(18, 56, 79, 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-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: 40px;
}

.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 .stay-room-pair.reveal-item,
.has-reveal .home-living-card.reveal-item,
.has-reveal .home-closing-panel.reveal-item,
.has-reveal .contact-card.reveal-item,
.has-reveal .form-shell.reveal-item,
.has-reveal .stay-card.reveal-item,
.has-reveal .table-shell.reveal-item,
.has-reveal .soft-card.reveal-item,
.has-reveal .footer-card.reveal-item,
.has-reveal .footer-scrollbackdrop-panel.reveal-item {
  transform: translateY(30px);
}

.has-reveal .footer-scrollbackdrop-panel.reveal-item.is-visible {
  transform: translateY(0);
}

.has-reveal .drinks-feature-media.reveal-item,
.has-reveal .split-media.reveal-item,
.has-reveal .pitztal-activity-media.reveal-item,
.has-reveal .e5-main-card.reveal-item,
.has-reveal .e5-gallery-card.reveal-item {
  transform: translateY(34px) scale(0.985);
}

.has-reveal .drinks-feature-intro.reveal-item,
.has-reveal .drinks-feature-body.reveal-item,
.has-reveal .drinks-feature-card.reveal-item,
.has-reveal .section-heading.reveal-item,
.has-reveal .section-copy.reveal-item,
.has-reveal .subhero-grid.reveal-item,
.has-reveal .pitztal-activity-copy.reveal-item,
.has-reveal .e5-text-card.reveal-item,
.has-reveal .stay-room-showcase-intro.reveal-item {
  transform: translateY(24px);
}

@media (max-width: 1210px) {
  .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));
  }

  .stay-subnav {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 16px;
    align-items: stretch;
  }

  .stay-subnav a {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  #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(44vw, 400px);
  }

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

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

@media (min-width: 1060px) and (max-width: 1210px) {
  .page-home .highlight-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, calc(100% - 40px));
    gap: 18px;
    margin-top: -48px;
  }
}

@media (min-width: 761px) and (max-width: 1210px) {
  .page-home .home-living-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "side"
      "list";
  }

  .page-home .home-living-card,
  .page-home .home-living-card-large,
  .page-home .home-living-card-e5,
  .page-home .home-living-card-list {
    width: 100%;
    min-width: 0;
  }

  .page-home .home-living-media,
  .page-home .home-living-card-large .home-living-media {
    min-height: 320px;
  }

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

  .page-home .home-living-card-e5 .home-living-copy {
    margin-top: -100%;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .footer-scrollbackdrop {
    background-attachment: scroll;
  }
}

@media (min-width: 1061px) 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-subnav {
    min-width: 250px;
  }

  .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: 1061px) {
  .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: 1280px) {
  .stay-story-band {
    min-height: 860px;
  }

  .stay-story-band-copy {
    padding: 34px 36px 42px;
  }

  .stay-story-band-media {
    height: 460px;
  }
}

@media (max-width: 900px) {
  .stay-story-stack {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 18px 8px;
  }

  .stay-story-band-media {
    min-height: 280px;
  }

  .stay-story-fact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .stay-story-fact-tile {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(37, 52, 74, 0.08);
  }

  .stay-story-fact-tile:last-child {
    border-bottom: 0;
  }
}

@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: 1060px) {
  .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(18, 56, 79, 0.98);
    text-align: center;
    min-width: auto;
  }

  .site-nav-item {
    width: 100%;
  }

  .site-nav-link {
    display: inline-block;
  }

  .site-subnav {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    margin-top: 10px;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(215, 191, 143, 0.18);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-subnav a {
    font-size: 0.84rem;
    padding: 5px 0;
  }

  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,
  .stay-detail-feature-grid,
  .stay-gallery-grid,
  .stay-story-band,
  .stay-story-band-reverse,
  .stay-showcase-card,
  .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;
  }

  .subhero-stay-detail {
    padding: 10px 18px 8px;
  }

  .subhero-stay-detail-grid {
    border-radius: 0;
  }

  .subhero-stay-copy {
    padding: 30px 24px;
  }

  .subhero-stay-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .subhero-stay-media {
    min-height: 250px;
  }

  .subhero-stay-detail-hostel-bg .subhero-stay-copy {
    min-height: 420px;
    max-width: none;
    margin-left: 0;
  }

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

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

  .stay-showcase-media {
    min-height: 280px;
  }

  .stay-story-band-media {
    min-height: 280px;
  }

  .stay-showcase-card {
    grid-template-areas:
      "media"
      "copy"
      "facts";
  }

  .stay-showcase-media {
    border-right: 0;
    border-bottom: 1px solid rgba(27, 41, 60, 0.08);
  }

  .stay-showcase-facts {
    grid-template-columns: 1fr;
  }

  .stay-showcase-fact {
    border-right: 0;
    border-bottom: 1px solid rgba(27, 41, 60, 0.08);
  }

  .stay-showcase-fact:last-child {
    border-bottom: 0;
  }

  .stay-feature-stage-intro {
    padding-bottom: 24px;
  }

  .stay-feature-tile {
    border-right: 0;
    border-bottom: 1px solid rgba(27, 41, 60, 0.08);
  }

  .stay-feature-tile:last-child {
    border-bottom: 0;
  }

  .subhero-stay-detail-hostel-bg::before {
    inset: 0;
    width: auto;
  }

  .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: #12384f !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: 220px;
    background-attachment: scroll;
  }

  .footer-scrollbackdrop {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 10px 10px;
    background-attachment: scroll;
  }

  .footer-scrollbackdrop-panel {
    width: min(100%, 236px);
    max-width: 236px;
    aspect-ratio: 1 / 1;
    gap: 4px;
    margin-inline: auto;
    padding: 14px 12px 12px;
    justify-self: center;
    align-self: center;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

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

  .footer-scrollbackdrop-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
    padding-top: 4px;
    text-align: center;
  }

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

  .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) {
  .page-home .stay-room-showcase-grid .stay-room-pair,
  .page-home .stay-room-showcase-grid .stay-room-pair.stay-room-pair-reverse {
    gap: 0;
  }

  .page-home .hero-copy-centered,
  .page-home .drinks-feature-intro,
  .page-home .drinks-feature-body,
  .page-home .stay-room-showcase-intro,
  .page-home .section-heading,
  .page-home .home-living-copy,
  .page-home .home-living-card-list,
  .page-home .home-closing-panel {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-home .home-living-card-large .home-living-copy {
    margin-top: -60px;
    padding-top: 80px;
  }

  .page-home .home-closing-panel {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .page-home .home-closing-copy {
    min-width: 0;
  }

  .page-home .home-closing-copy .button-primary,
  .page-home .home-closing-copy .button-secondary {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .stay-23-page .stay-feature-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .stay-23-page .stay-price-section {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .stay-subnav a {
    width: 100%;
    font-size: 0.84rem;
  }

  .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 {
    -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(18, 56, 79, 0.76);
  }

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

  .page-home .home-living-card-e5 .home-living-media {
    margin: 0;
    display: flex;
    align-self: stretch;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
  }

  .page-home .home-living-card-e5 .home-living-media img {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .home-living-card-e5 .home-living-copy {
    margin-top: 0;
  }

  .page-home .home-living-card-e5 {
    grid-template-rows: minmax(0, 1fr);
  }

  .page-home .home-living-card-e5 .home-living-media,
  .page-home .home-living-card-e5 .home-living-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .page-home .home-living-card-e5 .home-living-copy {
    align-self: end;
    min-height: 100%;
  }

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

  .pitztal-hero {
    min-height: calc(100vh - 96px);
    padding-bottom: 48px;
  }

  .pitztal-intro-card,
  .pitztal-activity-copy {
    padding: 24px;
  }

  .pitztal-accordion-title {
    padding: 18px 18px 18px 16px;
  }

  .pitztal-accordion-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pitztal-more-link {
    width: 100%;
    justify-content: center;
  }
}

@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,
  .stay-23-page .subhero-stay-title,
  .stay-23-page .subhero-stay-title::after,
  .stay-23-page .subhero-stay-eyebrow,
  .stay-23-page .subhero-stay-pill,
  .stay-23-page .stay-feature-floating-note {
    animation: none;
  }

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

.pitztal-hero {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(18, 56, 79, 0.72), rgba(18, 56, 79, 0.72)),
    var(--pitztal-hero-image);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.pitztal-hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(215, 191, 143, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(247, 251, 253, 0.04),
    inset 0 0 48px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.pitztal-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 70ch);
}

.pitztal-hero-copy h1,
.pitztal-hero-copy .hero-lead {
  text-align: center;
}

.pitztal-intro-section {
  padding-top: 34px;
}

.pitztal-intro-card {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  padding: 34px 38px;
}

.pitztal-intro-card p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(243, 248, 251, 0.88);
}

.pitztal-activity-section {
  padding-top: 30px;
}

.pitztal-activity-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.pitztal-activity-grid.is-reversed {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.pitztal-activity-grid.is-reversed .pitztal-activity-media {
  order: 2;
}

.pitztal-activity-grid.is-reversed .pitztal-activity-copy {
  order: 1;
}

.pitztal-activity-media {
  display: flex;
}

.pitztal-activity-image-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(215, 191, 143, 0.2);
  background: rgba(18, 56, 79, 0.76);
  box-shadow: var(--shadow);
}

.pitztal-activity-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.22s ease;
}

.pitztal-image-credit {
  position: absolute;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 8px 10px;
  background: rgba(18, 56, 79, 0.7);
  color: rgba(243, 248, 251, 0.82);
  font-size: 0.78rem;
  line-height: 1.3;
}

.pitztal-activity-copy {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 34px 36px;
}

.pitztal-activity-copy > p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(243, 248, 251, 0.84);
}

.pitztal-accordion {
  display: grid;
  gap: 14px;
}

.pitztal-accordion-item {
  border: 1px solid rgba(215, 191, 143, 0.18);
  background: rgba(247, 251, 253, 0.04);
}

.pitztal-accordion-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 20px 20px 18px;
  border: 0;
  background: transparent;
  color: var(--paper-strong);
  font-family: var(--display-font);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.pitztal-accordion-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(215, 191, 143, 0.32);
  color: var(--gold-strong);
  font-family: var(--body-font);
  font-size: 1rem;
}

.pitztal-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.22s ease, padding-bottom 0.22s ease;
}

.pitztal-accordion-item.is-active .pitztal-accordion-content {
  max-height: 1000px;
  padding-bottom: 20px;
}

.pitztal-accordion-content p {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.75;
}

.pitztal-cta-stage .stay-cta-copy {
  max-width: min(100%, 42rem);
}

.pitztal-cta-stage .stay-cta-copy h2 {
  max-width: min(18ch, 100%);
  font-size: clamp(3rem, 4.35vw, 4.55rem);
  line-height: 0.95;
  text-wrap: balance;
}

.pitztal-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(239, 225, 190, 0.38);
  color: var(--gold-strong);
  font-family: var(--display-font);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
