@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --bg-page: #faf7f0;
  --bg-surface: #ffffff;
  --bg-soft: #f5efe4;

  --text-main: #1f2a24;
  --text-muted: #66736c;
  --text-on-dark: #faf7f0;

  --accent: #a8c6bc;
  --accent-strong: #6f9b8e;
  --accent-soft: #dbe8e2;

  --line: rgba(31, 42, 36, 0.14);
  --line-soft: rgba(31, 42, 36, 0.08);
  --shadow-sm: 0 10px 24px rgba(18, 28, 24, 0.08);
  --shadow-md: 0 20px 40px rgba(18, 28, 24, 0.12);

  --btn-primary: #6f8b6b;
  --btn-primary-hover: #244c3a;
  --btn-secondary: #e3ede8;

  --footer-bg: #244c3a;
  --footer-text: #faf7f0;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --wrap: min(1240px, calc(100% - 40px));
  --content-max: 600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.hotel-brand-zickler {
  --bg-page: #faf7f0;
  --bg-surface: #ffffff;
  --bg-soft: #f5efe4;
  --text-main: #1f2a24;
  --text-muted: #66736c;
  --accent: #a8c6bc;
  --accent-strong: #6f9b8e;
  --accent-soft: #dbe8e2;
}

body.hotel-brand-landhotel {
  --bg-page: #faf6ef;
  --bg-surface: #ffffff;
  --bg-soft: #f4ebde;
  --text-main: #2a2421;
  --text-muted: #746862;
  --accent: #d9a038;
  --accent-strong: #b98224;
  --accent-soft: #f0debf;
  --btn-primary: #d9a038;
  --btn-primary-hover: #b98224;
  --btn-secondary: #f4e5c8;
  --footer-bg: #80675e;
  --footer-text: #faf6ef;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: visible;
  overflow-y: auto;
  background: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

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

main {
  display: block;
}

.hotel-shell {
  overflow: visible;
}

body .site-main,
body .content-area,
body .entry-content,
main {
  overflow-x: clip;
}

body.hotel-shell {
  --hotel-header-height: 0px;
  --hotel-adminbar-offset: 0px;
}

/* Elementor wrappers full width */
body .site,
body .site-main,
body .content-area,
body .entry-content {
  width: 100%;
  max-width: 100%;
}

body .site-main,
body .content-area,
body .entry-content {
  margin: 0;
  padding: 0;
}

body .entry-content > .elementor,
body .entry-content > .elementor > .elementor-element,
body .entry-content > .elementor > .e-con {
  width: 100%;
  max-width: 100%;
}

.hotel-wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-soft {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 48%, #ffffff), #ffffff 72%);
}

.overline {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.section-subtitle,
.section-intro {
  margin: 0;
  max-width: var(--content-max);
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--btn-primary);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 24, 20, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--btn-primary-hover);
}

.btn-secondary {
  background: var(--btn-secondary);
  color: var(--text-main);
  border-color: color-mix(in srgb, var(--btn-primary) 42%, transparent);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: color-mix(in srgb, var(--btn-secondary) 80%, #ffffff);
}

.hotel-header {
  position: relative;
  z-index: 120;
  overflow: visible;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg-page) 86%, transparent);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.hotel-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--bg-page) 94%, transparent);
}

.hotel-header-top {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.hotel-header-right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hotel-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hotel-logo {
  width: clamp(82px, 8.5vw, 126px);
  max-height: 94px;
  object-fit: contain;
  height: auto;
}

.hotel-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hotel-nav a {
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.77rem;
  font-weight: 600;
}

.hotel-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--btn-primary-hover);
  transition: transform 0.2s var(--ease);
}

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

.hotel-nav-link--soft {
  padding: 8px 12px !important;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--btn-primary) 35%, transparent);
  background: color-mix(in srgb, var(--btn-secondary) 74%, #ffffff);
}

.hotel-header-cta {
  white-space: nowrap;
}

