:root {
  --tanne: #07583f;
  --tanne-dunkel: #033b2c;
  --orange: #ff8311;
  --terracotta: #c94f31;
  --sonne: #f5c33b;
  --creme: #fff9e9;
  --papier: #f3edda;
  --tinte: #19332a;
  --weiss: #ffffff;
  --rand: clamp(1.25rem, 4vw, 4.5rem);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tinte);
  background: var(--creme);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.seitenkopf {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem var(--rand);
}

.wortmarke {
  order: 2;
  width: clamp(150px, 17vw, 235px);
  aspect-ratio: 1.28 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--weiss);
  border-radius: 24% 43% 29% 38% / 37% 25% 42% 31%;
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
  transform: rotate(2deg);
  transition: transform 180ms ease;
}

.wortmarke:hover {
  transform: rotate(-1deg) scale(1.02);
}

.wortmarke img {
  width: 68%;
  margin: 0 auto;
  border-radius: 0;
}

.navigation {
  display: flex;
  gap: clamp(0.8rem, 2.2vw, 2.4rem);
  padding-top: 0.85rem;
}

.navigation a {
  color: var(--weiss);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgb(0 0 0 / 55%);
}

.navigation a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 0.25rem;
  background: var(--orange);
  border-radius: 100%;
  transition: width 180ms ease;
}

.navigation a:hover::after {
  width: 100%;
}

.held {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0 0 46% 8% / 0 0 9% 5%;
}

.held-bild,
.held-schleier {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.held-bild {
  object-fit: cover;
  object-position: center 56%;
}

.held-schleier {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(1 38 28 / 82%) 0%, rgb(1 38 28 / 45%) 48%, transparent 78%),
    linear-gradient(0deg, rgb(0 0 0 / 22%), transparent 45%);
}

.held-inhalt {
  width: min(730px, 72vw);
  padding: 10rem 0 7rem var(--rand);
  color: var(--weiss);
}

.kicker {
  margin: 0 0 1rem;
  color: var(--sonne);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker.dunkel {
  color: var(--terracotta);
}

h1,
h2,
blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 8.7vw, 8.6rem);
  text-wrap: balance;
}

h1 span {
  color: var(--sonne);
  font-style: italic;
}

.held-text {
  max-width: 600px;
  margin: 2rem 0 2.2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.knopf {
  display: inline-block;
  padding: 0.85rem 1.65rem 0.95rem;
  border-radius: 62% 38% 57% 43% / 46% 55% 45% 54%;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.knopf:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 9px 0 rgb(0 0 0 / 14%);
}

.knopf-hell {
  color: var(--tanne-dunkel);
  background: var(--sonne);
}

.knopf-dunkel {
  color: var(--weiss);
  background: var(--tanne-dunkel);
}

.held-stempel {
  position: absolute;
  right: 7vw;
  bottom: 5.5rem;
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--tanne-dunkel);
  background: var(--sonne);
  border-radius: 45% 55% 40% 60% / 55% 43% 57% 45%;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 0 0 8px rgb(245 195 59 / 28%);
}

.held-stempel span,
.held-stempel strong {
  display: block;
  line-height: 1.2;
}

.held-stempel span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.held-stempel strong {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}

.willkommen {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 12rem) var(--rand);
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(400px, 1.22fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
}

.willkommen::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8vw;
  top: 20%;
  width: 17rem;
  height: 32rem;
  background: #bdd074;
  border-radius: 34% 66% 41% 59% / 56% 38% 62% 44%;
  transform: rotate(18deg);
  opacity: 0.45;
}

h2 {
  color: var(--tanne);
  font-size: clamp(3.2rem, 6.3vw, 6.4rem);
}

.vorspann {
  margin: 2rem 0 1rem;
  color: var(--tanne-dunkel);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
}

