:root {
  --col: calc(100vw / 36);
  --red: #cf1237;
  --red-dark: #a80e2c;
  --dark: #272727;
  --grey: #929292;
  --border: #cfcfcf;
}

@font-face {
  font-family: "Diatype";
  src: url("../fonts/ABCDiatype-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sabon";
  src: url("../fonts/SabonLTPro-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sabon";
  src: url("../fonts/SabonLTPro-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sabon Next";
  src: url("../fonts/SabonNextLTPro-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 0.9259259259vw;
}

@media (min-width: 1728px) {
  html {
    font-size: 16px;
  }
  :root {
    --col: calc(1728px / 36);
  }
  #app {
    max-width: 1728px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero, .bg-red, .red-section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
  }
}
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 14rem;
}

#leistungen {
  scroll-margin-top: 0;
}

input, textarea, select, button {
  letter-spacing: inherit;
}

body {
  color: var(--red);
  background-color: white;
  overflow-x: hidden;
  font-family: "Diatype", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  min-height: 100svh;
  -webkit-font-smoothing: auto;
  letter-spacing: 0.01em;
}

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

[hidden] {
  display: none !important;
}

h1, h2, h3, h4 {
  font-weight: normal;
  margin: 0;
  font-size: inherit;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.s-1 {
  width: calc(var(--col) * 1);
}

.s-2 {
  width: calc(var(--col) * 2);
}

.s-3 {
  width: calc(var(--col) * 3);
}

.s-4 {
  width: calc(var(--col) * 4);
}

.s-5 {
  width: calc(var(--col) * 5);
}

.s-6 {
  width: calc(var(--col) * 6);
}

.s-7 {
  width: calc(var(--col) * 7);
}

.s-8 {
  width: calc(var(--col) * 8);
}

.s-9 {
  width: calc(var(--col) * 9);
}

.s-10 {
  width: calc(var(--col) * 10);
}

.s-11 {
  width: calc(var(--col) * 11);
}

.s-12 {
  width: calc(var(--col) * 12);
}

.s-13 {
  width: calc(var(--col) * 13);
}

.s-14 {
  width: calc(var(--col) * 14);
}

.s-15 {
  width: calc(var(--col) * 15);
}

.s-16 {
  width: calc(var(--col) * 16);
}

.s-17 {
  width: calc(var(--col) * 17);
}

.s-18 {
  width: calc(var(--col) * 18);
}

.s-19 {
  width: calc(var(--col) * 19);
}

.s-20 {
  width: calc(var(--col) * 20);
}

.s-21 {
  width: calc(var(--col) * 21);
}

.s-22 {
  width: calc(var(--col) * 22);
}

.s-23 {
  width: calc(var(--col) * 23);
}

.s-24 {
  width: calc(var(--col) * 24);
}

.s-25 {
  width: calc(var(--col) * 25);
}

.s-26 {
  width: calc(var(--col) * 26);
}

.s-27 {
  width: calc(var(--col) * 27);
}

.s-28 {
  width: calc(var(--col) * 28);
}

.s-29 {
  width: calc(var(--col) * 29);
}

.s-30 {
  width: calc(var(--col) * 30);
}

.s-31 {
  width: calc(var(--col) * 31);
}

.s-32 {
  width: calc(var(--col) * 32);
}

.s-33 {
  width: calc(var(--col) * 33);
}

.s-34 {
  width: calc(var(--col) * 34);
}

.s-35 {
  width: calc(var(--col) * 35);
}

.s-36 {
  width: calc(var(--col) * 36);
}

.d-f {
  display: flex;
  flex-wrap: wrap;
}

.d-if {
  display: inline-flex;
}

.d-f-c {
  flex-direction: column;
}

.nowrap {
  flex-wrap: nowrap;
}

.a-s {
  align-items: flex-start;
  align-content: flex-start;
}

.a-c {
  align-items: center;
}

.a-e {
  align-items: flex-end;
}

.j-s {
  justify-content: flex-start;
}

.j-c {
  justify-content: center;
}

.j-e {
  justify-content: flex-end;
}

.j-sb {
  justify-content: space-between;
}

.f-1 {
  flex: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.w-100 {
  width: 100%;
}

.w-half {
  width: 50%;
}

.m-l-a {
  margin-left: auto;
}

.m-r-a {
  margin-right: auto;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.pe-none {
  pointer-events: none;
}

.gap-xs {
  gap: 0.5rem;
}

.gap-s {
  gap: 1rem;
}

.gap-col {
  gap: calc(var(--col) * 1.5);
}

.gap-1 {
  gap: calc(var(--col) * 1);
}

.gap-2 {
  gap: calc(var(--col) * 2);
}

.gap-3 {
  gap: calc(var(--col) * 3);
}

.gap-4 {
  gap: calc(var(--col) * 4);
}

.gap-5 {
  gap: calc(var(--col) * 5);
}

.gap-6 {
  gap: calc(var(--col) * 6);
}

.gap-7 {
  gap: calc(var(--col) * 7);
}

.gap-8 {
  gap: calc(var(--col) * 8);
}

.gap-9 {
  gap: calc(var(--col) * 9);
}

.m-l-1 {
  margin-left: calc(var(--col) * 1);
}

.m-l-2 {
  margin-left: calc(var(--col) * 2);
}

.m-l-3 {
  margin-left: calc(var(--col) * 3);
}

.m-l-4 {
  margin-left: calc(var(--col) * 4);
}

.m-l-5 {
  margin-left: calc(var(--col) * 5);
}

.m-l-6 {
  margin-left: calc(var(--col) * 6);
}

.m-l-7 {
  margin-left: calc(var(--col) * 7);
}

.m-l-8 {
  margin-left: calc(var(--col) * 8);
}

.m-l-9 {
  margin-left: calc(var(--col) * 9);
}

.m-l-10 {
  margin-left: calc(var(--col) * 10);
}

.m-l-11 {
  margin-left: calc(var(--col) * 11);
}

.m-l-12 {
  margin-left: calc(var(--col) * 12);
}

.m-l-13 {
  margin-left: calc(var(--col) * 13);
}

.m-l-14 {
  margin-left: calc(var(--col) * 14);
}

.m-l-15 {
  margin-left: calc(var(--col) * 15);
}

.m-l-16 {
  margin-left: calc(var(--col) * 16);
}

.m-l-17 {
  margin-left: calc(var(--col) * 17);
}

.m-l-18 {
  margin-left: calc(var(--col) * 18);
}

.m-l-19 {
  margin-left: calc(var(--col) * 19);
}

.m-l-20 {
  margin-left: calc(var(--col) * 20);
}

.m-l-21 {
  margin-left: calc(var(--col) * 21);
}

.m-l-22 {
  margin-left: calc(var(--col) * 22);
}

.m-l-23 {
  margin-left: calc(var(--col) * 23);
}

.m-l-24 {
  margin-left: calc(var(--col) * 24);
}

.m-t-xs {
  margin-top: 1em;
}

.m-t-s {
  margin-top: 1.8em;
}

.m-t-col {
  margin-top: calc(var(--col) * 1.5);
}

.m-t-1 {
  margin-top: calc(var(--col) * 1);
}

.m-t-2 {
  margin-top: calc(var(--col) * 2);
}

.m-t-3 {
  margin-top: calc(var(--col) * 3);
}

.m-t-4 {
  margin-top: calc(var(--col) * 4);
}

.m-t-5 {
  margin-top: calc(var(--col) * 5);
}

.m-t-6 {
  margin-top: calc(var(--col) * 6);
}

.m-t-7 {
  margin-top: calc(var(--col) * 7);
}

.m-t-8 {
  margin-top: calc(var(--col) * 8);
}

.m-t-9 {
  margin-top: calc(var(--col) * 9);
}

.m-b-xs {
  margin-bottom: 1em;
}

.m-b-s {
  margin-bottom: 1.8em;
}

.m-b-col {
  margin-bottom: calc(var(--col) * 1.5);
}

.m-b-1 {
  margin-bottom: calc(var(--col) * 1);
}

.m-b-2 {
  margin-bottom: calc(var(--col) * 2);
}

.m-b-3 {
  margin-bottom: calc(var(--col) * 3);
}

.m-b-4 {
  margin-bottom: calc(var(--col) * 4);
}

.m-b-5 {
  margin-bottom: calc(var(--col) * 5);
}

.m-b-6 {
  margin-bottom: calc(var(--col) * 6);
}

.m-b-7 {
  margin-bottom: calc(var(--col) * 7);
}

.m-b-8 {
  margin-bottom: calc(var(--col) * 8);
}

.m-b-9 {
  margin-bottom: calc(var(--col) * 9);
}

.p-1 {
  padding: calc(var(--col) * 3);
}

.px-1 {
  padding-left: calc(var(--col) * 3);
  padding-right: calc(var(--col) * 3);
}

.px-h {
  padding-left: calc(var(--col) * 1.5);
  padding-right: calc(var(--col) * 1.5);
}

.pr-h {
  padding-right: calc(var(--col) * 1.5);
}

.m-l-h {
  margin-left: calc(var(--col) * 1.5);
}

.f-xs {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.f-s {
  font-size: 1rem;
}

.f-m {
  font-size: 1.3rem;
  line-height: 1.2;
}

.f-l {
  font-size: 1.41rem;
  line-height: 1.2;
}

.f-xl {
  font-size: 2.29rem;
  line-height: 1.2;
}

.f-xxl {
  font-size: 5rem;
  line-height: 1.1;
}

.serif {
  font-family: "Sabon", "Georgia", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 600;
}

strong, b {
  font-weight: 600;
}

.serif strong, .serif b, .serif .bold {
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  letter-spacing: 0.03em;
}

.caps {
  text-transform: uppercase;
}

.t-c {
  text-align: center;
}

.t-r {
  text-align: right;
}

.lh-wide {
  line-height: 1.65;
}

.lh-mid {
  line-height: 1.4;
}

.lh-snug {
  line-height: 1.175;
}

.c-red {
  color: var(--red);
}

.c-dark {
  color: var(--dark);
}

.c-white {
  color: white;
}

.c-grey {
  color: var(--grey);
}

.bg-red {
  background-color: var(--red);
}

.bg-white {
  background-color: white;
}

.btn {
  padding: 0.8em 2.8em 0.65em;
  white-space: nowrap;
  appearance: none;
  border: none;
  text-align: center;
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  background-color: var(--red);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn:hover {
  text-decoration: none;
  background-color: var(--red-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: white;
}

.btn-white {
  background: white;
  color: var(--red);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.85);
}

.btn-white-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}
.btn-white-outline:hover {
  background: white;
  color: var(--red);
}

.section-bullet {
  width: 1.5em;
  height: 1.5em;
}
.section-bullet-white {
  background-color: white;
}

.section-heading {
  gap: 0.4em;
}

.side-nav {
  width: calc(var(--col) * 4);
}

.intro-text {
  width: calc(var(--col) * 16);
  margin-left: auto;
  margin-right: auto;
}

.philo-heading {
  width: calc(var(--col) * 7.5);
  background-color: white;
  z-index: 2;
  padding-bottom: 0.75em;
}
.philo-heading h2 {
  letter-spacing: 0;
}

.philo-cols {
  width: calc(var(--col) * 19.5);
  gap: 43px;
}

.philo-col {
  width: calc(var(--col) * 9);
  letter-spacing: 0.01em;
}
.philo-col p + p {
  margin-top: 1.2em;
}

.organizer-top {
  gap: calc(var(--col) * 3);
}

.organizer-heading-area {
  margin-top: 2.15rem;
  width: calc(var(--col) * 14);
}

.organizer-subtitle {
  width: calc(var(--col) * 10.8);
  margin: 0 auto;
}

.organizer-adc {
  width: calc(var(--col) * 9.3);
}

.organizer-wedding {
  width: calc(var(--col) * 9.4);
  margin-left: calc(var(--col) * 9);
  margin-top: calc(var(--col) * 2.5);
}

.contact-top-r {
  width: calc(var(--col) * 6);
}

.locations-text {
  width: calc(var(--col) * 13.5);
  text-align: center;
}

.locations-img {
  width: calc(var(--col) * 16.5);
  margin-top: -32rem;
  margin-left: 34rem;
}

.locations-img:not(.locations-img-desktop) {
  display: none;
}

.abc-panel[hidden], .menu-panel[hidden] {
  display: none;
}

.abc-pair {
  width: calc(var(--col) * 10);
}

.abc-pair .btn {
  margin-top: 0.8em;
  margin-bottom: 1.5em;
}

.abc-letter {
  font-size: 5.85rem;
  line-height: 0.85;
  width: calc(var(--col) * 2.5);
}

.menu-tabs {
  margin-left: calc(var(--col) * 8);
}

.menu-grid {
  width: calc(var(--col) * 25);
  gap: calc(var(--col) * 2.5);
  letter-spacing: 0.01em;
}
.menu-grid > .f-1 {
  max-width: calc((var(--col) * 25 - var(--col) * 2.5) / 2);
}

.abc-tabs {
  margin-left: calc(var(--col) * 14.5);
}

.abc-content {
  margin-left: calc(var(--col) * 12);
}

#announcement-bar {
  padding: 1em 1rem;
}
#announcement-bar .announcement-heading {
  font-family: "Sabon", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
}

.has-announcement header {
  top: var(--announcement-h, 0rem);
  transition: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}

.header-inner {
  padding: var(--col) var(--col);
}

.header-box a {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--dark);
  background: white;
  border: none;
  border-radius: 999px;
  padding: 0.15em 1.2em 0;
  height: 2.2em;
  overflow: hidden;
}
.header-box a::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.15em;
  background: var(--red);
  color: white;
  border-radius: 999px;
  clip-path: inset(var(--clip-top, 100%) 0 var(--clip-bot, 0) 0);
}
.header-box a:hover {
  text-decoration: none;
}

.menu-toggle {
  pointer-events: auto;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: white;
  padding: 0;
  margin-left: 2rem;
  gap: 0.6em;
  position: relative;
}

.menu-toggle-alt {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  font-weight: 600;
  position: absolute;
  inset: 0;
  color: var(--red);
  clip-path: inset(100% 0 0 0);
}
.menu-toggle-alt .hamburger-lines {
  gap: 0.45em;
  width: 2rem;
}
.menu-toggle-alt .hamburger-lines span {
  display: block;
  height: 2px;
  background-color: var(--red);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-lines {
  gap: 0.45em;
  width: 2rem;
  padding: 2px 0;
}
.hamburger-lines span {
  display: block;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  top: var(--announcement-h-full, 0rem);
  z-index: 99;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay-nav a {
  display: block;
  text-align: center;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.39;
}
.menu-overlay-nav a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.menu-overlay-nav a.m-b-2 {
  margin-bottom: 1em;
}

@keyframes menuFallRot {
  from {
    rotate: 0deg;
  }
  to {
    rotate: var(--fall-rot);
  }
}
.menu-falling-items {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.menu-fall {
  position: absolute;
  top: 0;
}
.menu-fall img {
  display: block;
  width: 100%;
  animation: menuFallRot var(--fall-rot-dur) linear infinite;
  animation-play-state: paused;
}
.menu-fall .menu-fall-clone {
  position: absolute;
  left: 0;
  top: -100vh;
}

.menu-fall--bottle-1 {
  --fall-rot: 360deg;
  --fall-rot-dur: 400s;
  left: 10%;
  width: 14rem;
}

.menu-fall--bottle-2 {
  --fall-rot: -360deg;
  --fall-rot-dur: 180s;
  left: 22%;
  width: 24rem;
}
.menu-fall--bottle-2 img {
  animation-delay: -12s;
}

.menu-fall--pot {
  --fall-rot: 360deg;
  --fall-rot-dur: 280s;
  right: 12%;
  width: 26rem;
}

.menu-open {
  overflow: hidden;
}
.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.menu-open .menu-fall img {
  animation-play-state: running;
}
.menu-open .menu-toggle {
  color: white;
}
.menu-open .hamburger-lines span {
  background-color: white;
}
.menu-open .header-box a {
  color: var(--dark);
  background: white;
}
.menu-open .header-box a::after {
  clip-path: inset(100% 0 0 0) !important;
}
.menu-open .menu-toggle-alt {
  clip-path: inset(100% 0 0 0) !important;
}
.menu-open .hamburger-lines span:nth-child(1) {
  transform: translateY(calc(0.45em + 2px)) rotate(45deg);
}
.menu-open .hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger-lines span:nth-child(3) {
  transform: translateY(calc(-0.45em - 2px)) rotate(-45deg);
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  height: 100svh;
}

.hero {
  flex: 1;
}

.hero-image,
.hero-arrow {
  position: absolute;
}

.hero-image {
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  height: 85%;
  animation: hero-bob 6s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes hero-bob {
  0%, 100% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-50%, -50.8%, 0) rotate(-0.2deg);
  }
}
@keyframes banner-bob {
  0%, 100% {
    transform: translate3d(-50%, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-50%, -4%, 0) rotate(0.5deg);
  }
}
.hero-illustration {
  height: 100%;
  width: auto;
  display: block;
  transform: rotate(10deg);
  will-change: transform;
}

.hero-banner {
  position: absolute;
  bottom: 9%;
  left: 41%;
  transform: translateX(-50%);
  animation: banner-bob 6s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: 90%;
}

.hero-banderole {
  width: 100%;
  height: auto;
  transform: rotate(-18.4deg);
  will-change: transform;
}

.hero-schriftzug {
  position: absolute;
  top: 49%;
  left: 53.5%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: auto;
  will-change: transform;
}

.hero-arrow {
  width: 1.5rem;
  height: auto;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
}

.sticky-seal-wrap {
  position: sticky;
  top: 3.6rem;
  width: 6.51rem;
  float: left;
  clear: left;
  margin-top: 4rem;
  margin-left: 6.995rem;
  z-index: 89;
}

.sticky-seal {
  width: 100%;
  display: block;
}

.sticky-seal-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  display: block;
  clip-path: inset(100% 0 0 0);
}

.sticky-logo {
  position: sticky;
  top: 2.3rem;
  width: 21rem;
  float: left;
  clear: left;
  margin-top: -8rem;
  margin-left: -0.25rem;
  z-index: 90;
}

.sticky-banderole {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  transform: rotate(-24.5deg);
}

.sticky-schriftzug {
  position: absolute;
  top: 0.1rem;
  left: 46.75%;
  transform: translateX(-50%);
  width: 53%;
  height: auto;
  z-index: 3;
}

.service-links a {
  display: inline-block;
  padding-bottom: 0;
  border-bottom: 1px solid var(--red);
  margin-right: 2em;
  margin-bottom: 0.8em;
}
.service-links a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.gallery {
  position: relative;
  z-index: 5;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  cursor: grab;
  background: white;
}
.gallery:active {
  cursor: grabbing;
}

.strip-slider .splide__track {
  will-change: transform;
  backface-visibility: hidden;
}

.strip-slider .splide__list {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.strip-slider .splide__slide img {
  height: calc(var(--col) * 8.55);
  width: auto;
  display: block;
  transform: translateZ(0);
}

.tab-item {
  width: calc(var(--col) * 2.88);
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  white-space: normal;
  display: block !important;
  padding: 0 0.9em 0 1.47em;
}

.tab-dot {
  width: 1.12em;
  height: 1.12em;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  background: transparent;
  transition: background 0.2s;
  display: inline-block;
  vertical-align: middle;
  margin-left: -1.47em;
  margin-right: 0.35em;
}

.tab-item.active .tab-dot,
.tab-item:hover .tab-dot {
  background-color: var(--red);
}

.menu-label {
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  background: white;
}

.menu-desc {
  line-height: 1.5;
  background: white;
  padding-bottom: 1em;
}

.menu-grid .m-b-1 {
  margin-bottom: calc(var(--col) * 0.5);
}

.red-section {
  background-color: var(--red);
  color: white;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.red-section a {
  color: white;
}

.intro-section {
  padding: 16rem calc(var(--col) * 3);
}

.intro-buttons {
  position: absolute;
  top: calc(var(--col) * 1.35);
  right: calc(var(--col) * 0.9);
}

.contact-pad {
  padding: calc(var(--col) * 1.3) calc(var(--col) * 5.25);
  padding-left: calc(var(--col) * 6);
}

.kontakt-pad {
  padding: calc(var(--col) * 3) calc(var(--col) * 3);
}

.section-mb {
  margin-bottom: calc(var(--col) * 4.5);
}

#app:has(.legal-page) main {
  flex: 0 0 auto;
}
#app:has(.legal-page) footer {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
#app:has(.legal-page) #kontakt {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#app:has(.legal-page) .sticky-seal-wrap {
  position: fixed;
  float: none;
  clear: none;
  top: 3.6rem;
  left: max(calc((100vw - 1728px) / 2), 0px);
  margin-top: 0;
  margin-left: calc(21rem * 0.345 - 0.25rem);
}
#app:has(.legal-page) .sticky-logo {
  position: fixed;
  float: none;
  clear: none;
  top: 2.3rem;
  left: max(calc((100vw - 1728px) / 2), 0px);
  margin-top: 0;
  margin-left: -0.25rem;
}

#app:has(.legal-page) {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.legal-privacy-copy {
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--col) * 18);
  text-align: left;
}
.legal-privacy-copy p + p {
  margin-top: 1em;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 0.55em 1.2em;
  border: none;
  background: white;
  color: black;
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
  appearance: none;
  letter-spacing: 0.02em;
  height: 2.625em;
}
.contact-form input {
  text-align: center;
}
.contact-form select {
  text-align: center;
  text-align-last: center;
}
.contact-form input::placeholder, .contact-form textarea::placeholder, .contact-form select {
  color: black;
  font-family: "Sabon Next", "Sabon", "Georgia", serif;
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-form input:focus::placeholder, .contact-form textarea:focus::placeholder {
  color: #bebebe;
}
.contact-form .placeholder-grey::placeholder {
  color: #bebebe;
}
.contact-form textarea {
  resize: vertical;
  min-height: 7.25em;
  height: auto;
}

.contact-privacy {
  margin-top: calc(var(--col) * 1.2);
  line-height: 1.35;
}

.form-group {
  margin-bottom: 1rem;
}

.contact-submit {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  font-family: "Sabon", "Georgia", serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.contact-submit .contact-label {
  position: relative;
}
.contact-submit .contact-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}
.contact-submit .contact-arrow {
  font-size: 1.85rem;
  vertical-align: middle;
  margin-left: -0.05em;
  display: inline-block;
  transition: transform 0.3s ease;
  transform: translateY(-0.05em);
}
.contact-submit:hover .contact-label::after {
  width: 100%;
}
.contact-submit:hover .contact-arrow {
  transform: translateY(-0.05em) translateX(0.15em);
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  border-top: 0.35em solid black;
  pointer-events: none;
}

.side-nav {
  left: calc(var(--col) * 3 + 1rem);
  top: 23rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.side-nav a {
  margin-bottom: 0;
}

.locations-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2em 1em;
  margin-top: -4rem;
}
.locations-list li {
  line-height: 1.2;
  padding-left: 1.1em;
  text-indent: -1.1em;
}

.loc-dot {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
  margin-right: 0.4em;
}

.kontakt-address {
  line-height: 1.5;
}

.kontakt-gap {
  margin-top: 0.6em;
}

.imprint-credits {
  margin-top: 1.75rem;
  font-family: "Diatype", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

#footer-icon {
  width: calc(var(--col) * 1.5);
}

.footer-pad {
  padding: 2rem 0;
}

.deco-vine {
  position: absolute;
  top: 0;
  right: calc(var(--col) * 3);
  width: calc(var(--col) * 12);
  height: auto;
  z-index: 1;
}

.deco-bottles {
  will-change: transform;
  transform: translateY(var(--deco-y, 0px)) rotate(var(--deco-r, 0deg));
}

.deco-pots {
  width: calc(var(--col) * 15);
  margin-top: -7rem;
  will-change: transform;
  transform: translateY(var(--deco-y, 0px)) rotate(var(--deco-r, 0deg));
  margin-bottom: -5rem;
  margin-right: calc(var(--col) * 1);
}

.deco-knife {
  position: absolute;
  width: 14rem;
  height: auto;
  left: 29rem;
  top: 20rem;
  z-index: 1;
  will-change: transform;
  transform: translateY(var(--knife-y, 0px)) rotate(var(--knife-r, 0deg));
}

.deco-dash {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
}

.deco-dash-m {
  display: none;
}

.deco-dash-intro {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.deco-dash-strip1 {
  bottom: 1rem;
  left: 15.5%;
  width: 13.06%;
}

.deco-dash-philo {
  top: 1.5rem;
  left: 16.7rem;
  width: 20.2%;
}

.deco-dash-philo-2 {
  top: 20rem;
  left: 41.9560185185%;
  width: 11.67%;
}

.deco-dash-menu-1 {
  top: calc(var(--col) * -5.5);
  left: 60.7638888889%;
  width: 6.5972222222%;
}

.deco-dash-menu-2 {
  top: calc(var(--col) * 0.9);
  left: 68.287037037%;
  width: 2.2569444444%;
}

.organizer-heading-area {
  overflow: visible;
}

.deco-dash-org-1 {
  top: -49.5rem;
  left: 0.4em;
  width: 47rem;
}

.deco-dash-org-2 {
  top: 35rem;
  left: 27%;
  width: 9%;
}

.deco-dash-abc-1 {
  top: -12rem;
  left: 5rem;
  width: 10rem;
}

.deco-dash-abc-2 {
  top: 3rem;
  left: 5.5rem;
  width: 20.5rem;
}

.deco-dash-loc-1 {
  top: -19rem;
  left: 22%;
  width: 7.7rem;
}

.deco-dash-loc-2 {
  bottom: -21rem;
  left: 31%;
  width: 14.5rem;
}

#menue {
  margin-top: 9rem;
  z-index: 2;
  position: relative;
}
#menue .section-heading {
  background: white;
  position: relative;
  z-index: 2;
  padding-bottom: 0.75em;
}