.hotel-header-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hotel-switch-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hotel-switch-logo-link:hover,
.hotel-switch-logo-link:focus-visible {
  transform: scale(1.08);
  border-color: color-mix(in srgb, var(--btn-primary) 54%, transparent);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.hotel-switch-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .hotel-switch-logo-link::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 0;
    top: calc(100% + 9px);
    padding: 7px 11px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--text-main) 92%, #000000);
    color: #ffffff;
    font-size: 0.76rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    z-index: 190;
  }

  .hotel-switch-logo-link:hover::after,
  .hotel-switch-logo-link:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
  }
}

.hotel-header-cta-soft {
  background: rgba(255, 255, 255, 0.7);
  color: #1f2a24;
  border: 1px solid #6f8b6b;
  box-shadow: none;
}

.hotel-header-cta-soft:hover,
.hotel-header-cta-soft:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 999;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-page) 92%, #ffffff);
  box-shadow: var(--shadow-md);
}

.mobile-sticky-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  padding: 12px 14px;
  font-size: 0.86rem;
}

.mobile-sticky-cta-soft {
  background: color-mix(in srgb, var(--btn-secondary) 78%, #ffffff);
  border-color: color-mix(in srgb, var(--btn-primary) 42%, transparent);
  color: var(--text-main);
}

.mobile-sticky-cta-soft:hover,
.mobile-sticky-cta-soft:focus-visible {
  background: color-mix(in srgb, var(--btn-secondary) 62%, #ffffff);
}

.mobile-sticky-cta-main {
  box-shadow: 0 10px 22px rgba(15, 24, 20, 0.22);
}

.hotel-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: none;
}

.hotel-mobile-toggle:hover,
.hotel-mobile-toggle:active,
.hotel-mobile-toggle:focus,
.hotel-mobile-toggle:focus-visible,
.hotel-mobile-toggle[aria-expanded="true"],
.hotel-mobile-toggle.is-active {
  border-color: var(--line);
  background: var(--bg-surface);
  outline: none;
  box-shadow: none;
}

.hotel-mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  position: relative;
}

.hotel-mobile-toggle span::before,
.hotel-mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: inherit;
}

.hotel-mobile-toggle span::before {
  top: -6px;
}

.hotel-mobile-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
}

.hero-landing {
  padding: 120px 0;
  color: #ffffff;
  overflow: clip;
}

.hero-bg,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.03);
}

.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 42, 36, 0.32) 0%, rgba(31, 42, 36, 0.18) 50%, rgba(31, 42, 36, 0.05) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  max-width: 760px;
  padding: 48px;
  border-radius: 28px;
  margin-left: clamp(40px, 8vw, 140px);
  align-self: center;
  background: rgba(31, 42, 36, 0.36);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-content,
.hero-content p {
  color: rgba(255, 255, 255, 0.92);
}

.hero-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-landing h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-subline {
  margin: 16px 0 0;
  max-width: var(--content-max);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.hero-actions,
.hero-buttons {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-landing .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  backdrop-filter: blur(2px);
}

.hero-landing .btn-secondary:hover,
.hero-landing .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.26);
}

.trust-line {
  margin: 18px 0 0;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-mappe-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.hero-mappe-note a {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.hero-mappe-note a:hover,
.hero-mappe-note a:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
}

.hotel-nav-cta {
  display: none;
}

.hero:not(.hero-landing) {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 40%, #ffffff), #ffffff 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.hero h1:not(.hero-landing h1) {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero:not(.hero-landing) p {
  margin: 14px 0 0;
  max-width: var(--content-max);
  color: var(--text-muted);
}

.hero-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

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

.meta-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: var(--bg-surface);
}

.meta-label {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.67rem;
  color: var(--text-muted);
}