.willkommen-text > p:not(.kicker) {
  max-width: 580px;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  color: var(--tanne);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.textlink span {
  color: var(--orange);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.textlink:hover span {
  transform: translateX(6px);
}

.willkommen-collage {
  position: relative;
  min-height: 680px;
}

.bildrahmen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgb(45 54 21 / 22%);
}

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

.terrasse {
  inset: 0 8% 14% 0;
  border: 11px solid var(--weiss);
  border-radius: 42% 58% 31% 69% / 50% 35% 65% 50%;
  transform: rotate(-2deg);
}

.terrasse figcaption {
  position: absolute;
  right: auto;
  bottom: auto;
  left: 14%;
  top: 5%;
  z-index: 3;
  width: 150px;
  aspect-ratio: 1.2;
  display: grid;
  place-content: center;
  color: var(--tanne-dunkel);
  background: var(--sonne);
  border: 5px solid var(--creme);
  border-radius: 61% 39% 57% 43% / 42% 52% 48% 58%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transform: rotate(5deg);
}

.vinothek-aussen {
  right: -2%;
  bottom: -2%;
  width: 46%;
  height: 42%;
  border: 9px solid var(--creme);
  border-radius: 59% 41% 65% 35% / 48% 64% 36% 52%;
  transform: rotate(5deg);
}

.sonne {
  position: absolute;
  z-index: -1;
  top: -2rem;
  right: 0;
  width: 170px;
  height: 136px;
  background: var(--orange);
  border-radius: 63% 37% 56% 44% / 42% 61% 39% 58%;
  transform: rotate(-9deg);
}

.zwischenruf {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: 4rem var(--rand);
  color: var(--weiss);
  background: var(--tanne);
  overflow: hidden;
  border-radius: 11% 3% 12% 5% / 13% 7% 16% 8%;
}

.zwischenruf-zeichnung {
  position: relative;
  padding: 1.5rem;
  background: var(--creme);
  border-radius: 54% 46% 62% 38% / 47% 56% 44% 53%;
  transform: rotate(-3deg);
}

.zwischenruf-zeichnung img {
  width: 66%;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

blockquote p {
  color: var(--sonne);
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  font-style: italic;
}

.krakel {
  position: absolute;
  border: 5px solid var(--orange);
  border-radius: 50%;
  opacity: 0.8;
}

.krakel-eins {
  right: -5rem;
  bottom: -8rem;
  width: 25rem;
  height: 17rem;
  transform: rotate(-15deg);
}

.krakel-zwei {
  right: 2rem;
  bottom: -5rem;
  width: 18rem;
  height: 10rem;
  transform: rotate(-9deg);
}

.weingut {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 12rem) var(--rand);
  display: grid;
  grid-template-columns: minmax(400px, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
}

.weingut-bild {
  position: relative;
}

.weingut-bild::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1.25rem 2rem 1rem -1.5rem;
  background: var(--terracotta);
  border-radius: 37% 63% 43% 57% / 53% 38% 62% 47%;
  transform: rotate(-3deg);
}

.weingut-bild > img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border: 9px solid var(--weiss);
  border-radius: 57% 43% 34% 66% / 41% 59% 41% 59%;
  box-shadow: 0 24px 60px rgb(45 54 21 / 20%);
}

.bild-notiz {
  position: absolute;
  right: -1.5rem;
  bottom: 3rem;
  display: inline-block;
  padding: 0.65rem 1.1rem;
  color: var(--tanne-dunkel);
  background: var(--sonne);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  transform: rotate(-4deg);
}

.foersterhof-schrift {
  width: 190px;
  margin-bottom: 2rem;
  mix-blend-mode: multiply;
  transform: rotate(-2deg);
}

.weingut-text > p:not(.kicker) {
  max-width: 570px;
  margin: 1.7rem 0 2.5rem;
  font-size: 1.08rem;
}

.angebot {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgb(7 88 63 / 18%);
}

.angebot li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 2px solid rgb(7 88 63 / 18%);
  color: var(--tanne-dunkel);
  font-weight: 800;
}

.angebot span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.ferien-teaser {
  position: relative;
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) var(--rand);
  overflow: hidden;
}

.ferien-teaser::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4rem;
  bottom: 2rem;
  width: 20rem;
  height: 12rem;
  background: var(--sonne);
  border-radius: 67% 33% 56% 44% / 48% 65% 35% 52%;
  opacity: 0.22;
  transform: rotate(-8deg);
}

