/* =====================================================
   FERIENHAUS WIESENBLICK – EINHEITLICHES DESIGN-SYSTEM
===================================================== */

:root {
  --ink: #253127;
  --ink-soft: #475149;
  --muted: #6f756d;
  --cream: #f6f0e6;
  --cream-deep: #ebe1d3;
  --paper: #fffdf9;
  --paper-soft: rgba(255, 253, 249, 0.82);
  --green: #52644a;
  --green-dark: #2c3c2e;
  --wine: #71324a;
  --wine-dark: #59263a;
  --line: rgba(37, 49, 39, 0.13);
  --line-light: rgba(255, 255, 255, 0.68);
  --shadow-sm: 0 10px 28px rgba(42, 45, 36, 0.08);
  --shadow: 0 22px 55px rgba(42, 45, 36, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: min(1120px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 5% 18%, rgba(113, 50, 74, 0.045), transparent 28rem),
    radial-gradient(circle at 95% 48%, rgba(82, 100, 74, 0.055), transparent 30rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(113, 50, 74, 0.3);
  outline-offset: 4px;
}

::selection {
  background: rgba(113, 50, 74, 0.18);
}

/* =====================================================
   EINHEITLICHE KARTEN
===================================================== */

.cards.three{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}

.card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;

  height:100%;
  padding:34px;

  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,253,249,.82);
  box-shadow:0 14px 34px rgba(48,39,27,.06);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background-color .28s ease;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(113,50,74,.28);
  background:#fffdf9;
  box-shadow:0 22px 46px rgba(48,39,27,.12);
}

.card h3{
  margin:0 0 16px;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:1.6rem;
  font-weight:500;
  line-height:1.2;
  transition:color .28s ease;
}

.card:hover h3{
  color:var(--wine);
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

/* Mobile */

@media (max-width:920px){

  .cards.three{
    grid-template-columns:1fr;
  }

}
/* =====================================================
   WIEDERKEHRENDE ELEMENTE
===================================================== */

.eyebrow {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading .eyebrow,
.benefits-heading .eyebrow {
  margin-bottom: 12px;
}

.section h2,
.benefits-heading h2,
.price-box h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--green-dark);
}

.section-heading > p:last-child,
.benefits-heading > p:last-child {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease,
    border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 10px 24px rgba(113, 50, 74, 0.2);
}

.button-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 14px 30px rgba(113, 50, 74, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =====================================================
   KOPFBEREICH UND MENÜ
===================================================== */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(to bottom, rgba(20, 27, 21, 0.45), transparent);
}