.meta-value {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.meta-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.meta-value a:hover,
.meta-value a:focus-visible {
  border-color: currentColor;
}

.hero-card .hero-meta + .btn {
  margin-top: 16px;
}

.hero-hotelmappe-hint {
  margin-top: 18px !important;
  color: var(--text-muted);
  max-width: 660px;
}

.hero-hotelmappe-hint a {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.intro-grid,
.breakfast-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.media-card,
.room-card,
.usp-card,
.env-card,
.info-card,
.cta-panel,
.luxury-visual-card,
.legal-content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.media-card {
  margin: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.fact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fact-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--bg-surface);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.usp-grid,
.split-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mappe-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.usp-card,
.info-card {
  padding: 20px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.usp-card:hover,
.info-card:hover,
.room-card:hover,
.env-card:hover,
.luxury-visual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(18, 28, 24, 0.15);
}

.usp-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--btn-primary) 50%, transparent);
  color: var(--btn-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.usp-card h3,
.info-card h3,
.env-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.usp-card p,
.info-card p,
.env-copy p,
.room-copy p,
.cta-panel p,
.breakfast-copy p {
  margin: 0;
  color: var(--text-muted);
  max-width: var(--content-max);
}

.info-card.is-accent {
  background: color-mix(in srgb, var(--accent-soft) 58%, #ffffff);
}

.mappe-service-note {
  margin: 22px 0 0;
  color: var(--text-muted);
  max-width: 940px;
}

.info-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.info-line:last-child {
  border-bottom: 0;
}

.rooms-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.room-card .room-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.45s var(--ease);
}

.room-card:hover .room-image {
  transform: scale(1.03);
}

.room-copy {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.room-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.05;
}

.room-copy p {
  margin: 0;
  color: var(--text-muted);
}

.room-tags {
  margin: 2px 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.room-tags li {
  font-size: 0.74rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-page);
  color: var(--text-muted);
}

.room-card-cta {
  margin-top: auto;
  width: 100%;
}

.rooms-by-category .section-subtitle {
  max-width: 760px;
}

.room-categories {
  margin-top: 32px;
  display: grid;
  gap: 56px;
}

.room-category {
  display: grid;
  gap: 22px;
}

.room-category-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}

.room-category-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  line-height: 1;
}

.room-category-sub {
  margin: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
}

.room-category-note {
  margin: 4px 0 0;
  color: var(--text-muted);
  max-width: 760px;
}

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

.room-unit-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.room-unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(18, 28, 24, 0.15);
}

.room-unit-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.room-unit-card:hover .room-unit-image {
  transform: scale(1.03);
}

.room-unit-card > .room-unit-image {
  border-radius: 16px;
}

.room-collage--unit {
  padding: 18px 18px 0;
}

.room-collage--unit .room-unit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-unit-card:hover .room-collage--unit .room-image img {
  transform: scale(1.035);
}

.room-unit-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.room-unit-content h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1;
}

.room-unit-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.room-unit-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--accent-soft) 18%, #ffffff);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
}

.room-unit-features li::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.8l4.1 4.1L19 7.4' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  background: var(--btn-primary);
  -webkit-mask-image: var(--room-feature-icon);
  mask-image: var(--room-feature-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 13px 13px;
  mask-size: 13px 13px;
}