#abc {
  margin-top: 12rem;
}

#locations {
  margin-top: 12rem;
}

.page-template-page-catering .menu-toggle,
.page-template-page-ueber .menu-toggle,
.page-impressum-datenschutz .menu-toggle {
  color: var(--red);
}
.page-template-page-catering .hamburger-lines span,
.page-template-page-ueber .hamburger-lines span,
.page-impressum-datenschutz .hamburger-lines span {
  background-color: var(--red);
}
.page-template-page-catering .menu-toggle-alt,
.page-template-page-ueber .menu-toggle-alt,
.page-impressum-datenschutz .menu-toggle-alt {
  color: white;
}
.page-template-page-catering .menu-toggle-alt .hamburger-lines span,
.page-template-page-ueber .menu-toggle-alt .hamburger-lines span,
.page-impressum-datenschutz .menu-toggle-alt .hamburger-lines span {
  background-color: white;
}
.page-template-page-catering .header-box a,
.page-template-page-ueber .header-box a,
.page-impressum-datenschutz .header-box a {
  --clip-top: 0px;
}

.catering-hero {
  text-align: center;
  max-width: calc(var(--col) * 20);
  margin-left: auto;
  margin-right: auto;
}

.catering-hero-pad {
  padding-top: calc(var(--col) * 4);
}