.nav {
  width: min(1240px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.language-switch {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.language-switch a {
  opacity: 0.58;
  transition: opacity 0.2s ease;
}

.language-switch a.active,
.language-switch a:hover {
  opacity: 1;
}

.text-brand {
  justify-self: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  justify-self: end;
  position: relative;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(37, 49, 39, 0.18);
  background: rgba(255, 253, 249, 0.9);
}

.nav-toggle[aria-expanded="true"] span {
  background: var(--green-dark);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1100;
  width: min(440px, 90vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 72px 58px;
  background:
    linear-gradient(rgba(255, 253, 249, 0.95), rgba(246, 240, 230, 0.97)),
    var(--paper);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-panel.active {
  transform: translateX(0);
}

.nav-panel a {
  position: relative;
  width: max-content;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-panel a:hover {
  color: var(--wine);
  transform: translateX(6px);
}

.nav-panel a:hover::after {
  transform: scaleX(1);
}

/* =====================================================
   HAUS
===================================================== */

.house-section{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:70px;
    align-items:center;
}

.house-content .eyebrow{
    margin-bottom:18px;
}

.house-content h2{
    margin-bottom:32px;
}

.house-text{
    margin-bottom:20px;
    color:var(--muted);
    font-size:1.05rem;
    line-height:1.8;
}

.house-image{
    height:100%;
}

.house-image img{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 24px 55px rgba(0,0,0,.14);
}

@media(max-width:920px){

    .house-section{
        grid-template-columns:1fr;
        gap:42px;
    }

    .house-image img{
        height:420px;
    }

}

/* =====================================================
   SEITLICHE SPRUNG-NAVIGATION
===================================================== */

.side-jump-nav {
  position: fixed;
  left: 26px;
  top: 50%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 19px;
  transform: translateY(-50%);
}

.side-jump-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  margin: -10px -16px;
  cursor: pointer;
}

.side-jump-nav a span {
  width: 31px;
  height: 4px;
  border-radius: 999px;
  background: rgba(37, 49, 39, 0.3);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.side-jump-nav a.active span,
.side-jump-nav a:hover span {
  width: 46px;
  background: var(--wine);
}

.side-jump-nav a em {
  position: absolute;
  left: 56px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-sm);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: 0.22s ease;
  pointer-events: none;
}

.side-jump-nav a:hover em {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px max(20px, 5vw) 110px;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 28, 21, 0.78) 0%, rgba(20, 28, 21, 0.45) 48%, rgba(20, 28, 21, 0.15) 100%),
    linear-gradient(to top, rgba(20, 28, 21, 0.48), transparent 55%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
  max-width: 880px;
  margin: 14px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 8.4vw, 7rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* =====================================================
   KURZINFOS
===================================================== */

.quick-facts {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: -46px auto 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-facts article {
  padding: 23px 24px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong {
  display: block;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.quick-facts span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* =====================================================
   INHALTSSEKTIONEN
===================================================== */

.two-column,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 7vw, 88px);
  align-items: start;
}

.text-block {
  display: grid;
  gap: 20px;
  padding-top: 7px;
  color: var(--muted);
  font-size: 1.06rem;
}

.benefits-section {
  display: grid;
  gap: 46px;
}

.benefits-heading {
  max-width: 760px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.55);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-sm);
}

.benefit-number {
  display: block;
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.benefit-item h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.benefit-item p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-box,
.contact-form {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(9px);
}

.card {
  padding: 28px;
}

.card h3 {
  margin-bottom: 9px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.card p {
  color: var(--muted);
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.amenity-list span {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

.note {
  margin-top: 20px;
  color: var(--muted);
}

/* =====================================================
   GALERIE / SWIPER SLIDER – UNVERÄNDERT
===================================================== */

.image-carousel{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:35px 0 70px;
  overflow:hidden;
}

.image-carousel .swiper-wrapper{
  align-items:center;
}

.image-carousel .swiper-slide{
  width:850px;
  height:500px;
  opacity:.35;
  transform:scale(.82);
  transition:opacity .4s ease, transform .4s ease;
  cursor:pointer;
}

.image-carousel .swiper-slide-active{
  opacity:1;
  transform:scale(1);
}

.image-carousel .swiper-slide-prev,
.image-carousel .swiper-slide-next{
  opacity:.45;
  transform:scale(.88);
}

.image-carousel .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.carousel-arrow{
  position:absolute;
  bottom:10px;
  z-index:20;
  width:54px;
  height:54px;
  border:0;
  background:transparent;
  color:#5f564d;
  font-size:42px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.carousel-arrow:hover{
  color:var(--wine);
  transform:translateY(-2px);
}

.carousel-prev{
  left:calc(50% - 70px);
}

.carousel-next{
  right:calc(50% - 70px);
}

.carousel-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.88);
}

.carousel-lightbox.open{
  display:flex;
}

.carousel-lightbox img{
  max-width:94vw;
  max-height:88vh;
  object-fit:contain;
}

.carousel-lightbox-close{
  position:absolute;
  top:24px;
  right:28px;
  width:52px;
  height:52px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:var(--green-dark);
  font-size:38px;
  cursor:pointer;
}

/* =====================================================
   UMGEBUNG UND PREISE
===================================================== */

.region {
  width: min(1180px, calc(100% - 40px));
  padding: clamp(44px, 6vw, 72px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.86), rgba(235, 225, 211, 0.58));
  box-shadow: var(--shadow-sm);
}

.compact .card {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.price-section {
  padding-top: 72px;
}

.price-box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(32px, 6vw, 58px);
}

.price-box::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(113, 50, 74, 0.06);
}

.price-box p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.price-box .button {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

/* =====================================================
   KONTAKT
===================================================== */

.contact{
  padding-bottom:110px;
  align-items:start;
}

/* Linke Seite */

.contact-info > p{
  margin-top:20px;
  color:var(--muted);
  line-height:1.7;
}

.request-box{
  margin:0;
  padding:32px;
  border-radius:var(--radius);
  background:var(--wine);
  color:#fff;
  box-shadow:0 18px 38px rgba(113,50,74,.22);
}

.request-label{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.78);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.request-box h3{
  margin:0 0 16px;
  font-family:var(--serif);
  font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:500;
  line-height:1.1;
}

.request-box p{
  margin:0;
  color:rgba(255,255,255,.9);
  line-height:1.7;
}

/* Abstand zwischen Preisbox und Kontakt */

.contact-info .eyebrow{
    color: var(--wine);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
	  margin-top:54px;
    margin-bottom: 18px;
}

.contact-info h2{
  margin:0 0 24px;
}

/* Kontaktinfos 

.contact-details{
  display:grid;
  gap:0;
  margin-top:42px;
  border-top:1px solid var(--line);
}

.contact-details p{
  padding:18px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}

.contact-details strong{
  color:var(--ink);
}

/* Formular */

.contact-form{
  display:grid;
  gap:18px;
  padding:clamp(24px,4vw,38px);
}

.contact-form label{
  display:grid;
  gap:7px;
}

.contact-form span{
  color:var(--green-dark);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.82);
  color:var(--ink);
  transition:.2s;
}

.contact-form textarea{
  min-height:138px;
  resize:vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  background:#fff;
  border-color:rgba(113,50,74,.45);
  box-shadow:0 0 0 4px rgba(113,50,74,.09);
}

.form-heading{
  margin-bottom:8px;
}

.form-heading .eyebrow{
  margin-bottom:8px;
      color: var(--wine);
}

.form-heading h3{
  margin-bottom:12px;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:clamp(1.7rem,3vw,2.3rem);
  font-weight:500;
  line-height:1.15;
}

.form-heading p{
  color:var(--muted);
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.contact-form select,
.contact-form input[type="date"]{
  min-height:52px;
}

.contact-form input[type="date"]{
  cursor:pointer;
  color-scheme:light;
}

.contact-form .button{
  width:100%;
  margin-top:6px;
}

.form-note{
  color:var(--muted);
  font-size:.8rem;
  line-height:1.5;
}

@media (max-width:620px){

  .form-row{
    grid-template-columns:1fr;
  }

  .contact-info .eyebrow{
    margin-top:40px;
  }

}

/* =====================================================
   FOOTER
===================================================== */

.classic-footer {
  width: 100%;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1.1fr 0.85fr;
  gap: 38px;
  padding: 62px 0 44px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2,
.footer-column h3 {
  color: #fff;
  line-height: 1.2;
}

.footer-column h2 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-column a {
  width: max-content;
  color: rgba(255, 255, 255, 0.76);
}

.footer-column a:hover,
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-call {
  display: inline-flex;
  width: max-content;
  margin-top: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff !important;
  font-weight: 750;
}

.footer-link {
  width: max-content;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.88rem;
}

.instagram-link {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: 0.25s ease;
}

.instagram-link svg {
  width: 21px;
  height: 21px;
}

.instagram-link:hover {
  background: #fff;
  color: var(--green-dark);
  transform: translateY(-2px);
  text-decoration: none;
}

.placeholder {
  padding: 1px 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe3b5;
}

/* =====================================================
   RECHTLICHE POPUPS
===================================================== */

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.legal-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 15, 0.74);
  backdrop-filter: blur(5px);
}

.legal-modal-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(84vh, 820px);
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  color: var(--ink);
}

.legal-modal-panel h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content h3 {
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 1.03rem;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--wine);
  font-weight: 750;
}

.legal-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: -14px -14px 5px 16px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}

/* =====================================================
   SCROLL-TOP
===================================================== */

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 12px 26px rgba(113, 50, 74, 0.24);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =====================================================
   DANKE-SEITE
===================================================== */

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(25, 35, 27, 0.52), rgba(25, 35, 27, 0.58)),
    url("bilder/hinteransicht.JPG") center / cover no-repeat;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  text-align: center;
  backdrop-filter: blur(12px);
}

