:root {
  --ink: #1f2a2e;
  --muted: #8b8e94;
  --paper: #fff;
  --soft: #eee;
  --line: #d9d2c5;
  --accent: #ffa33e;
  --accent-2: #337ab7;
  --shadow: 0 18px 45px rgba(31, 42, 46, 0.16);
  --nav-scroll-offset: 68px;
}

@font-face {
  font-family: "Open Sans Mainau";
  src: url("../fonts/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aramisi";
  src: url("../fonts/aramisi.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mainau";
  src: url("../fonts/mainau.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Icomoon Mainau";
  src: url("../fonts/icomoon/icomoon1ff5.woff") format("woff"),
    url("../fonts/icomoon/icomoon1ff5.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--paper);
  font-family: "Open Sans Mainau", Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

img {
  display: block;
  max-width: 100%;
}

a,
.link-button {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}

.site-header {
  --header-height: 112px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  --header-height: 68px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 24px;
  transition: min-height 260ms ease;
}

.brand {
  display: block;
  width: 150px;
  height: 40px;
  color: var(--ink);
  background: url("../img/logo.png") left top / 150px 80px no-repeat;
  text-decoration: none;
  transform: translateY(14px);
  transition: background-position 220ms ease, transform 260ms ease;
}

.brand img {
  display: block;
  width: 150px;
  height: 40px;
  opacity: 0;
}

.site-header.is-scrolled .brand,
.site-header.is-menu-open .brand {
  background-position: left bottom;
  transform: translateY(0);
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(14px);
  transition: color 180ms ease, transform 260ms ease;
}

.site-header.is-scrolled .nav-links a,
.site-header.is-menu-open .nav-links a {
  color: rgba(0, 0, 0, 0.72);
  transform: translateY(0);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent);
}

.site-header.is-scrolled .nav-links a.is-active,
.site-header.is-menu-open .nav-links a.is-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only),
.site-header.is-menu-open .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.hero {
  min-height: 0;
  background: #111;
}

.hero-slider,
.gallery-panel {
  position: relative;
  overflow: hidden;
  background: #101515;
}

.hero-slider {
  height: 750px;
  min-height: 750px;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero .slide {
  height: 750px;
  min-height: 750px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .slide img {
  position: absolute;
  inset: 0;
}

.hero .slide::after,
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  height: 750px;
  min-height: 750px;
  padding: 90px 24px 48px;
  color: #fff;
  text-align: center;
}

.hero .primary-heading,
.eyebrow {
  display: block;
  color: var(--accent);
  font-family: "Aramisi", "Open Sans Mainau", sans-serif;
  font-size: clamp(2.2em, 4.2vw, 3.75em);
  font-style: normal;
  line-height: 1.2;
}

.hero .primary-heading {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: -0.22em;
}

h1,
h2,
h3,
h4 {
  line-height: 1.18;
}

.hero h1,
.hero .hero-title {
  margin: 0;
  font-family: "Open Sans Mainau", Arial, sans-serif;
  font-size: clamp(1.8em, 3.2vw, 2.8em);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
  top: -1.1vw;
}

.hero .mainau {
  color: inherit;
}

.hero .subsub-heading {
  display: block;
  margin-top: 0.02em;
  font-size: clamp(0.62em, 1.65vw, 0.8em);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.hero .sub-heading {
  max-width: 720px;
  margin: 2px auto 0;
  font-size: clamp(1.0em, 1.25vw, 1.45em);
  font-weight: 700;
  line-height: 1.18;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

#welcome,
#auswahl,
#preise-details,
#buchung,
#galerie,
#kontakt,
.anchor-target {
  scroll-margin-top: var(--nav-scroll-offset);
}

.narrow {
  max-width: 860px;
}

.section {
  padding: 60px 0;
}

.muted {
  background: var(--soft);
}

.intro {
  padding-top: 0em;
  padding-bottom: 0em;
}

.intro .eyebrow,
.intro .section-title,
.intro .lead {
  text-align: center;
}

.intro .section-title,
.split-section .section-title,
.banner .section-title,
.contact .section-title {
  margin: 0 0 12px;
  font-family: "Open Sans Mainau", Arial, sans-serif;
  font-size: clamp(1.8em, 3.2vw, 2.8em);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #000;
}

.banner .section-title {
  color: #fff;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.0em, 1.2vw, 1.2em);
  font-weight: 600;
}

.two-col,
.apartments {
  display: grid;
  gap: 52px;
}

.two-col {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.split-section {
  padding-top: 2em;
}

.split-section .eyebrow {
  margin-top: 0;
}

.split-section .section-title {
  margin-bottom: 20px;
}

.clean-list {
  padding-left: 1.2em;
}

.clean-list li + li,
.apartment li + li {
  margin-top: 8px;
}

.gallery-panel {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-panel .slide {
  height: 100%;
}

.gallery-panel figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 18px 18px 44px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
}

.carousel-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 44px;
  height: 54px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.32);
  border: 0;
  transform: translateY(-50%);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-bullets {
  position: absolute;
  z-index: 6;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  justify-content: center;
  gap: 9px;
  pointer-events: none;
}

.carousel-bullet {
  width: 11px;
  height: 11px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-bullet:hover,
.carousel-bullet:focus {
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.16);
}

.carousel-bullet.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

.banner {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background-position: center var(--parallax-y, 50%);
  background-size: cover;
  background-repeat: no-repeat;
  will-change: background-position;
}

.banner-auswahl {
  background-image: url("../img/flusspanorama.webp");
}

.banner-buchung {
  background-image: url("../img/faehre.webp");
}

.banner-galerie {
  background-image: url("../img/volkach-rathausplatz.webp");
}

.banner .wrap {
  position: relative;
  z-index: 1;
}

#preise {
  position: relative;
  z-index: 2;
  margin-top: clamp(-240px, -12vw, -120px);
  background: transparent;
}

.gallery-overlap {
  --gallery-bg-start: clamp(110px, 15vw, 220px);
  position: relative;
  z-index: 2;
  margin-top: -15%;
  background: transparent;
  isolation: isolate;
}

.gallery-overlap::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: var(--gallery-bg-start) 0 0;
  background: var(--soft);
}

.gallery-overlap > .wrap {
  position: relative;
  z-index: 1;
}

.banner .eyebrow {
  color: var(--accent);
}

.banner p:last-child {
  margin: 0;
  font-size: clamp(1.2em, 1.4vw, 1.8em);
  font-weight: 700;
}

.apartments {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.apartment {
  display: block;
}

.apartment-heading {
  margin: 0 0 18px;
  text-align: center;
}

.apartment-heading .apartment-title {
  margin: 0;
  color: #747474;
  font-family: "Open Sans Mainau", Arial, sans-serif;
  font-size: clamp(1.2em, 1.4vw, 1.8em);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.apartment-heading p {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.apartment-copy {
  padding-top: 44px;
}

.apartment h3 {
  margin-top: 26px;
}

details {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  padding: 16px 18px;
  background: #f4f4f4;
  font-weight: 700;
  cursor: pointer;
}

details[open] summary {
  border-bottom: 1px solid var(--line);
}

details > :not(summary) {
  padding-inline: 18px;
}

.calendar-details > :not(summary) {
  padding-inline: 8px;
}

details > :last-child {
  padding-bottom: 18px;
}

.details-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.details-grid ul {
  padding-left: 1.1em;
}

.calendar-label {
  margin: 5px 0 14px;
}

.embed,
.map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.map {
  background: #e6e0d6;
}

.embed {
  height: 520px;
}

.embed iframe,
.map iframe,
.modal-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.zoom-btn,
.primary-btn {
  border: 0;
  color: #fff;
  background: var(--accent);
}

.zoom-btn {
  position: absolute;
  right: 14px;
  bottom: 50px;
  z-index: 7;
  padding: 9px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.booking-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form label,
.date-range-field > label {
  color: var(--muted);
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

label small {
  color: var(--muted);
  font-size: 85%;
  font-weight: 400;
}

.label-caption {
  color: inherit;
}

.required-mark {
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 50px 11px 12px;
  color: #555;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  font-size: 14px;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: none;
  outline: none;
}

textarea {
  height: 46px;
  resize: vertical;
}

.form-field {
  position: relative;
  display: block;
}

.form-field .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  color: var(--muted);
  font-family: "Icomoon Mainau";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.form-field-textarea .icon {
  top: 23px;
  transform: none;
}

.icon-home22::before {
  content: "\ea82";
}

.icon-calendar::before {
  content: "\e979";
}

.icon-add-user::before {
  content: "\e957";
}

.icon-user2::before {
  content: "\eaf2";
}

.icon-mail::before {
  content: "\e9da";
}

.icon-phone::before {
  content: "\e9f4";
}

.icon-address::before {
  content: "\e958";
}

.icon-location2::before {
  content: "\eac8";
}

.icon-edit::before {
  content: "\e999";
}

.date-range-field {
  display: grid;
  gap: 7px;
  position: relative;
}

#datepicker {
  cursor: pointer;
}

.range-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: min(360px, calc(100vw - 36px));
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.range-picker[hidden] {
  display: none;
}

.range-picker-header,
.range-picker-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.range-picker-title {
  font-weight: 800;
  text-align: center;
}

.range-picker-nav,
.range-picker-clear {
  min-height: 0;
  padding: 6px 9px;
  color: var(--ink);
  background: #f4f0e8;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.range-picker-clear {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.range-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 12px;
}

.range-picker-weekday {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.range-picker-day {
  min-height: 38px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
}

.range-picker-day:hover,
.range-picker-day:focus {
  border-color: var(--accent);
}

.range-picker-day.is-today {
  border-color: rgba(113, 60, 32, 0.35);
}

.range-picker-day.is-in-range {
  background: #f2e5d8;
}

.range-picker-day.is-selected {
  color: #fff;
  background: var(--accent);
}

.wide {
  grid-column: span 2;
}

.honeypot {
  display: none;
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
}

.consent span {
  color: inherit;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 5px;
  padding: 0;
  accent-color: var(--accent);
  appearance: auto;
}

.primary-btn {
  min-height: 52px;
  border-radius: 6px;
  font-weight: 700;
}

.primary-btn:hover {
  background: #713c20;
}

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gallery-cards article {
  background: #fff;
  overflow: hidden;
}

.gallery-cards button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.gallery-cards img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  transition: opacity 180ms ease;
}

.gallery-cards button:hover img {
  opacity: 0.86;
}

.gallery-card-text {
  padding: 20px;
}

.gallery-card-text h3 {
  margin: 0 0 10px;
  color: #000;
  font-family: "Open Sans Mainau", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.gallery-card-text p {
  margin-bottom: 18px;
}

.gallery-card-text p:last-child {
  margin-bottom: 0;
}

.gallery-cards .gallery-text-link {
  display: inline-block;
  width: auto;
  padding-bottom: 5px;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  border-bottom: 2px solid var(--accent);
}

.gallery-cards .gallery-text-link:hover {
  color: var(--accent);
}

.contact {
  padding-top: 0em;
  text-align: center;
}

.map {
  height: 450px;
  margin-top: 24px;
}

.footer {
  color: #f8f3eb;
  background: #263234;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-top: 48px;
  padding-bottom: 38px;
}

.footer h3 {
  margin-top: 0;
  font-size: 22px;
}

.footer a,
.footer .link-button {
  color: #f1c46a;
  text-decoration: none;
}

.footer a:hover,
.footer .link-button:hover {
  color: var(--accent);
}

.copyright {
  padding: 18px 24px;
  color: #cbd4d4;
  text-align: center;
  background: #1f2a2e;
}

.link-button {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  text-align: inherit;
  text-decoration: underline;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: none;
  padding: 10px 12px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.to-top:hover {
  background: #713c20;
}

.to-top.is-visible {
  display: block;
}

.cookie-policy {
  position: fixed;
  z-index: 110;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  max-width: 720px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-policy p {
  margin: 0;
  font-size: 14px;
}

.cookie-policy > button,
.modal-close {
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.modal {
  width: min(1000px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
}

.modal-iframe {
  width: min(60vw, 860px);
  height: min(80vh, 820px);
  margin-top: 100px;
  margin-right: 20px;
  margin-left: auto;
  background: #c9c9c3;
  opacity: .97;
  border-radius: 0;
  padding: 15px 10px 10px 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}

.modal-iframe::backdrop {
  background: transparent;
}

.modal-iframe .modal-close {
  top: 8px;
  right: 8px;
}

.image-modal img {
  width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
}

.success-box {
  padding: 72px 28px 38px;
  text-align: center;
}

.success-box img {
  max-width: 260px;
  margin: 22px auto;
}

.gallery-modal {
  background: #101515;
}

.modal-gallery {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
}

.modal-gallery .carousel-btn {
  height: 72px;
}

@media (max-width: 900px) {
  :root {
    --nav-scroll-offset: 64px;
  }

  .site-header {
    --header-height: 72px;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    --header-height: 64px;
  }

  .brand,
  .nav-links a {
    transform: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-header:not(.is-menu-open):not(.is-scrolled) .nav-toggle {
    border-color: rgba(255, 255, 255, 0.7);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .two-col,
  .apartments,
  .apartment,
  .form-grid,
  .gallery-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .embed {
    height: 720px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

  .form-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .wrap {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .embed {
    height: 1280px;
  }

  #preise {
    margin-top: -52px;
  }

  .gallery-overlap {
    --gallery-bg-start: 52px;
    margin-top: -52px;
  }

  .intro {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .split-section {
    padding-top: 3em;
  }

  .banner {
    min-height: 300px;
  }

  .hero-slider,
  .hero .slide,
  .hero figcaption {
    height: 750px;
    min-height: 750px;
  }

  .modal-iframe {
    width: calc(100vw - 24px);
    height: calc(100vh - 48px);
    margin: 24px auto;
  }

  .booking-form {
    padding: 20px;
  }

  .cookie-policy {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero-slider,
  .hero .slide,
  .hero figcaption {
    height: 350px;
    min-height: 350px;
  }
}