.catering-hero .catering-subtitle {
  margin-top: 1.2em;
}

.catering-section {
  display: flex;
  align-items: flex-start;
}

.catering-heading-area {
  flex-shrink: 0;
  text-align: center;
}

.catering-heading-area h3 {
  line-height: 1.175;
  background: white;
}

.catering-heading-area .catering-section-subtitle {
  margin-top: 0.6em;
  line-height: 1.175;
}

.catering-body {
  display: flex;
}

.catering-body-s2 {
  margin-top: 7rem;
}

.catering-col p {
  background: white;
}

.catering-col-bullets li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
}
.catering-col-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #cf1237;
}

.catering-cta-area {
  text-align: left;
}

.catering-packages {
  max-width: calc(var(--col) * 28);
  margin-left: auto;
  margin-right: auto;
}

.catering-packages table {
  width: 100%;
  border-collapse: collapse;
}

.catering-packages th,
.catering-packages td {
  text-align: left;
  padding: 0.8em 1.2em;
  border-bottom: 1px solid #cfcfcf;
}

.catering-packages th {
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #929292;
}

.catering-packages td strong {
  color: #cf1237;
}

.catering-deco-mid {
  mix-blend-mode: multiply;
}
.catering-deco-mid img {
  width: 100%;
  height: auto;
}
.catering-deco-mid.deco-pots {
  margin-bottom: -25rem;
}
.catering-deco-mid.deco-bottles {
  margin-bottom: -28rem;
}