.thank-you-card .eyebrow {
  margin-bottom: 14px;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.thank-you-card > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.thank-you-countdown {
  margin-top: 20px;
  color: var(--wine);
  font-weight: 750;
}

.thank-you-card .button {
  margin-top: 30px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1040px) {
  .side-jump-nav {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .nav {
    min-height: 78px;
  }

  .hero {
    min-height: 80svh;
    padding-top: 135px;
    padding-bottom: 90px;
  }

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

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .two-column,
  .contact {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: auto;
  }

  .image-carousel .swiper-slide{
    width:300px;
    height:460px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 24px);
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .language-switch {
    gap: 8px;
    font-size: 0.73rem;
  }

  .text-brand {
    max-width: 170px;
    font-size: 0.9rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-panel {
    width: 100%;
    padding: 82px 28px 44px;
    align-items: center;
    text-align: center;
  }

  .nav-panel a {
    width: auto;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero {
    min-height: 78svh;
    padding: 112px 12px 76px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    margin-top: -32px;
  }

  .quick-facts article {
    padding: 17px 15px;
  }

  .region {
    width: calc(100% - 24px);
    padding: 34px 22px;
    border-radius: var(--radius);
  }

  .image-carousel .swiper-slide{
    width:260px;
    height:380px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 44px 0 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-modal {
    padding: 12px;
  }

  .legal-modal-panel {
    max-height: 90vh;
    padding: 26px 20px;
    border-radius: var(--radius);
  }

  .thank-you-card .button {
    width: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.form-honeypot{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}