.room-unit-features li.is-wifi::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9.5c5.8-5.3 12.2-5.3 18 0' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M6 13c3.9-3.5 8.1-3.5 12 0' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M9.3 16.5c1.8-1.6 3.6-1.6 5.4 0' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='19.2' r='1.3' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-bath::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 5.8a2.1 2.1 0 1 1 4.2 0v11.2' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M6 12h9.5a2.5 2.5 0 0 1 0 5H6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M17.4 7.2v2M17.4 10.8v2M17.4 14.4v2' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-safe::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4.2' y='6.5' width='15.6' height='11' rx='1.8' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='2' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M12 10v4M10 12h4' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-tv::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4.2' y='6.2' width='15.6' height='10.4' rx='1.6' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M9.3 19.2h5.4' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-outdoor::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 18h14' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M7.2 18V8.5h9.6V18' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M10.5 8.5V6h3v2.5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M9.2 12.2h5.6M9.2 14.8h5.6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-single::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='3.1' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M6.8 18.6c0-2.9 2.3-5.2 5.2-5.2s5.2 2.3 5.2 5.2' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-persons::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8.2' cy='8.5' r='2.4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='15.8' cy='8.5' r='2.4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M4.8 18c0-2.2 1.8-4 4-4M19.2 18c0-2.2-1.8-4-4-4' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M8.8 18c0-2 1.4-3.5 3.2-3.5s3.2 1.5 3.2 3.5' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-steps::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 18h14' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M6 18v-3h4v-3h4V9h4V6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-features li.is-dog-friendly::before {
  --room-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6.6' cy='7.4' r='2.2'/%3E%3Ccircle cx='11.9' cy='5.9' r='2.3'/%3E%3Ccircle cx='17.4' cy='7.4' r='2.2'/%3E%3Ccircle cx='4.9' cy='12.2' r='1.9'/%3E%3Ccircle cx='19.1' cy='12.2' r='1.9'/%3E%3Cpath d='M11.9 11.1c-3 0-5.4 2.2-5.4 4.7 0 2 1.4 3.3 3.5 3.3 1.1 0 1.8-.3 1.9-.7.1.4.8.7 1.9.7 2.1 0 3.5-1.3 3.5-3.3 0-2.5-2.4-4.7-5.4-4.7z'/%3E%3C/svg%3E");
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.room-unit-cta {
  margin-top: auto;
  width: 100%;
}

.room-grid,
.room-showcases {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* Safety net against older CSS overrides in WordPress custom snippets */
.hotel-shell .room-grid,
.hotel-shell .room-showcases {
  display: grid !important;
}

.room-showcase {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(31, 42, 36, 0.08);
  padding: 18px 18px 0;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.room-showcase:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(18, 28, 24, 0.16);
}

/* Fallback: Zimmer-Karten bleiben sichtbar, auch wenn reveal-Animationen nicht greifen */
.hotel-shell .room-showcase,
.room-grid .room-showcase.reveal,
.room-showcases .room-showcase.reveal {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.room-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
}

.room-image,
.room-side-grid .room-image {
  margin: 0;
  min-height: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-soft) 58%, #ffffff),
    color-mix(in srgb, var(--accent-soft) 82%, #ffffff)
  );
}

.room-image-main {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.room-side-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 8px;
}

.room-side-grid--quad {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
}

.room-side-grid .room-image:nth-child(n + 3),
.room-side-grid--quad .room-image:nth-child(n + 3) {
  display: none;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-soft) 58%, #ffffff),
    color-mix(in srgb, var(--accent-soft) 82%, #ffffff)
  );
  transition: transform 0.8s ease;
}

.room-showcase:hover .room-image img {
  transform: scale(1.035);
}

.room-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.12) 100%);
}

.room-image-overlay {
  display: none;
}

.room-showcase-heading {
  display: grid;
  gap: 6px;
  padding-bottom: 4px;
  min-height: 112px;
  align-content: start;
}

.room-showcase-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
  color: var(--text-main);
}

.room-showcase-heading p {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.room-showcase-content {
  background: #ffffff;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  padding: 24px;
  flex: 1 1 auto;
}

.room-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  min-height: 126px;
  align-items: start;
}

.room-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--text-main);
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.room-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--btn-primary) 52%, transparent);
  background: color-mix(in srgb, var(--accent-soft) 30%, #ffffff);
  display: grid;
  place-items: center;
  color: var(--btn-primary);
}

.room-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-feature-label {
  font-size: 0.83rem;
  line-height: 1.25;
  color: var(--text-main);
  text-align: center;
  max-width: 106px;
}