.catering-images {
  display: flex;
  gap: calc(var(--col) * 0.5);
  overflow: hidden;
  width: 100%;
}

.catering-images img {
  flex: 1;
  min-width: 0;
  height: calc(var(--col) * 8.5);
  object-fit: cover;
  border-radius: 0;
}

.catering-dash {
  position: absolute;
}

.catering-dash-1 {
  right: 21rem;
  bottom: -10rem;
  z-index: 0;
  width: 8rem;
}

.catering-dash-2 {
  right: 35rem;
  top: -12.5rem;
  width: 9rem;
}

.catering-dash-3 {
  left: 2rem;
  top: -20.5rem;
  width: 11rem;
  z-index: -1;
}

.catering-dash-4 {
  left: -11rem;
  bottom: -13rem;
  width: 17rem;
}

.catering-dash-5 {
  left: 42rem;
  bottom: -11rem;
  width: 8rem;
}

.ueber-hero {
  max-width: calc(var(--col) * 22);
}

.ueber-hero-body {
  margin-top: 0;
}

.ueber-3col .catering-col p {
  background: white;
}

.team-section {
  position: relative;
}

.team-heading-area {
  position: relative;
  max-width: calc(var(--col) * 20);
  margin-left: auto;
  margin-right: auto;
}

.team-subtitle {
  margin-top: 0.6em;
  line-height: 1.175;
}

