:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --ink: #16181d;
  --muted: #68707c;
  --line: #e3e6ea;
  --nav: #111318;
  --blue: #337ab7;
  --blue-dark: #285f8f;
  --stamp: #c92127;
  --max: 1240px;
  --radius: 16px;
  --shadow: 0 16px 45px rgba(17, 19, 24, .08);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17,19,24,.97);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links a,
.language-switch a {
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.language-switch a:hover {
  background: rgba(255,255,255,.08);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-switch a.active {
  background: #fff;
  color: var(--nav);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  width: 44px;
  height: 40px;
  border-radius: 9px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(12,14,18,.34), rgba(12,14,18,.56)),
    url("../img/head.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(transparent, rgba(0,0,0,.12));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 44px));
  padding: 60px 32px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(10,12,16,.30);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 800;
}

.hero h2 {
  margin: 20px 0 32px;
  font-size: clamp(20px, 2.5vw, 31px);
  line-height: 1.25;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(51,122,183,.24);
  transition: transform .18s ease, background .18s ease;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.reservation-stamp {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: max(24px, calc((100vw - var(--max))/2 + 10px));
  padding: 10px 18px;
  color: var(--stamp);
  background: rgba(255,255,255,.96);
  border: 5px solid var(--stamp);
  border-radius: 9px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  line-height: .94;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-5deg);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 24px 30px;
}

.section {
  margin-bottom: 52px;
}

.section-title {
  margin: 0 0 26px;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
}

.section-title.center { text-align: center; }

.panel {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.content-block {
  padding: clamp(28px, 4.2vw, 58px);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.feature-list li:last-child { border-bottom: 0; }

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.media {
  min-height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.info-copy p {
  margin-top: 0;
  color: #2b313a;
}

.info-copy p + p {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.info-copy strong {
  color: var(--blue);
}

.image-stack {
  padding: 18px;
  display: grid;
  gap: 18px;
  background: #ffffff;
}

.image-stack img {
  width: 100%;
  border-radius: 11px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.booking-copy h3 {
  margin: 0 0 8px;
  font-size: 30px;
}

.booking-copy hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.booking-copy a {
  color: var(--blue-dark);
  font-weight: 800;
}

.booking-copy ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.booking-copy li {
  margin: 8px 0;
}

.price-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

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

.price-table thead th {
  background: #f7f9fb;
  color: #3e4753;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.price-table tbody th {
  font-weight: 700;
}

.price-table td {
  width: 150px;
  font-size: 21px;
  font-weight: 900;
}

.legal {
  max-width: 920px;
  margin: 0 auto;
}

.legal h1 {
  margin: 0 0 32px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.035em;
}

.legal h3 {
  margin: 34px 0 10px;
  font-size: 23px;
}

.legal p,
.legal li {
  color: #333b46;
}

.legal ul {
  padding-left: 22px;
}

.legal-card {
  padding: clamp(28px, 5vw, 62px);
}

.subhero {
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(rgba(12,14,18,.42), rgba(12,14,18,.58)),
    url("../img/head.jpg") center 42% / cover no-repeat;
}

.subhero-title {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.04em;
  text-align: center;
}

.back-top {
  text-align: center;
  padding: 12px 0 40px;
}

.back-top a {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--nav);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a {
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-links,
  .language-switch {
    display: none;
    width: 100%;
    margin: 0;
  }

  .nav-links.open,
  .language-switch.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a { width: 100%; }

  .language-switch {
    padding-bottom: 6px;
  }

  .hero {
    min-height: 500px;
  }

  .reservation-stamp {
    top: 22px;
    left: 18px;
  }

  .split,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .media { min-height: 300px; }

  .booking-grid > .media {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand { font-size: 18px; }

  .hero {
    min-height: 460px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding: 46px 18px;
  }

  .reservation-stamp {
    top: 16px;
    left: 14px;
    border-width: 3px;
    padding: 7px 10px;
    font-size: 15px;
  }

  main {
    padding: 48px 16px 20px;
  }

  .content-block,
  .legal-card {
    padding: 26px 22px;
  }

  .section-title {
    font-size: 36px;
  }

  .subhero {
    min-height: 220px;
  }
}

/* Bilder immer vollständig anzeigen */
.booking-grid .media {
  padding: 18px;
  background: #ffffff;
}

.booking-grid .media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 11px;
}

.split > .media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Bildbereiche in allen Inhaltsboxen weiß */
.media,
.image-stack,
.booking-grid .media {
  background: #ffffff !important;
}

/* Mobile Preistabelle: vollständig sichtbar ohne horizontales Wischen */
@media (max-width: 700px) {
  .price-wrap {
    overflow-x: visible;
  }

  .price-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .price-table th,
  .price-table td {
    padding: 12px 8px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    vertical-align: middle;
  }

  .price-table thead th {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
  }

  .price-table thead th:first-child,
  .price-table tbody th {
    width: 58%;
  }

  .price-table thead th:nth-child(2),
  .price-table thead th:nth-child(3),
  .price-table td:nth-child(2),
  .price-table td:nth-child(3) {
    width: 21%;
    text-align: center;
  }

  .price-table tbody th {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
  }

  .price-table td {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
  }
}