.ferien-zimmer {
  position: relative;
  min-height: 540px;
  color: var(--weiss);
  background:
    radial-gradient(circle at 72% 24%, rgb(245 195 59 / 26%) 0 5.5rem, transparent 5.6rem),
    var(--tanne);
  border-radius: 39% 61% 44% 56% / 54% 39% 61% 46%;
  box-shadow: 0 25px 65px rgb(45 54 21 / 17%);
  transform: rotate(-1.5deg);
}

.ferien-zimmer > span {
  position: absolute;
  width: clamp(8.4rem, 13vw, 10.8rem);
  min-height: 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  color: var(--tanne-dunkel);
  background: var(--sonne);
  border: 4px solid var(--creme);
  border-radius: 48% 52% 42% 58% / 55% 43% 57% 45%;
  box-shadow: 0 12px 28px rgb(0 0 0 / 16%);
  line-height: 1.1;
  text-align: center;
}

.ferien-zimmer > span strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-style: italic;
}

.ferien-zimmer > span small {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.ferien-zimmer .zimmer-eins {
  top: 6%;
  left: 9%;
  transform: rotate(-8deg);
}

.ferien-zimmer .zimmer-zwei {
  top: 23%;
  right: 7%;
  background: var(--orange);
  transform: rotate(7deg);
}

.ferien-zimmer .zimmer-drei {
  top: 40%;
  left: 7%;
  background: var(--papier);
  transform: rotate(4deg);
}

.ferien-zimmer .zimmer-vier {
  right: 8%;
  bottom: 19%;
  background: #bdd074;
  transform: rotate(-5deg);
}

.ferien-zimmer .zimmer-fuenf {
  bottom: 3%;
  left: 24%;
  background: var(--terracotta);
  transform: rotate(8deg);
}

.ferien-teaser-text h2 {
  max-width: 720px;
}

.ferien-teaser-text .vorspann {
  max-width: 650px;
}

.ferien-kurzinfos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgb(7 88 63 / 18%);
  border-bottom: 2px solid rgb(7 88 63 / 18%);
}

.ferien-kurzinfos li {
  min-width: 0;
  padding: 1.2rem 1rem;
  border-right: 2px solid rgb(7 88 63 / 18%);
}

.ferien-kurzinfos li:first-child {
  padding-left: 0;
}

.ferien-kurzinfos li:last-child {
  border-right: 0;
}

.ferien-kurzinfos strong,
.ferien-kurzinfos span {
  display: block;
}

.ferien-kurzinfos strong {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-style: italic;
}

.ferien-kurzinfos span {
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.besuch {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  margin: 0 var(--rand) clamp(3rem, 6vw, 6rem);
  color: var(--weiss);
  background: var(--orange);
  border-radius: 7% 18% 8% 13% / 11% 19% 10% 14%;
  overflow: hidden;
}

.besuch-karte {
  padding: clamp(3rem, 7vw, 7rem);
}

.besuch-karte h2 {
  color: var(--weiss);
}

.zeiten {
  max-width: 680px;
  margin: 2.5rem 0 1rem;
  border-top: 2px solid rgb(255 255 255 / 48%);
}

.zeiten h3 {
  margin: 1.25rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

.zeiten div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 2px solid rgb(255 255 255 / 48%);
}

.zeiten strong {
  font-weight: 900;
  text-align: right;
}

.weingut-kontakt {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 2px solid rgb(7 88 63 / 18%);
}

.weingut-kontakt > strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reservierung-hinweis {
  margin: 1rem 0 2rem;
  font-weight: 800;
}

.besuch-bild {
  min-height: 540px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 3rem;
  color: var(--tanne-dunkel);
  background: var(--weiss);
  clip-path: ellipse(78% 92% at 65% 48%);
  text-align: center;
}

.besuch-bild img {
  width: min(390px, 90%);
  margin: 0 auto 2rem;
}

.kontaktdaten {
  max-width: 420px;
  margin: 0;
}

.kontaktdaten > strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--tanne);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
}

.kontaktdaten address {
  font-style: normal;
  line-height: 1.5;
}

.kontaktdaten p {
  margin: 0.9rem 0;
}