.team-intro {
  max-width: calc(var(--col) * 16);
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--col) * 1.25);
  max-width: calc(var(--col) * 28);
  margin-right: auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-role {
  line-height: 1.2;
  opacity: 0.85;
}

.team-email {
  line-height: 1.2;
}
.team-email a {
  color: #cf1237;
  text-decoration: none;
}
.team-email a:hover {
  text-decoration: underline;
}

.page-template-page-ueber .catering-deco-mid.deco-pots {
  margin-bottom: -29rem;
  z-index: 21;
  margin-left: auto;
  margin-right: 6rem;
  margin-top: 1rem;
}
.page-template-page-ueber .catering-dash-3 {
  left: 9rem;
  top: -24.25rem;
  width: 13rem;
  z-index: -1;
}
.page-template-page-ueber .team-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(var(--col) * 24);
}
.page-template-page-ueber .team-member:nth-child(4) {
  grid-column-start: 2;
}
.page-template-page-ueber .catering-dash-5 {
  left: 37.5rem;
  bottom: -12rem;
  width: 8rem;
}
.page-template-page-ueber .catering-dash-1 {
  bottom: -10.5rem;
}

@media (max-aspect-ratio: 800/1000) {
  .catering-hero {
    max-width: 100%;
    margin-top: 3rem !important;
    padding: 4rem 1.5rem 3rem;
    clear: both;
  }
  .catering-section {
    flex-direction: column;
    gap: 2rem !important;
    margin-top: 3rem !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .catering-cta-area + .catering-section {
    margin-top: 6rem !important;
    margin-bottom: 8rem;
    z-index: 2;
  }
  .catering-heading-area,
  .catering-col,
  .catering-col-bullets {
    width: 100% !important;
  }
  .catering-heading-area {
    margin-top: 3rem;
  }
  .page-template-page-catering .strip-slider {
    margin: 5rem 0 6rem;
  }
  .page-template-page-catering .btn.m-t-1 {
    margin-top: 1.6rem;
  }
  .catering-body {
    flex-direction: column;
    gap: 1.5rem;
  }
  .catering-body-s2 {
    margin-top: 0;
  }
  .catering-cta-area {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0 1.5rem;
    text-align: center;
    z-index: 1;
  }
  .catering-cta-area p.italic {
    padding: 0 2rem;
  }
  .catering-images {
    gap: 0.5rem;
    margin: 2rem 0;
    overflow-x: auto;
  }
  .catering-images img {
    flex: 0 0 70%;
    height: 12.5rem;
  }
  .catering-packages {
    max-width: 100%;
    overflow-x: auto;
  }
  .catering-packages th, .catering-packages td {
    padding: 0.6em 0.8em;
    font-size: 0.9em;
  }
  .catering-deco-mid {
    mix-blend-mode: normal;
  }
  .catering-deco-mid.deco-bottles {
    margin-bottom: -5rem;
    width: 29rem;
    z-index: 2;
  }
  .catering-deco-mid.deco-pots {
    margin-bottom: -3rem;
    z-index: 2;
  }
  .catering-dash-1 {
    right: 10rem;
    bottom: -8rem;
  }
  .catering-dash-2 {
    right: 10rem;
    top: -9.5rem;
  }
  .catering-deco-mid.deco-pots + .catering-cta-area .catering-dash-3 {
    left: 2rem;
    top: -29.5rem;
    width: 16rem;
  }
  .catering-deco-mid.deco-bottles + .catering-cta-area .catering-dash-3 {
    left: 4rem;
    top: -18.5rem;
    width: 10rem;
  }
  .catering-dash-4 {
    left: 13rem;
    bottom: -10rem;
    width: 14rem;
  }
  .catering-dash-5 {
    left: 12rem;
    bottom: -11rem;
    width: 8rem;
  }
  .page-template-page-ueber .catering-dash-1 {
    bottom: -7.5rem;
  }
  .page-template-page-ueber .catering-deco-mid.deco-pots {
    margin-bottom: 0rem;
    z-index: 21;
    margin-left: auto;
    margin-right: 6rem;
    margin-top: -4rem;
  }
  .page-template-page-ueber .catering-dash-3 {
    left: 2rem;
    top: -25.25rem;
    width: 14rem;
    z-index: -1;
  }
  .page-template-page-ueber .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-page-ueber .team-member:nth-child(4) {
    grid-column-start: auto;
  }
  .ueber-hero-body {
    margin-top: 1.2em;
  }
  .team-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 4rem !important;
  }
  .team-heading-area {
    max-width: 100%;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
}
@media (max-aspect-ratio: 800/1000) {
  html {
    font-size: 2.962962963vw;
  }
  .px-1 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-h {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .m-t-9 {
    margin-top: 3rem;
  }
  .m-t-1 {
    margin-top: 1rem;
  }
  .m-b-1 {
    margin-bottom: 1rem;
  }
  .m-b-2 {
    margin-bottom: 1.5rem;
  }
  .section-mb {
    margin-bottom: 2rem;
  }
  #menue {
    margin-top: 6rem;
  }
  #menue > .m-b-1 {
    margin-bottom: 4rem !important;
  }
  #menue .menu-grid .m-b-1 {
    margin-bottom: 1rem !important;
  }
  #menue .section-heading {
    padding-bottom: 0;
  }
  #organizer {
    margin-top: 6rem;
  }
  #abc, #locations {
    margin-top: 3rem;
  }
  #app:has(.legal-page) #kontakt {
    margin-top: 9rem;
  }
  .m-l-6, .m-l-9, .m-l-12, .m-l-18, .m-l-24 {
    margin-left: 0 !important;
  }
  .header-inner {
    padding: 1rem 1.5rem;
  }
  .header-box {
    position: fixed;
    bottom: var(--pills-bottom, 6rem);
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.3s ease;
  }
  .menu-overlay-nav {
    font-size: 1.8rem;
  }
  .menu-fall--bottle-1 {
    width: 7rem;
    left: -4%;
  }
  .menu-fall--bottle-2 {
    width: 12rem;
    left: -1%;
  }
  .menu-fall--pot {
    width: 14rem;
    right: -8%;
  }
  .hero-wrap {
    position: relative;
  }
  .hero-image {
    height: 75% !important;
    left: 55% !important;
  }
  .sticky-seal-wrap {
    top: 3rem;
    margin-left: 6.495rem;
  }
  .sticky-logo {
    top: 1.75rem;
    margin-left: -0.75rem;
  }
  .side-nav {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 12rem;
    margin-bottom: 6rem;
    padding-left: 6rem;
  }
  .intro-section {
    padding: 2.5rem 1.5rem;
  }
  .intro-text {
    width: 100%;
  }
  .intro-buttons {
    position: static;
    margin-top: 1.5rem;
  }
  .service-links {
    flex-wrap: wrap !important;
    justify-content: center;
  }
  .service-links a {
    margin-right: 1em;
  }
  .service-links {
    margin-top: 2rem;
    margin-bottom: 8rem;
  }
  #philosophie {
    flex-direction: column;
    scroll-margin-top: 10rem;
  }
  .philo-heading {
    width: 100%;
    margin-bottom: 4rem;
    padding-bottom: 0;
  }
  .philo-heading .section-heading {
    margin-left: calc(50% - 0.5em);
  }
  .philo-cols {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    margin-left: 0;
  }
  .philo-col {
    width: 100%;
  }
  .deco-knife {
    display: block;
    position: static;
    width: 46%;
    margin: 0 auto;
  }
  .strip-slider {
    margin: 8rem 0 6rem;
  }
  .strip-slider .splide__slide img {
    height: 18rem;
  }
  .tab-item {
    width: auto;
  }
  .menu-tabs {
    margin-left: 0;
    gap: 0.5em;
    flex-wrap: wrap;
  }
  .menu-tabs .tab-item {
    width: 7.75rem;
    margin-bottom: 0.5em;
  }
  .abc-tabs {
    margin-left: 0;
    gap: 0.5em;
  }
  .menu-grid {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }
  .menu-grid > .f-1 {
    max-width: 100%;
  }
  .menu-grid .s-3 {
    width: 7.75rem;
    min-width: 7.75rem;
  }
  .menu-label {
    flex-shrink: 0;
  }
  .organizer-top {
    flex-direction: column;
    gap: 4rem;
  }
  .organizer-heading-area {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .organizer-subtitle {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .organizer-adc {
    width: 66%;
    margin-left: auto;
  }
  .organizer-wedding {
    width: 66%;
    margin-left: 0;
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
  .contact-pad {
    padding: 1.5rem;
  }
  .contact-form .d-f.m-b-s {
    flex-direction: column;
  }
  .contact-form .contact-top-r {
    width: 100%;
    margin-top: 1rem;
  }
  .contact-form .s-6 {
    width: 100%;
  }
  .contact-form .d-f.a-s.gap-1 {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-form .s-12 {
    width: 100%;
  }
  #abc {
    margin-top: 6rem;
  }
  #abc > .m-b-2 {
    margin-bottom: 5rem !important;
  }
  .abc-tabs {
    flex-wrap: wrap;
    margin-left: 6rem !important;
  }
  .abc-tabs .tab-item {
    width: 5.5rem;
    margin-bottom: 1.25em;
  }
  .abc-content {
    flex-direction: column !important;
    margin-left: 0;
    gap: 0 !important;
  }
  .abc-content .d-f.m-b-s {
    margin-bottom: 1.5rem;
  }
  .abc-pair {
    width: 100%;
  }
  .abc-letter {
    font-size: 4rem;
    width: 6rem;
    min-width: 6rem;
    text-align: center;
    margin-top: 0.1em;
  }
  .abc-content .serif.f-m {
    width: 60%;
  }
  #locations {
    margin-top: 6rem;
  }
  #locations > .d-f {
    flex-direction: column;
  }
  #locations .section-heading {
    justify-content: center;
  }
  #locations .section-heading h2 {
    font-size: 2.5rem;
  }
  .locations-text {
    width: 100% !important;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .locations-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem !important;
    margin-bottom: 0;
  }
  .locations-img-desktop {
    display: none !important;
  }
  .locations-img:not(.locations-img-desktop) {
    display: block;
    width: 130%;
    margin-left: -30%;
    margin-top: -3rem !important;
    margin-bottom: 0;
  }
  .deco-bottles {
    display: block;
  }
  .kontakt-pad {
    padding: 2rem 1.5rem;
    margin-top: 3.5rem;
  }
  #footer-icon {
    width: calc(var(--col) * 5);
  }
  .locations-img-desktop .deco-bottles {
    display: none;
  }
  .deco-pots {
    display: block;
    width: 120%;
    margin: 0 0 4rem -30%;
  }
  .deco-vine {
    display: none;
  }
  .deco-dash {
    display: none;
  }
  .deco-dash-m {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 0;
    height: auto;
  }
  .deco-dash-m-17 {
    top: -6.5rem;
    left: 34%;
    width: 27%;
  }
  .deco-dash-m-18 {
    right: 42%;
    bottom: -1rem;
    width: 11%;
  }
  .deco-dash-m-19 {
    top: 1.5rem;
    left: 51.5%;
    width: 3.6%;
  }
  .deco-dash-m-21 {
    top: 2rem;
    left: 8%;
    width: 5%;
  }
  .deco-dash-m-27 {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    overflow: visible;
  }
  .deco-dash-m-22 {
    top: -37rem;
    left: 26%;
    width: 51%;
  }
  .deco-dash-m-24 {
    top: -7rem;
    left: 5.5%;
    width: 44%;
  }
  .deco-dash-m-25 {
    bottom: -32.5rem;
    left: 31.5%;
    width: 39%;
  }
  .deco-dash-m-26 {
    position: absolute;
    width: 29%;
    left: 13rem;
    bottom: -4rem;
  }
  .deco-dash-m-23 {
    bottom: -7rem;
    right: 9%;
    width: 29%;
  }
  .f-xxl {
    font-size: 3rem;
  }
  .f-xl {
    font-size: 1.8rem;
  }
}