.room-showcase-text {
  margin: 0;
  max-width: none;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.room-showcase-cta {
  margin-top: 0;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  gap: 10px;
  justify-content: center;
}

body.hotel-brand-zickler .btn-primary:hover,
body.hotel-brand-zickler .btn-primary:focus-visible,
body.hotel-brand-zickler .btn-primary:hover span,
body.hotel-brand-zickler .btn-primary:focus-visible span {
  color: #ffffff !important;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .room-grid,
  .room-showcases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .room-grid,
  .room-showcases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* desktop hardening in case of legacy rule collisions */
  .hotel-shell .room-grid,
  .hotel-shell .room-showcases {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .room-showcase-heading {
    min-height: 104px;
  }

  .room-features {
    min-height: 122px;
  }
}

.room-cta-arrow {
  display: inline-block;
  transition: transform 0.26s var(--ease);
}

.room-showcase-cta:hover .room-cta-arrow,
.room-showcase-cta:focus-visible .room-cta-arrow {
  transform: translateX(4px);
}

.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

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

.gallery-item--small {
  grid-column: span 5;
}

.gallery-item--medium {
  grid-column: span 4;
}

.breakfast-copy {
  padding: 24px;
}

.breakfast-copy .btn {
  margin-top: 20px;
}

.breakfast-human-note {
  margin-top: 14px !important;
}

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

.env-card {
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.env-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.env-card-link {
  display: block;
}

.env-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.env-copy h3 a:hover {
  text-decoration: underline;
}

.env-copy {
  padding: 18px;
}

.env-cta {
  margin-top: 28px;
}

.final-cta {
  background: #f3f7f4;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta h2 {
  margin: 0;
  max-width: 600px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.final-cta p {
  margin: 0;
  max-width: 600px;
  color: var(--text-muted);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-panel {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cta-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.faq-preview-section {
  display: grid;
  gap: 16px;
}

.faq-preview-copy {
  max-width: 860px;
}

.faq-preview-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-preview-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 18px 50px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-preview-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--btn-primary) 88%, #ffffff);
  font-size: 1rem;
  font-weight: 700;
}

.faq-preview-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-main);
}

.faq-preview-action {
  margin-top: 6px;
}

.faq-accordion {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 18px 54px 18px 20px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--btn-primary) 46%, transparent);
  color: var(--btn-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--accent-soft) 30%, #ffffff);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 16px 20px 20px;
  color: var(--text-muted);
}