.kontaktdaten a {
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.soziale-medien {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 2px solid rgb(7 88 63 / 18%);
}

.soziale-medien span {
  flex-basis: 100%;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.soziale-medien .social-icon {
  position: relative;
  width: 2.7rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--weiss);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 180ms ease;
}

.soziale-medien .social-icon:hover {
  transform: translateY(-3px) rotate(-3deg);
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.social-x {
  background: #111111;
}

.social-instagram {
  background: radial-gradient(
    circle at 30% 105%,
    #ffd600 0 15%,
    #ff7a00 27%,
    #ff0169 50%,
    #d300c5 72%,
    #7638fa 100%
  );
}

.social-facebook {
  background: #1877f2;
}

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--rand);
  color: var(--creme);
  background: var(--tanne-dunkel);
  font-size: 0.9rem;
}

footer img {
  width: 150px;
  padding: 0.6rem;
  background: var(--creme);
  border-radius: 44% 56% 38% 62% / 55% 43% 57% 45%;
  mix-blend-mode: screen;
}

footer a {
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
}

/* Ferienwohnungen */

.ferien-seite {
  background:
    radial-gradient(circle at 94% 17%, rgb(245 195 59 / 28%) 0 11rem, transparent 11.1rem),
    radial-gradient(circle at 2% 68%, rgb(189 208 116 / 28%) 0 15rem, transparent 15.1rem),
    var(--creme);
}

.ferien-inhalt {
  overflow: hidden;
}

.ferien-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--rand) clamp(6rem, 11vw, 11rem);
}

.ferien-hero-text {
  max-width: 850px;
}

.ferien-hero-text h1 {
  color: var(--tanne);
  font-size: clamp(4.5rem, 9vw, 8.8rem);
}

.ferien-hero-text h1 span {
  color: var(--orange);
}

