@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos-400.woff2") format("woff2");
}

@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tinos-400i.woff2") format("woff2");
}

@font-face {
  font-family: "Tinos";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos-700.woff2") format("woff2");
}

@font-face {
  font-family: "Tinos";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tinos-700i.woff2") format("woff2");
}

:root {
  --text: #333333;
  --muted: #bbbbbb;
  --accent: #006699;
  --accent-shadow: #004b70;
  --nav-active: #999999;
  --line: #ebebeb;
  --bg: #ffffff;
  --header-h: 140px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Tinos", "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.75;
}

strong {
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1099;
  background: #fff;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 24px 20px;
}

.nav-toggle,
.nav-close {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg,
.nav-close svg {
  display: block;
}

.logo {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.logo img {
  height: auto;
  max-height: 66px;
  width: auto;
  max-width: min(213px, 58vw);
  margin: 0 auto;
}

.sidetray {
  position: fixed;
  top: 0;
  left: 0;
  width: 383px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1200;
  padding: 95px 100px 40px;
  transform: translateX(-105%);
  transition: transform 220ms ease;
  overflow: auto;
}

.sidetray.is-open {
  transform: translateX(0);
}

.sidetray .nav-close {
  left: 34px;
  top: 58px;
  transform: none;
}

.sidetray ul {
  list-style: none;
  margin: 70px 0 28px;
  padding: 0;
}

.sidetray li {
  margin: 0 0 10px;
}

.sidetray .menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-style: italic;
  letter-spacing: 2.4px;
  line-height: 1.35;
}

.sidetray .menu a[aria-current="page"] {
  color: var(--nav-active);
}

.sidetray .menu-legal {
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

#buchen,
#gallerie,
#kontakt {
  scroll-margin-top: 160px;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 1150;
  opacity: 0;
  pointer-events: none;
}

.backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-nav-open {
  overflow: hidden;
}

.page {
  max-width: 1520px;
  margin: 0 auto;
  padding: 170px 120px 0;
}

.hero {
  max-width: 1300px;
  margin: 12px auto 72px;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.prose {
  max-width: 980px;
  margin: 0 auto;
}

.prose h1,
.legal-title {
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.3;
  text-align: center;
  margin: 12px 0 36px;
}

.prose h2,
.intro h2 {
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.27px;
  line-height: 1.3;
  margin: 0 0 22px;
}

.prose p,
.intro p {
  margin: 0 0 25.5px;
}

.intro p:last-child {
  margin-bottom: 0;
}

.btn-wrap {
  text-align: center;
  margin: 36px 0 48px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 3px;
  box-shadow: 0 2px 0 var(--accent-shadow);
  line-height: 1.15;
}

.btn:hover {
  opacity: 0.92;
  color: #fff;
}

.details {
  margin: 8px auto 48px;
}

.details p {
  margin: 0 0 12px;
}

.details ul {
  margin: 0;
  padding: 0 0 0 22px;
}

.details li {
  margin: 0 0 8px;
}

.details li p {
  margin: 0;
}

.rule {
  width: 182px;
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 36px auto;
}

.gallery {
  max-width: 1300px;
  margin: 12px auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery button {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gallery button::after {
  content: "Großansicht";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery button:hover::after,
.gallery button:focus-visible::after {
  opacity: 1;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.contact {
  margin: 8px auto 28px;
  max-width: 980px;
}

.map-wrap {
  max-width: 980px;
  margin: 8px auto 56px;
}

.map-frame {
  position: relative;
  overflow: hidden;
  background: #1c1c1c;
  min-height: 442px;
}

.map-preview {
  width: 100%;
  height: 442px;
  object-fit: cover;
  display: block;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 32px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-align: center;
}

.map-consent p {
  margin: 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.45;
}

.map-consent-links {
  font-size: 14px !important;
}

.map-consent a {
  color: #fff;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 442px;
  border: 0;
}

.site-footer {
  max-width: 1520px;
  margin: 0 auto;
  padding: 28px 120px 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
}

.legal-page .legal-title {
  margin-bottom: 8px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px 40px;
  max-width: 1300px;
  margin: 28px auto 40px;
}

.legal-grid h2 {
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.27px;
  line-height: 1.3;
  margin: 0;
}

.legal-grid h3 {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.69px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 22px 0 13px;
}

.legal-grid h3:first-child {
  margin-top: 0;
}

.legal-grid p {
  margin: 0 0 17px;
}

.legal-grid ul {
  margin: 0 0 17px;
  padding-left: 20px;
}

.quote {
  max-width: 980px;
  margin: 12px auto 48px;
  text-align: center;
  color: var(--accent);
  font-size: 28px;
  font-style: italic;
  line-height: 1.3;
}

.quote p {
  margin: 0;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px 14px 28px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  margin: 0;
}

.cookie button {
  flex: none;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 2px;
  padding: 11px 15px;
  font-family: "Tinos", "Times New Roman", Times, serif;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  padding: 8px;
}

.lightbox-close {
  top: 16px;
  right: 22px;
  font-size: 42px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

@media (max-width: 1100px) {
  .page {
    padding: 150px 40px 0;
  }

  .site-footer {
    padding: 28px 40px 48px;
  }

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

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .prose h1,
  .legal-title {
    font-size: 42px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 96px;
    padding: 22px 16px 14px;
  }

  .nav-toggle,
  .sidetray .nav-close {
    left: 12px;
  }

  .page {
    padding: 110px 18px 0;
  }

  .sidetray {
    width: 100%;
    padding: 88px 40px 32px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .prose h1,
  .legal-title {
    font-size: 34px;
    letter-spacing: 0.3px;
  }

  .prose h2,
  .intro h2,
  .legal-grid h2 {
    font-size: 22px;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 12px;
    padding: 16px;
  }

  .cookie button {
    align-self: flex-end;
  }

  .site-footer {
    padding: 24px 18px 96px;
    font-size: 15px;
  }

  .quote {
    font-size: 20px;
  }

  .map-frame,
  .map-preview,
  .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }

  .map-consent {
    padding: 16px;
    gap: 14px;
  }

  .map-consent p {
    font-size: 14px;
  }
}