.faq-item p a {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.faq-cta-panel {
  align-items: center;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

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

.luxury-visual-card {
  margin: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.luxury-visual-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.luxury-visual-card:hover .luxury-visual-image {
  transform: scale(1.03);
}

.luxury-visual-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  background: color-mix(in srgb, #ffffff 86%, transparent);
  border: 1px solid var(--line-soft);
}

.luxury-hero-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.luxury-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.cafe-brand-mark {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: min(100%, 520px);
}

.cafe-brand-mark img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.cafe-brand-logo {
  width: clamp(200px, 32vw, 360px);
}

.essbar-brand-logo {
  width: clamp(220px, 40vw, 480px);
}

.legal-content {
  padding: 24px;
}

.content-legal {
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-legal h2 {
  margin: 36px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.15;
  color: var(--text-main);
}

.content-legal h2:first-child {
  margin-top: 4px;
}

.content-legal p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.content-legal ol,
.content-legal ul {
  margin: 14px 0 0 20px;
  padding: 0;
  color: var(--text-muted);
}

.content-legal li + li {
  margin-top: 8px;
}

.content-legal ul li {
  list-style: disc;
}

.legal-content h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0;
  padding-left: 18px;
}

.hotel-legal-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hotel-footer {
  margin-top: 120px;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.9fr;
  gap: 36px;
}

.footer-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.footer-claim,
.footer-note {
  margin: 10px 0 0;
  color: color-mix(in srgb, var(--footer-text) 90%, transparent);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: max-content;
  color: var(--footer-text);
  border-bottom: 1px solid color-mix(in srgb, var(--footer-text) 26%, transparent);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  border-color: color-mix(in srgb, #ffffff 70%, transparent);
}

.footer-meta {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--footer-text) 24%, transparent);
  color: color-mix(in srgb, var(--footer-text) 80%, transparent);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

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

@media (max-width: 1023px) {
  .hotel-header-top {
    grid-template-columns: auto 1fr auto;
  }

  .hotel-header-right {
    gap: 8px;
  }

  .hotel-mobile-toggle {
    display: inline-flex;
    justify-self: auto;
  }

  .hotel-header-cta {
    display: none;
  }

  .hotel-header-cta-group {
    display: none;
  }

  .hotel-switch-logo-link {
    width: 40px;
    height: 40px;
  }

  .hotel-switch-logo {
    width: 26px;
    height: 26px;
  }

  .hotel-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 140;
    background: var(--bg-surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hotel-nav.mobile-menu {
    display: none !important;
  }

  .hotel-nav.mobile-menu.is-open {
    display: flex !important;
  }

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

  .hotel-nav-cta {
    display: none !important;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .hero-grid,
  .intro-grid,
  .breakfast-grid,
  .cta-panel,
  .footer-grid,
  .rooms-grid,
  .usp-grid,
  .split-grid,
  .luxury-visual-grid,
  .luxury-visual-grid--two {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide,
  .gallery-item--small,
  .gallery-item--medium {
    grid-column: span 6;
  }

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

  .room-grid {
    gap: 24px;
  }

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

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

  .faq-preview-grid {
    grid-template-columns: 1fr;
  }

  .faq-cta-actions {
    justify-content: flex-start;
  }

}

@media (min-width: 1024px) {
  .hotel-header {
    position: fixed !important;
    top: var(--hotel-adminbar-offset);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 160;
  }

  .hotel-nav.desktop-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .mobile-sticky-cta {
    display: none !important;
  }

  body.hotel-shell {
    padding-top: calc(var(--hotel-header-height) + var(--hotel-adminbar-offset));
  }

  body.admin-bar.hotel-shell {
    --hotel-adminbar-offset: 32px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .hero-landing,
  .hero:not(.hero-landing) {
    padding: 80px 0;
  }

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

  .gallery-item--wide,
  .gallery-item--small,
  .gallery-item--medium {
    grid-column: auto;
  }

  .final-cta {
    padding: 80px 20px;
  }

  .hotel-footer {
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .hero-landing,
  .hero:not(.hero-landing) {
    min-height: auto;
    padding: 24px 0 40px;
  }

  .hero-landing h1 {
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1;
  }

  .hero-content {
    margin-left: 0;
    padding: 26px 22px;
    border-radius: 22px;
    max-width: calc(100% - 32px);
    background: rgba(31, 42, 36, 0.42);
    backdrop-filter: blur(1.5px);
  }

  .hero-landing::before {
    background: linear-gradient(180deg, rgba(31, 42, 36, 0.22) 0%, rgba(31, 42, 36, 0.12) 50%, rgba(31, 42, 36, 0.24) 100%);
  }

  .hero-bg,
  .hero-image img,
  .hero-media img {
    object-position: 55% center;
  }

  .hero-actions,
  .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-buttons a,
  .final-cta .btn,
  .cta-panel .btn {
    width: 100%;
    justify-content: center;
  }

  .fact-list,
  .env-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .env-card img {
    height: 230px;
  }

  .room-grid {
    gap: 42px;
  }

  .room-categories {
    gap: 42px;
  }

  .room-unit-grid {
    grid-template-columns: 1fr;
  }

  .room-unit-features {
    grid-template-columns: 1fr;
  }

  .room-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: auto;
    gap: 8px;
    padding: 8px;
    max-height: none;
    grid-template-rows: auto;
  }

  .room-image-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .room-side-grid,
  .room-side-grid--quad {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 8px;
  }

  .room-image,
  .room-side-grid .room-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .room-side-grid .room-image:nth-child(n + 3),
  .room-side-grid--quad .room-image:nth-child(n + 3) {
    display: none;
  }

  .room-showcase-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 18px;
    padding: 24px 18px;
  }

  .room-showcase-heading h3 {
    font-size: clamp(1.7rem, 8.2vw, 2.4rem);
  }

  .room-showcase-heading p {
    font-size: 0.88rem;
  }

  .room-showcase-heading {
    min-height: 0;
  }

  .room-showcase-text {
    max-width: none;
    font-size: 1rem;
  }

  .room-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 6px;
    padding-top: 8px;
    min-height: 0;
  }

  .room-feature-icon {
    width: 48px;
    height: 48px;
  }

  .room-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .room-feature-label {
    font-size: 0.78rem;
  }

  .room-showcase-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 16px 50px 16px 16px;
    font-size: 0.97rem;
  }

  .faq-item summary::after {
    right: 16px;
  }

  .faq-item p {
    padding: 14px 16px 18px;
  }

  .faq-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 60px 20px;
  }

  .hotel-footer {
    margin-top: 70px;
    padding: 60px 0;
  }

  body.hotel-shell {
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