.ferien-hero-text > p:not(.kicker) {
  max-width: 660px;
  margin: 2rem 0 2.2rem;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.preise {
  color: var(--weiss);
  background: var(--tanne-dunkel);
  border-radius: 9% 3% 7% 4% / 3% 2% 4% 2%;
  padding: clamp(5rem, 9vw, 9rem) var(--rand);
}

.preise-kopf {
  max-width: 1180px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.preise-kopf h2 {
  color: var(--sonne);
}

.preise-kopf > p:last-child {
  max-width: 600px;
  margin: 1.8rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.wohnungs-raster {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 auto;
}

.wohnungskarte {
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--tinte);
  background: var(--creme);
  border-radius: 3rem 1.5rem 3.8rem 2rem;
  box-shadow: 0 22px 55px rgb(0 0 0 / 18%);
}

.wohnungskarte-klein {
  background: var(--papier);
  border-radius: 1.8rem 3.6rem 2rem 3.2rem;
  transform: translateY(2rem);
}

.wohnungskarte header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgb(7 88 63 / 16%);
}

.wohnungskarte h3 {
  margin: 0;
  color: var(--tanne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.betten {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.betten p {
  margin: 0;
}

.betten strong {
  display: block;
  color: var(--terracotta);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wohnung-vier-hinweis {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  color: var(--weiss);
  background: var(--terracotta);
  border-radius: 1rem 2rem 1rem 1.7rem;
  line-height: 1.45;
  transform: rotate(-1deg);
}

.wohnung-vier-hinweis strong {
  display: block;
}

.preisliste {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgb(7 88 63 / 16%);
}

.preisliste li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 2px solid rgb(7 88 63 / 16%);
}

.preisliste strong {
  color: var(--tanne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  white-space: nowrap;
}

.preis-hinweis {
  margin: 0.6rem 0 1.5rem;
  color: var(--tanne);
  font-size: 0.82rem;
  font-weight: 900;
}

.zusatzpreis {
  margin: 0;
}

.ferien-inklusive {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 12rem) var(--rand);
}

.ferien-inklusive h2 {
  color: var(--tanne);
}

.ferien-inklusive .kicker {
  color: var(--terracotta);
}

.ferien-inklusive ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgb(7 88 63 / 18%);
}

.ferien-inklusive li {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(220px, 1.35fr);
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 2px solid rgb(7 88 63 / 18%);
}

.ferien-inklusive strong {
  color: var(--orange);
}

.ferien-buchung {
  width: calc(100% - (2 * var(--rand)));
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(400px, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  padding: clamp(3rem, 7vw, 6rem);
  background: var(--sonne);
  border-radius: 4rem 2rem 5rem 2.5rem;
  box-shadow: 0 20px 55px rgb(45 54 21 / 12%);
}

.ferien-buchung h2 {
  color: var(--tanne-dunkel);
}

.buchung-text > p {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.buchung-aktionen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.7rem;
  min-width: 0;
}

.buchung-aktionen .textlink {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
}

/* Impressum */

.rechtliches {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 8%, rgb(255 131 17 / 34%) 0 9rem, transparent 9.1rem),
    radial-gradient(circle at 5% 54%, rgb(189 208 116 / 38%) 0 13rem, transparent 13.1rem),
    var(--creme);
}

.impressum-kopf {
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  padding: 1.5rem var(--rand);
}

.zurueck {
  color: var(--tanne);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.impressum-logo {
  width: clamp(130px, 14vw, 190px);
  display: grid;
  place-items: center;
  padding: 1rem 1.2rem;
  background: var(--weiss);
  border-radius: 28% 22% 30% 18% / 32% 26% 34% 24%;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  transform: rotate(2deg);
}

.impressum-logo img {
  width: 76%;
}

.impressum-inhalt {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--rand);
}

.impressum-intro {
  position: relative;
  max-width: 850px;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.impressum-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12rem;
  bottom: -2rem;
  width: 18rem;
  height: 5rem;
  background: var(--orange);
  border-radius: 61% 39% 72% 28% / 46% 63% 37% 54%;
  transform: rotate(-5deg);
  opacity: 0.18;
}

.impressum-intro h1 {
  color: var(--tanne);
  font-size: clamp(4.5rem, 10vw, 9rem);
}

.impressum-intro > p:last-child {
  margin: 1.8rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.impressum-raster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.impressum-karte {
  padding: clamp(1.7rem, 4vw, 3rem);
  background: rgb(255 255 255 / 82%);
  border: 2px solid rgb(7 88 63 / 10%);
  border-radius: 8% 4% 7% 5% / 9% 6% 8% 5%;
  box-shadow: 0 18px 45px rgb(45 54 21 / 8%);
}

.impressum-karte:nth-child(2n) {
  border-radius: 4% 9% 5% 8% / 7% 5% 9% 6%;
}

.impressum-karte.hauptdaten {
  color: var(--weiss);
  background: var(--tanne);
  transform: rotate(-1deg);
}

.impressum-karte.kontakt-rechtlich {
  color: var(--weiss);
  background: var(--orange);
  transform: rotate(0.8deg);
}

.impressum-karte h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.hauptdaten h2 {
  color: var(--orange);
}

.kontakt-rechtlich h2 {
  color: var(--weiss);
}

.impressum-karte address {
  font-style: normal;
}

.impressum-karte p {
  margin: 0;
}

.impressum-karte p + p {
  margin-top: 1rem;
}

.impressum-karte a {
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.kontakt-rechtlich a {
  color: var(--weiss);
  text-decoration-color: var(--tanne-dunkel);
}

.bildnachweis {
  color: var(--tanne);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 800;
}

.impressum-zurueck {
  margin-top: 3rem;
}

.impressum-footer {
  margin-top: 2rem;
}

@media (max-width: 940px) {
  .held {
    min-height: 820px;
  }

  .willkommen,
  .weingut {
    grid-template-columns: 1fr;
  }

  .willkommen-collage {
    min-height: 620px;
  }

  .zwischenruf {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .weingut-bild {
    max-width: 760px;
  }

  .ferien-teaser,
  .ferien-inklusive,
  .ferien-buchung {
    grid-template-columns: 1fr;
  }

  .ferien-zimmer {
    width: min(620px, 100%);
  }

  .ferien-teaser-text {
    order: -1;
  }

  .wohnungs-raster {
    max-width: 720px;
    grid-template-columns: 1fr;
  }

  .wohnungskarte-klein {
    transform: none;
  }

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

  .besuch-bild {
    min-height: 460px;
    clip-path: ellipse(78% 70% at 51% 62%);
  }
}

@media (max-width: 680px) {
  .seitenkopf {
    padding-top: 0.75rem;
  }

  .navigation {
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.35rem;
  }

  .navigation a {
    font-size: 0.68rem;
  }

  .navigation a::after {
    display: none;
  }

  .wortmarke {
    width: 128px;
  }

  .impressum-kopf {
    align-items: flex-start;
  }

  .impressum-logo {
    width: 115px;
    padding: 0.7rem;
  }

  .impressum-inhalt {
    padding-top: 3rem;
  }

  .impressum-raster {
    grid-template-columns: 1fr;
  }

  .impressum-karte {
    border-radius: 2rem 1.2rem 2.4rem 1.5rem;
  }

  .held {
    min-height: 760px;
    border-radius: 0 0 25% 5% / 0 0 5% 3%;
  }

  .held-bild {
    object-position: 59% center;
  }

  .held-schleier {
    background: linear-gradient(90deg, rgb(1 38 28 / 84%), rgb(1 38 28 / 25%));
  }

  .held-inhalt {
    width: 94vw;
    padding-top: 11rem;
    padding-bottom: 8rem;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.1rem);
  }

  .held-stempel {
    right: 1.2rem;
    bottom: 2.5rem;
    width: 104px;
  }

  .held-stempel strong {
    font-size: 1.25rem;
  }

  .willkommen,
  .weingut {
    padding-top: 6rem;
    padding-bottom: 6rem;
    gap: 3.5rem;
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .willkommen-collage {
    min-height: 470px;
  }

  .terrasse {
    inset: 0 3% 13% 0;
    border-width: 6px;
  }

  .terrasse figcaption {
    width: 118px;
    font-size: 0.88rem;
  }

  .vinothek-aussen {
    width: 52%;
    height: 38%;
    border-width: 6px;
  }

  .zwischenruf {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-radius: 8% 3% 9% 4% / 4% 2% 5% 2%;
  }

  .zwischenruf-zeichnung {
    width: min(380px, 95%);
  }

  .weingut-bild > img {
    min-height: 440px;
  }

  .bild-notiz {
    right: 0;
    bottom: 1.5rem;
  }

  .ferien-teaser {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .ferien-zimmer {
    min-height: 430px;
  }

  .ferien-kurzinfos {
    grid-template-columns: 1fr;
  }

  .ferien-kurzinfos li,
  .ferien-kurzinfos li:first-child {
    padding: 0.9rem 0;
    border-right: 0;
    border-bottom: 2px solid rgb(7 88 63 / 18%);
  }

  .ferien-kurzinfos li:last-child {
    border-bottom: 0;
  }

  .ferien-hero {
    padding-top: 3rem;
  }

  .ferien-hero-text h1 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

  .preise {
    border-radius: 3rem 1.2rem 3.5rem 1.5rem;
  }

  .wohnungskarte {
    padding: 2rem 1.4rem;
    border-radius: 2rem 1.2rem 2.4rem 1.4rem;
  }

  .preisliste li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .ferien-inklusive li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .ferien-buchung {
    width: calc(100% - 1.4rem);
    padding: 3rem 1.25rem;
    border-radius: 2rem 1rem 2.5rem 1.2rem;
  }

  .ferien-buchung h2 {
    font-size: clamp(2.7rem, 13vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .buchung-text {
    min-width: 0;
  }

  .buchung-aktionen {
    align-items: flex-start;
    flex-direction: column;
  }

  .zeiten div {
    flex-direction: column;
    gap: 0.1rem;
  }

  .zeiten strong {
    text-align: left;
  }

  .besuch {
    margin-right: 0.7rem;
    margin-left: 0.7rem;
    border-radius: 6% 11% 5% 8% / 3% 5% 3% 4%;
  }

  .besuch-karte {
    padding: 4rem 1.5rem;
  }

  .besuch-bild {
    min-height: 410px;
    padding: 5rem 1.5rem 3rem;
    clip-path: ellipse(92% 67% at 50% 67%);
  }

  footer {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }

  footer img {
    width: 100px;
  }

  .footer-links {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
