/* ============================================================
   Knipskiste Heidekreis – Stylesheet
   Farbschema: Cream / Aubergine / Rosé, Serif + Script
   ============================================================ */

:root{
  --cream:#F8F5F0;
  --cream-2:#EFE9E1;
  --cream-3:#E8DFD3;
  --ink:#2E1E2E;
  --ink-soft:#5A4A5A;
  --aubergine:#5A2E5C;
  --aubergine-deep:#3F1F42;
  --aubergine-soft:#7A4E7C;
  --rose:#D4A5B8;
  --rose-soft:#E8CFD8;
  --lavender:#B8A0C8;
  --gold:#C7A96B;
  --line:#E4D9CB;
  --kalender-gelb:#F0CE7A;
  --kalender-rot:#B2554F;
  --maxw:1160px;
  --radius:14px;
  --radius-lg:22px;
  --shadow-sm:0 4px 14px rgba(90,46,92,0.08);
  --shadow-md:0 14px 40px rgba(90,46,92,0.12);
  --shadow-lg:0 30px 60px rgba(63,31,66,0.18);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  margin:0;
  font-family:'Poppins', 'Segoe UI', sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Playfair Display', serif;
  margin:0;
  font-weight:600;
  color:var(--ink);
  letter-spacing:-0.005em;
}
h1{font-size:clamp(2.4rem, 5vw, 3.8rem); line-height:1.1;}
h2{font-size:clamp(1.8rem, 3.5vw, 2.6rem); line-height:1.2;}
h3{font-size:1.25rem;}

.script{
  font-family:'Great Vibes', cursive;
  font-weight:400;
  color:var(--aubergine);
  font-size:1.35em;
  letter-spacing:0.01em;
}

p{margin:0;}
a{color:var(--aubergine); text-decoration:none;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}

.eyebrow{
  font-family:'Poppins', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:0.72rem;
  font-weight:600;
  color:var(--aubergine);
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Poppins', sans-serif;
  font-size:0.9rem; font-weight:500;
  text-decoration:none;
  padding:14px 26px;
  border-radius:999px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn:active{transform:translateY(0);}
.btn[disabled]{opacity:0.6; cursor:not-allowed; transform:none !important;}
.btn-primary{background:var(--aubergine); color:#fff; box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--aubergine-deep); box-shadow:var(--shadow-md);}
.btn-outline{background:transparent; color:var(--aubergine); border-color:var(--aubergine);}
.btn-outline:hover{background:var(--aubergine); color:#fff;}
.btn-ghost{background:transparent; color:var(--ink); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--aubergine); color:var(--aubergine);}

/* ---------- SITE HEADER ---------- */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.site-nav{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 0;
  gap:20px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:var(--ink);
  min-width:0;
}
.brand-mark{
  width:62px; height:62px;
  border-radius:50%;
  background:#fff center/cover no-repeat;
  flex:0 0 auto;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--cream-3);
}
.brand-text{display:flex; flex-direction:column; line-height:1.05; min-width:0;}
.brand-name{
  font-family:'Playfair Display', serif;
  font-weight:600; font-size:1.05rem;
  color:var(--aubergine-deep);
}
.brand-sub{
  font-size:0.68rem; letter-spacing:0.16em;
  color:var(--ink-soft); text-transform:uppercase;
  margin-top:2px;
}

.nav-links{
  display:flex; align-items:center; gap:28px;
  font-size:0.92rem;
}
.nav-links a{color:var(--ink); position:relative; padding:6px 0;}
.nav-links a:hover{color:var(--aubergine);}
.nav-links a[aria-current="page"]{color:var(--aubergine);}
.nav-links a[aria-current="page"]::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background:var(--aubergine); border-radius:2px;
}
.nav-cta{display:flex; gap:12px; align-items:center;}

.nav-toggle{
  display:none;
  background:none; border:none; color:var(--ink);
  width:36px; height:32px; padding:0; cursor:pointer;
  flex-direction:column; justify-content:center; gap:6px;
}
.nav-toggle span{display:block; width:24px; height:2px; background:currentColor; border-radius:2px;}

@media (max-width:960px){
  .nav-links{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:#fff;
    flex-direction:column; align-items:flex-start;
    padding:20px 24px 26px; gap:14px;
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);
  }
  .nav-links.open{display:flex;}
  .nav-toggle{display:flex;}
  .nav-cta .btn{padding:10px 18px; font-size:0.82rem;}
  .brand-mark{width:52px; height:52px;}
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:64px 0 80px;
  overflow:hidden;
  background:
    radial-gradient(1200px 400px at 90% -100px, rgba(212,165,184,0.18), transparent 60%),
    var(--cream);
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.hero h1{margin-top:14px;}
.hero h1 .script{display:block; margin-top:4px; color:var(--aubergine);}
.hero .lead{
  margin-top:22px;
  font-size:1.1rem; color:var(--ink-soft);
  max-width:48ch;
}
.hero-ctas{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}
.social-proof{
  display:flex; align-items:center; gap:14px;
  margin-top:34px;
}
.avatars{display:flex;}
.avatars span{
  width:34px; height:34px; border-radius:50%;
  background:var(--rose-soft) center/cover no-repeat;
  border:2px solid var(--cream);
  margin-left:-10px;
  display:inline-block;
}
.avatars span:first-child{margin-left:0;}
.avatars .a1{background-color:#C8A5B8;}
.avatars .a2{background-color:#B48EA8;}
.avatars .a3{background-color:#D4B5C0;}
.avatars .a4{background-color:#8B6B87;}
.stars{color:var(--gold); letter-spacing:2px; font-size:0.95rem;}
.social-proof-text{font-size:0.85rem; color:var(--ink-soft);}

.hero-visual{
  position:relative;
}
.hero-image{
  width:100%;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  display:block;
  aspect-ratio:4/5;
  object-fit:cover;
}

/* dekorative Lavendel-Elemente */
.deco-lavender{
  position:absolute; width:120px; opacity:0.5; pointer-events:none;
  color:var(--aubergine-soft);
}
.deco-lavender.dl-left{left:-30px; top:40%; transform:rotate(-15deg);}
.deco-lavender.dl-right{right:-30px; top:20%; transform:rotate(20deg);}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; gap:36px;}
  .hero{padding:40px 0 60px;}
  .hero-image{aspect-ratio:4/4; max-height:520px;}
}

/* ---------- FEATURE STRIP ---------- */
.features{
  padding:0 0 40px;
  margin-top:-40px;
  position:relative; z-index:2;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 22px;
  display:flex; gap:14px; align-items:flex-start;
  box-shadow:var(--shadow-sm);
}
.feature-card .fi{
  width:44px; height:44px; border-radius:12px;
  background:var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--aubergine);
  flex:0 0 auto;
}
.feature-card h4{font-family:'Playfair Display', serif; font-size:1rem; margin-bottom:4px; color:var(--ink);}
.feature-card p{font-size:0.85rem; color:var(--ink-soft); line-height:1.45;}

@media (max-width:900px){
  .feature-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:520px){
  .feature-grid{grid-template-columns:1fr;}
}

/* ---------- SECTIONS ---------- */
section{padding:80px 0;}
.section-head{text-align:center; max-width:640px; margin:0 auto 48px;}
.section-head h2{margin-top:12px;}
.section-head p{margin-top:14px; color:var(--ink-soft);}

/* ---------- PAKETE ---------- */
.pakete{background:var(--cream-2); position:relative;}
.paket-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  align-items:stretch;
}
.paket-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px 28px 28px;
  display:flex; flex-direction:column;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.paket-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md);}
.paket-card.featured{
  background:linear-gradient(180deg, #fff 0%, #FAF3F6 100%);
  border-color:var(--aubergine);
  box-shadow:var(--shadow-md);
}
.paket-badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--aubergine); color:#fff;
  font-size:0.7rem; letter-spacing:0.16em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px;
  font-weight:500;
}
.paket-name{
  font-family:'Poppins', sans-serif;
  text-transform:uppercase; letter-spacing:0.18em;
  font-size:0.78rem; color:var(--aubergine); font-weight:600;
  text-align:center;
}
.paket-price{
  font-family:'Playfair Display', serif;
  font-size:2.6rem; font-weight:600;
  text-align:center; margin-top:8px;
  color:var(--ink);
}
.paket-price small{font-size:0.9rem; color:var(--ink-soft); font-weight:400;}
.paket-features{
  list-style:none; padding:0; margin:26px 0 24px;
  display:flex; flex-direction:column; gap:12px;
  border-top:1px solid var(--line); padding-top:26px;
}
.paket-features li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.93rem; color:var(--ink-soft);
}
.paket-features li::before{
  content:'✓'; color:var(--aubergine); font-weight:700;
  flex:0 0 auto; margin-top:2px;
}
.paket-card .btn{margin-top:auto; justify-content:center;}
.paket-note{
  text-align:center; margin-top:26px;
  color:var(--ink-soft); font-size:0.9rem;
}
.paket-note span{color:var(--rose);}

@media (max-width:900px){
  .paket-grid{grid-template-columns:1fr;}
}

/* ---------- GALERIE ---------- */
.galerie{background:var(--cream);}
.galerie-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  flex-wrap:wrap; gap:20px; margin-bottom:36px;
}
.galerie-head .section-head{text-align:left; margin:0;}
.galerie-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.galerie-tile{
  aspect-ratio:1/1;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--cream-3);
  position:relative;
  transition:transform .3s ease;
}
.galerie-tile:hover{transform:scale(1.02);}
.galerie-tile img{width:100%; height:100%; object-fit:cover; display:block;}

@media (max-width:900px){
  .galerie-grid{grid-template-columns:repeat(2, 1fr);}
}

/* ---------- SO FUNKTIONIERTS ---------- */
.ablauf{background:var(--cream-2); position:relative; overflow:hidden;}
.ablauf .deco-lavender{width:180px; opacity:0.35;}
.ablauf .deco-lavender.dl-left{left:-40px; top:20%;}
.ablauf .deco-lavender.dl-right{right:-40px; bottom:20%;}
.steps{
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr;
  gap:16px; align-items:start;
  max-width:1000px; margin:0 auto;
}
.step{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:0 12px;
}
.step-icon{
  width:64px; height:64px; border-radius:50%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  color:var(--aubergine);
  box-shadow:var(--shadow-sm);
  margin-bottom:20px;
  position:relative;
}
.step-num{
  position:absolute; top:-6px; right:-6px;
  width:26px; height:26px; border-radius:50%;
  background:var(--aubergine); color:#fff;
  font-size:0.75rem; font-weight:600;
  display:flex; align-items:center; justify-content:center;
}
.step h3{font-size:1.15rem; margin-bottom:8px;}
.step p{color:var(--ink-soft); font-size:0.94rem;}
.step-arrow{
  color:var(--aubergine-soft);
  align-self:center; padding-top:20px;
  opacity:0.5;
}
@media (max-width:900px){
  .steps{grid-template-columns:1fr;}
  .step-arrow{transform:rotate(90deg); padding:0;}
}

/* ---------- TESTIMONIALS + FAQ ---------- */
.social-faq{background:var(--cream);}
.social-faq-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:56px;
  align-items:start;
}
.social-faq-grid .section-head{text-align:left; margin:0 0 30px;}

.testimonial{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow-sm);
}
.testimonial .stars{margin-bottom:12px; display:block;}
.testimonial p{color:var(--ink); font-size:0.98rem; line-height:1.55;}
.testimonial .author{
  display:flex; align-items:center; gap:12px;
  margin-top:18px;
}
.testimonial .author .a-avatar{
  width:40px; height:40px; border-radius:50%;
  background:var(--rose-soft);
  display:flex; align-items:center; justify-content:center;
  color:var(--aubergine); font-weight:600; font-size:0.95rem;
}
.testimonial .author .a-name{font-weight:600; font-size:0.9rem;}
.testimonial .author .a-occ{font-size:0.8rem; color:var(--ink-soft);}

details.faq-item{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px 20px;
  margin-bottom:10px;
  transition:box-shadow .2s ease;
}
details.faq-item[open]{box-shadow:var(--shadow-sm);}
details.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; font-weight:500; color:var(--ink); font-size:0.95rem;
}
details.faq-item summary::-webkit-details-marker{display:none;}
details.faq-item summary::after{
  content:'+'; color:var(--aubergine);
  font-size:1.4rem; font-weight:300; line-height:1;
  transition:transform .2s ease;
}
details.faq-item[open] summary::after{content:'−';}
details.faq-item .answer{
  margin-top:10px; padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--ink-soft); font-size:0.93rem;
}

@media (max-width:900px){
  .social-faq-grid{grid-template-columns:1fr; gap:40px;}
}

/* ---------- PAGE HERO (Unterseiten) ---------- */
.page-hero{
  background:linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding:60px 0 50px;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.page-hero h1{margin-top:14px;}
.page-hero p{margin-top:16px; color:var(--ink-soft); max-width:60ch; margin-left:auto; margin-right:auto;}

/* ---------- KONTAKT-SEITE ---------- */
.kontakt-page{background:var(--cream);}
.kontakt-grid{
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:40px;
  align-items:start;
}
.kontakt-info{
  background:var(--aubergine-deep); color:#fff;
  border-radius:var(--radius-lg);
  padding:36px;
}
.kontakt-info h3{color:#fff; margin-bottom:10px;}
.kontakt-info > p{color:#e0d0e0; font-size:0.94rem; margin-bottom:24px;}
.kontakt-info ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:18px;}
.kontakt-info li{display:flex; align-items:flex-start; gap:14px; font-size:0.94rem;}
.kontakt-info .ci-icon{
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--rose); flex:0 0 auto;
}
.kontakt-info .ci-label{
  display:block;
  font-size:0.72rem; text-transform:uppercase; letter-spacing:0.14em;
  color:var(--rose); margin-bottom:2px;
}
.kontakt-info a{color:#fff; text-decoration:underline;}
.placeholder{opacity:0.75; font-style:italic;}

.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:var(--shadow-sm);
}
.form-card h3{margin-bottom:6px;}
.form-card > p{color:var(--ink-soft); margin-bottom:24px; font-size:0.94rem;}

form{display:flex; flex-direction:column; gap:16px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
label{
  display:block;
  font-size:0.78rem; text-transform:uppercase; letter-spacing:0.1em;
  color:var(--ink-soft); font-weight:500; margin-bottom:6px;
}
input, textarea{
  width:100%;
  font-family:'Poppins', sans-serif; font-size:0.96rem;
  padding:13px 14px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:#fff; color:var(--ink);
  transition:border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus{
  outline:none; border-color:var(--aubergine);
  box-shadow:0 0 0 3px rgba(90,46,92,0.12);
}
textarea{min-height:130px; resize:vertical;}
.honeypot{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;}
#sendStatus{
  font-size:0.9rem; min-height:1.3em;
  padding-top:4px;
}
#sendStatus.ok{color:#2d6b3d;}
#sendStatus.error{color:#a13d3d;}
.form-note{font-size:0.82rem; color:var(--ink-soft);}

@media (max-width:900px){
  .kontakt-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .form-card, .kontakt-info{padding:26px;}
}

/* ---------- LEGAL PAGES ---------- */
.legal{background:var(--cream);}
.legal .wrap{max-width:820px;}
.legal h2{font-size:1.4rem; margin-top:36px;}
.legal h2:first-of-type{margin-top:0;}
.legal p, .legal li{color:var(--ink-soft);}
.legal ul{padding-left:20px;}

/* ---------- FOOTER ---------- */
footer{
  background:var(--aubergine-deep);
  color:#e0d0e0;
  padding:60px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  gap:40px; margin-bottom:40px;
}
.footer-brand .brand-name{color:#fff;}
.footer-brand .brand-sub{color:var(--rose);}
.footer-brand p{margin-top:14px; font-size:0.9rem; color:#c8b0c8;}
footer h4{
  color:#fff; font-family:'Playfair Display', serif;
  font-size:1.1rem; margin-bottom:16px;
}
.footer-links-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.footer-links-list a{color:#e0d0e0; text-decoration:none; font-size:0.92rem;}
.footer-links-list a:hover{color:var(--rose);}
.footer-contact{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px;}
.footer-contact li{display:flex; align-items:flex-start; gap:10px; font-size:0.9rem;}
.footer-contact .fc-icon{color:var(--rose); flex:0 0 auto; margin-top:2px;}
.footer-contact a{color:#e0d0e0; text-decoration:none;}
.footer-contact a:hover{color:#fff;}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:0.82rem; color:#a898a8;
}
.footer-bottom .footer-legal{display:flex; gap:20px;}
.footer-bottom a{color:#a898a8; text-decoration:none;}
.footer-bottom a:hover{color:#fff;}

.payment-row{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  flex-wrap:wrap;
  gap:12px;
  padding:28px 0 32px;
  margin-top:8px;
  border-top:1px solid rgba(255,255,255,0.1);
}
.payment-label{
  font-size:0.8rem;
  color:#a898a8;
  margin-right:4px;
}
.payment-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:20px;
  font-size:0.78rem;
  font-weight:600;
  background:rgba(255,255,255,0.06);
  color:#fff;
}
.payment-badge svg{width:16px;height:16px;flex:0 0 auto;}
.payment-badge.paypal{color:#8fc4ff;}
.payment-badge.wero{color:#e0a8e8;}
.payment-badge.ueberweisung{color:var(--rose);}

@media (max-width:800px){
  .footer-grid{grid-template-columns:1fr; gap:32px;}
}

/* ---------- LIGHTBOX ---------- */
.lightbox{
  position:fixed; inset:0; z-index:100;
  background:rgba(46,30,46,0.92);
  display:none;
  align-items:center; justify-content:center;
}
.lightbox.open{display:flex;}
.lightbox .lb-img{
  max-width:88vw; max-height:86vh;
  border-radius:12px;
  box-shadow:0 30px 80px rgba(0,0,0,0.5);
}
.lightbox button{
  position:absolute;
  background:rgba(255,255,255,0.1);
  border:none; color:#fff;
  width:48px; height:48px; border-radius:50%;
  font-size:1.6rem; line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.lightbox button:hover{background:rgba(255,255,255,0.25);}
.lightbox .lb-close{top:20px; right:20px;}
.lightbox .lb-prev{left:20px; top:50%; transform:translateY(-50%);}
.lightbox .lb-next{right:20px; top:50%; transform:translateY(-50%);}
@media (max-width:600px){
  .lightbox .lb-prev{left:8px;}
  .lightbox .lb-next{right:8px;}
  .lightbox button{width:40px; height:40px;}
}

/* ============================================================
   ANIMATIONEN & HEIDE-AKZENTE
   ============================================================ */

/* ---------- Scroll-Reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
  transition-delay:var(--reveal-delay, 0s);
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}

/* ---------- Hero-Einstieg ---------- */
@keyframes heroFadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}
@keyframes heroImgIn{
  from{opacity:0; transform:translateY(20px) scale(0.97);}
  to{opacity:1; transform:translateY(0) scale(1);}
}
.hero .eyebrow{animation:heroFadeUp .7s ease .05s backwards;}
.hero h1{animation:heroFadeUp .7s ease .15s backwards;}
.hero .lead{animation:heroFadeUp .7s ease .3s backwards;}
.hero .hero-ctas{animation:heroFadeUp .7s ease .45s backwards;}
.hero .social-proof{animation:heroFadeUp .7s ease .6s backwards;}
.hero .hero-image{animation:heroImgIn .9s ease .25s backwards;}
.page-hero .eyebrow{animation:heroFadeUp .6s ease .05s backwards;}
.page-hero h1{animation:heroFadeUp .6s ease .15s backwards;}
.page-hero p{animation:heroFadeUp .6s ease .28s backwards;}

/* ---------- Heide-Zweige (dekorativ) ---------- */
.heide-sprig{
  position:absolute;
  pointer-events:none;
  color:var(--aubergine-soft);
  opacity:0.4;
  transform-origin:bottom center;
  animation:heideSway 6s ease-in-out infinite;
  z-index:1;
}
.heide-sprig.hs-2{animation-delay:1.6s;}
.heide-sprig.hs-3{animation-delay:3.1s;}
@keyframes heideSway{
  0%,100%{transform:rotate(var(--sprig-rot, 0deg));}
  50%{transform:rotate(calc(var(--sprig-rot, 0deg) + 3deg));}
}
.hero, .page-hero{position:relative; overflow:hidden;}
.hero .heide-sprig, .page-hero .heide-sprig{opacity:0.35;}

/* ---------- Heide-Trennlinie unter Section-Köpfen ---------- */
.section-head h2{position:relative;}
.heide-divider{
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin-top:16px;
  color:var(--rose);
}
.heide-divider::before, .heide-divider::after{
  content:'';
  height:1px; width:56px;
  background:linear-gradient(90deg, transparent, var(--rose));
}
.heide-divider::after{
  background:linear-gradient(90deg, var(--rose), transparent);
}

/* ---------- sanfter "Schwebe"-Effekt fürs Ringlicht-Gefühl ---------- */
@keyframes gentleFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
.hero-visual{animation:gentleFloat 7s ease-in-out infinite;}

/* ---------- Karten-Hover leicht verstärkt ---------- */
.feature-card{transition:transform .25s ease, box-shadow .25s ease;}
.feature-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md);}
.testimonial{transition:transform .25s ease, box-shadow .25s ease;}
.testimonial:hover{transform:translateY(-3px); box-shadow:var(--shadow-md);}

/* Reduced Motion respektieren */
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  .hero *, .page-hero *, .hero-visual, .heide-sprig{animation:none !important;}
}

/* ---------- Heide-Update: Zweige & Horizont ---------- */
.heide-sprig{opacity:0.65;}
.hero .heide-sprig, .page-hero .heide-sprig{opacity:0.55;}

.heide-band{
  display:block;
  line-height:0;
  margin-bottom:-1px; /* nahtloser Übergang zum Footer */
  background:transparent;
}
.heide-band svg{
  display:block;
  width:100%;
  height:64px;
}
@media (max-width:600px){
  .heide-band svg{height:44px;}
}

/* ---------- ECHTE HEIDE-FOTOS ---------- */

/* Freigestellte Heide-Ecken in Heros */
.heide-ecke{
  position:absolute;
  bottom:-8px;
  width:clamp(140px, 18vw, 260px);
  pointer-events:none;
  z-index:1;
  animation:heideSway 7s ease-in-out infinite;
  transform-origin:bottom center;
  filter:drop-shadow(0 4px 10px rgba(63,31,66,0.12));
}
.heide-ecke.he-left{left:-10px; --sprig-rot:0deg;}
.heide-ecke.he-right{right:-10px; transform:scaleX(-1); animation:heideSwayFlip 7s ease-in-out infinite 1.8s;}
@keyframes heideSwayFlip{
  0%,100%{transform:scaleX(-1) rotate(0deg);}
  50%{transform:scaleX(-1) rotate(3deg);}
}
@media (max-width:700px){
  .heide-ecke{width:110px; opacity:0.85;}
}

/* Ablauf-Deko jetzt als Foto-Freisteller */
.ablauf .deco-lavender{
  width:170px; opacity:0.9;
  filter:drop-shadow(0 4px 8px rgba(63,31,66,0.1));
}

/* Foto-Band vor dem Footer: echte Heideblüte */
.heide-foto-band{
  position:relative;
  height:300px;
  background:url('img/heide-bluete.jpg') center 65% / cover no-repeat;
  display:flex; align-items:center; justify-content:center;
}
.heide-foto-band::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg,
    var(--cream) 0%,
    rgba(248,245,240,0) 26%,
    rgba(63,31,66,0.05) 60%,
    rgba(63,31,66,0.55) 100%);
}
.hfb-inner{position:relative; text-align:center;}
.hfb-script{
  font-family:'Great Vibes', cursive;
  font-size:clamp(2.2rem, 5vw, 3.4rem);
  color:#fff;
  text-shadow:0 2px 18px rgba(63,31,66,0.65);
  margin:0;
}
@media (max-width:600px){
  .heide-foto-band{height:200px;}
}

/* ---------- Select & Checkbox im Formular ---------- */
select{
  width:100%;
  font-family:'Poppins', sans-serif; font-size:0.96rem;
  padding:13px 40px 13px 14px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%235A2E5C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color:var(--ink);
  appearance:none; -webkit-appearance:none;
  cursor:pointer;
  transition:border-color .15s ease, box-shadow .15s ease;
}
select:focus{
  outline:none; border-color:var(--aubergine);
  box-shadow:0 0 0 3px rgba(90,46,92,0.12);
}

.check-row{
  display:flex; align-items:center; gap:12px;
  font-size:0.95rem; text-transform:none; letter-spacing:0;
  color:var(--ink); font-weight:400;
  cursor:pointer;
  padding:14px 16px;
  border:1.5px solid var(--line);
  border-radius:10px;
  background:#fff;
  transition:border-color .15s ease, background .15s ease;
  margin:0;
}
.check-row:hover{border-color:var(--aubergine-soft);}
.check-row:has(input:checked){
  border-color:var(--aubergine);
  background:#FAF3F6;
}
.check-row input[type="checkbox"]{
  width:20px; height:20px;
  accent-color:var(--aubergine);
  flex:0 0 auto;
  margin:0;
  cursor:pointer;
}
.check-row small{color:var(--ink-soft);}

/* ---------- STICKY-CTA (mobil) ---------- */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  display:none;
  padding:10px 16px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(8px);
  border-top:1px solid var(--line);
  box-shadow:0 -8px 24px rgba(63,31,66,0.12);
  transform:translateY(110%);
  transition:transform .35s ease;
}
.sticky-cta.visible{transform:translateY(0);}
.sticky-cta .btn{width:100%; justify-content:center;}
@media (max-width:760px){
  .sticky-cta{display:block;}
}

/* ---------- FOTOSTREIFEN-GALERIE ---------- */
.galerie-tile{
  background:#fff;
  padding:10px 10px 30px;
  border-radius:6px;
  box-shadow:0 6px 20px rgba(63,31,66,0.14);
  aspect-ratio:auto;
}
.galerie-tile img{
  aspect-ratio:1/1;
  border-radius:2px;
}
/* leichte, alternierende Drehung wie hingelegte Abzüge */
.galerie-grid .galerie-tile:nth-child(4n+1){--rot:-1.6deg;}
.galerie-grid .galerie-tile:nth-child(4n+2){--rot:1.2deg;}
.galerie-grid .galerie-tile:nth-child(4n+3){--rot:-0.8deg;}
.galerie-grid .galerie-tile:nth-child(4n+4){--rot:1.7deg;}
.galerie-tile{transform:rotate(var(--rot,0deg));}
.galerie-tile:hover{
  transform:rotate(0deg) scale(1.03);
  box-shadow:var(--shadow-md);
  z-index:2;
}

/* Reveal-Animation mit Rotation kombinieren */
.reveal{transform:translateY(26px) rotate(var(--rot,0deg));}
.reveal.in-view{transform:translateY(0) rotate(var(--rot,0deg));}
.galerie-tile.reveal.in-view:hover{transform:translateY(0) rotate(0deg) scale(1.03);}

/* ---------- HEIDE-REDESIGN: Foto-Hintergründe statt PNG-Ecken ---------- */

/* Ecken-Deko deaktiviert */
.heide-ecke{display:none;}

/* Startseiten-Hero: Heidefoto als sanfter Hintergrund hinter Cream-Schleier */
.hero{
  background:
    linear-gradient(180deg,
      rgba(248,245,240,0.93) 0%,
      rgba(248,245,240,0.88) 55%,
      rgba(248,245,240,0.97) 100%),
    url('img/heide-bluete.jpg') center 42% / cover no-repeat;
}

/* Unterseiten-Heros: gleiche Technik, etwas kräftiger abgedeckt */
.page-hero{
  background:
    linear-gradient(180deg,
      rgba(248,245,240,0.90) 0%,
      rgba(239,233,225,0.95) 100%),
    url('img/heide-bluete.jpg') center 60% / cover no-repeat;
}

/* Einzelner Heide-Akzent unten rechts (Unterseiten) */
.heide-akzent{
  position:absolute;
  right:3%; bottom:-16px;
  width:clamp(90px, 11vw, 150px);
  opacity:0.9;
  transform:rotate(6deg);
  pointer-events:none;
  filter:drop-shadow(0 4px 8px rgba(63,31,66,0.12));
}
@media (max-width:700px){
  .heide-akzent{width:80px; right:2%; opacity:0.75;}
}

/* ---------- ABLAUF ALS POLAROID-KARTEN ---------- */
.ablauf .step{
  position:relative;
  background:#fff;
  border-radius:6px;
  padding:34px 22px 30px;
  box-shadow:0 8px 24px rgba(63,31,66,0.13);
}
.steps > .step:nth-of-type(1){--rot:-1.8deg;}
.steps > .step:nth-of-type(2){--rot:1deg;}
.steps > .step:nth-of-type(3){--rot:-1.2deg;}
.ablauf .step{transform:rotate(var(--rot,0deg));}
.ablauf .step:hover{transform:rotate(0deg) translateY(-4px); box-shadow:var(--shadow-md); z-index:2;}
.ablauf .step.reveal.in-view:hover{transform:translateY(-4px) rotate(0deg);}

/* "Klebestreifen" oben auf jeder Karte */
.ablauf .step::before{
  content:'';
  position:absolute;
  top:-12px; left:50%;
  width:92px; height:26px;
  transform:translateX(-50%) rotate(-3deg);
  background:linear-gradient(180deg, rgba(212,165,184,0.55), rgba(212,165,184,0.4));
  box-shadow:0 1px 3px rgba(63,31,66,0.12);
}
.steps > .step:nth-of-type(2)::before{transform:translateX(-50%) rotate(2.5deg);}

.ablauf .step-icon{
  background:var(--cream-2);
  box-shadow:none;
}

/* ============================================================
   HEIDE- & FOTOBOX-STIMMUNG (v10)
   ============================================================ */

/* Palette leicht wärmer: Sandton statt reinem Cream, Heidegrün als Akzent */
:root{
  --cream:#F5F0E6;
  --cream-2:#EBE3D3;
  --cream-3:#DFD3BC;
  --heide-green:#7E8C67;   /* Heidegras / Kiefer */
  --ringlight:#E8CE95;     /* warme Ringlicht-Wärme */
  --rose:#C48BA1;          /* etwas kräftigeres Heideblüten-Rosé */
  --rose-soft:#E6C9D2;
  --line:#DFD3BC;
}
body{background:var(--cream);}

/* Foto-Band vor dem Footer: kleiner, dezenter, nur auf sinnvollen Seiten */
.heide-foto-band{
  height:180px;
}
.heide-foto-band::before{
  background:linear-gradient(180deg,
    var(--cream) 0%,
    rgba(245,240,230,0) 30%,
    rgba(63,31,66,0.15) 65%,
    rgba(63,31,66,0.60) 100%);
}
.hfb-script{font-size:clamp(1.9rem, 4.5vw, 2.8rem);}
@media (max-width:600px){
  .heide-foto-band{height:130px;}
}
/* Auf kurzen Seiten ganz weg */
body.no-band .heide-foto-band{display:none;}

/* Ringlicht um das Brandlogo im Header */
.brand-mark{
  box-shadow:
    0 0 0 3px rgba(232,206,149,0.35),
    0 0 20px rgba(232,206,149,0.25),
    var(--shadow-sm);
}

/* Heidegras als Section-Trenner: kleiner Halm statt Blütenornament */
.heide-divider svg{color:var(--heide-green);}
.heide-divider::before, .heide-divider::after{
  background:linear-gradient(90deg, transparent, var(--heide-green));
  opacity:0.55;
}
.heide-divider::after{background:linear-gradient(90deg, var(--heide-green), transparent);}

/* Feature-Icons wärmer: Ringlicht-Ton als Hintergrund */
.feature-card .fi{
  background:linear-gradient(135deg, #FBF1D9 0%, var(--cream-2) 100%);
  color:var(--aubergine);
}

/* Testimonial-Avatare in wärmerem Rosé + Heide-Wechsel */
.testimonial:nth-of-type(2n) .a-avatar{
  background:#DCE3CE; color:var(--heide-green);
}

/* Preisschild-Header mit dezentem Ringlicht-Verlauf */
.paket-card.featured{
  background:linear-gradient(180deg, #fff 0%, #FDF6E7 65%, #FAF3F6 100%);
}
.paket-badge{
  background:linear-gradient(135deg, var(--aubergine) 0%, var(--aubergine-deep) 100%);
}

/* Footer: Fotobox-Wärme durch verstreute Lichterkettenpunkte */
footer{
  background:
    radial-gradient(circle at 12% 30%, rgba(232,206,149,0.14) 0%, transparent 3%),
    radial-gradient(circle at 22% 60%, rgba(232,206,149,0.10) 0%, transparent 2%),
    radial-gradient(circle at 35% 20%, rgba(232,206,149,0.12) 0%, transparent 2.5%),
    radial-gradient(circle at 48% 75%, rgba(232,206,149,0.10) 0%, transparent 2%),
    radial-gradient(circle at 62% 35%, rgba(232,206,149,0.14) 0%, transparent 3%),
    radial-gradient(circle at 78% 65%, rgba(232,206,149,0.11) 0%, transparent 2.5%),
    radial-gradient(circle at 88% 25%, rgba(232,206,149,0.12) 0%, transparent 2%),
    var(--aubergine-deep);
}
.brand-sub{color:var(--ringlight);}
.footer-brand .brand-sub, footer h4{color:#fff;}
.fc-icon, .ci-icon{color:var(--ringlight);}

/* Hero-Hintergrund noch etwas subtiler mit warmem Sand-Overlay */
.hero{
  background:
    linear-gradient(180deg,
      rgba(245,240,230,0.94) 0%,
      rgba(245,240,230,0.90) 55%,
      rgba(245,240,230,0.98) 100%),
    url('img/heide-bluete.jpg') center 42% / cover no-repeat;
}
.page-hero{
  background:
    linear-gradient(180deg,
      rgba(245,240,230,0.92) 0%,
      rgba(235,227,211,0.96) 100%),
    url('img/heide-bluete.jpg') center 60% / cover no-repeat;
}

/* ============================================================
   VERFÜGBARKEITSKALENDER & BUCHUNGSANFRAGE
   ============================================================ */
.kalender-page{background:var(--cream);}
.kalender-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-sm);
  max-width:640px;
  margin:0 auto 28px;
}
.kalender-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:22px;
}
.kalender-head button{
  background:var(--aubergine);
  color:#fff;
  border:none;
  width:38px;height:38px;
  border-radius:50%;
  cursor:pointer;
  font-size:17px;
  line-height:1;
  transition:background .2s ease;
}
.kalender-head button:hover{background:var(--aubergine-deep);}
.kalender-titel{
  font-family:'Playfair Display', serif;
  font-size:1.3rem;
  color:var(--aubergine);
  text-transform:capitalize;
}
.wochentage, .tage{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}
.wochentage div{
  text-align:center;
  font-size:0.7rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-soft);
  padding-bottom:8px;
  font-family:'Poppins', sans-serif;
  font-weight:600;
}
.tag{
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:0.9rem;
  font-family:'Poppins', sans-serif;
  cursor:pointer;
  background:var(--cream);
  color:var(--ink);
  position:relative;
  border:1.5px solid transparent;
  transition:all .15s ease;
}
.tag.leer{background:transparent; cursor:default;}
.tag.vergangen{opacity:0.35; cursor:not-allowed;}
.tag:hover:not(.leer):not(.vergangen):not(.geplant):not(.belegt):not(.geblockt){
  border-color:var(--gold);
  transform:translateY(-1px);
}
.tag.ausgewaehlt{background:var(--aubergine); color:#fff;}

/* Geplant = Anfrage offen, noch nicht bestätigt -> warmes Gelb */
.tag.geplant{
  background:var(--kalender-gelb);
  color:var(--ink);
  font-weight:600;
}
.tag.geplant:hover{border-color:var(--aubergine);}

/* Gebucht & belegt = bestätigte Kundenbuchung -> Rotton */
.tag.belegt{
  background:var(--kalender-rot);
  color:#fff;
  cursor:pointer;
  font-weight:600;
}

/* Geblockt = wir vermieten die Box an dem Tag bewusst nicht (intern) ->
   schraffiert, damit klar erkennbar anders als eine echte Buchung */
.tag.geblockt{
  background-color:var(--cream-3);
  background-image:repeating-linear-gradient(
    45deg,
    transparent, transparent 5px,
    rgba(90,46,92,0.18) 5px, rgba(90,46,92,0.18) 10px
  );
  color:var(--ink-soft);
  cursor:not-allowed;
}

.kalender-legende{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:18px;
  font-size:0.78rem;
  color:var(--ink-soft);
  font-family:'Poppins', sans-serif;
}
.kalender-legende span{display:inline-flex; align-items:center; gap:6px;}
.legende-swatch{width:14px;height:14px;border-radius:4px;display:inline-block;}
.legende-swatch.frei{background:var(--cream); border:1.5px solid var(--line);}
.legende-swatch.geplant{background:var(--kalender-gelb);}
.legende-swatch.belegt{background:var(--kalender-rot);}
.legende-swatch.geblockt{
  background-color:var(--cream-3);
  background-image:repeating-linear-gradient(
    45deg,
    transparent, transparent 3px,
    rgba(90,46,92,0.25) 3px, rgba(90,46,92,0.25) 6px
  );
  border:1.5px solid var(--line);
}

.buchung-form-card{
  max-width:640px;
  margin:0 auto;
}
.buchung-form-card .ausgewaehltes-datum{
  background:var(--aubergine);
  color:#fff;
  padding:14px 18px;
  border-radius:10px;
  font-size:0.94rem;
  margin-bottom:20px;
  font-family:'Poppins', sans-serif;
}
.buchung-msg{
  padding:12px 16px;
  border-radius:10px;
  font-size:0.9rem;
  display:none;
  font-family:'Poppins', sans-serif;
  margin-top:14px;
}
.buchung-msg.ok{background:#EAF1E4; color:#4a6b34; display:block;}
.buchung-msg.err{background:#F6E4E2; color:#8a3a35; display:block;}

@media (max-width:600px){
  .kalender-panel{padding:22px 16px;}
  .wochentage div{font-size:0.6rem;}
  .tag{font-size:0.78rem; border-radius:8px;}
}

/* Dezenter, versteckter Zugang zum Admin-Panel im Footer */
.admin-access{
  opacity:0.18;
  margin-left:16px;
  text-decoration:none;
  color:inherit;
  transition:opacity .2s ease;
  font-size:0.9em;
}
.admin-access:hover{opacity:0.7;}

/* ---------- COOKIE-BANNER ---------- */
.cookie-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:200;
  background:var(--aubergine-deep);
  color:#f0e6f0;
  padding:18px 20px;
  transform:translateY(100%);
  transition:transform .3s ease;
  box-shadow:0 -6px 24px rgba(0,0,0,0.2);
}
.cookie-banner.visible{transform:translateY(0);}
.cookie-banner-inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.cookie-banner p{margin:0; font-size:0.88rem; max-width:640px; color:#e0d0e0;}
.cookie-banner a{color:#fff; text-decoration:underline;}
.cookie-banner-actions{display:flex; gap:10px; flex-wrap:wrap;}
.cookie-banner .btn{padding:9px 18px; font-size:0.85rem;}
.cookie-banner .btn-outline{
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.4);
  color:#fff;
}
.cookie-banner .btn-outline:hover{border-color:#fff;}

@media (max-width:700px){
  .cookie-banner-inner{flex-direction:column; align-items:flex-start;}
}

/* ---------- KUNDENBEWERTUNGEN ---------- */
.star-picker{display:flex; gap:6px; margin-top:2px;}
.star-picker .star{
  background:none;
  border:none;
  font-size:1.8rem;
  line-height:1;
  color:var(--line);
  cursor:pointer;
  padding:2px;
  transition:color .15s ease, transform .15s ease;
}
.star-picker .star:hover{transform:scale(1.15);}
.star-picker .star.active{color:var(--kalender-gelb);}

.review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 24px;
  margin-bottom:16px;
  box-shadow:var(--shadow-sm);
}
.review-photo{
  width:100%;
  max-height:280px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:14px;
}
.review-stars{font-size:1.1rem; margin-bottom:8px;}
.review-stars .star-filled{color:var(--kalender-gelb);}
.review-stars .star-empty{color:var(--line);}
.review-text{margin:0 0 10px; color:var(--ink); font-size:0.95rem; line-height:1.6;}
.review-name{
  font-family:'Playfair Display', serif;
  font-style:italic;
  color:var(--aubergine);
  font-size:0.9rem;
}

/* ---------- WARTUNGSMODUS ---------- */
html.maint-check body{ visibility:hidden; }
html.maint-check body .maint-overlay{ visibility:visible; }

.maint-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--aubergine-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.maint-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:40px 36px;
  max-width:380px;
  width:100%;
  text-align:center;
  box-shadow:var(--shadow-lg);
}
.maint-card .brand-icon{
  width:52px; height:52px; margin:0 auto 16px;
  background:var(--aubergine); color:#fff;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:22px;
}
.maint-card h2{
  font-family:'Playfair Display', serif;
  color:var(--aubergine);
  font-size:1.3rem;
  margin-bottom:8px;
}
.maint-card p{color:var(--ink-soft); font-size:0.9rem; margin-bottom:20px;}
.maint-card input{
  width:100%;
  padding:11px 13px;
  margin-bottom:10px;
  border:1.5px solid var(--line);
  border-radius:8px;
  font-family:'Poppins', sans-serif;
  font-size:0.95rem;
}
.maint-card input:focus{outline:2px solid var(--gold); outline-offset:1px;}
.maint-err{color:#B15150; font-size:0.82rem; min-height:1.2em; margin-bottom:8px;}
.maint-legal{margin-top:20px; font-size:0.75rem;}
.maint-legal a{color:var(--ink-soft);}

/* ---------- WERBEBANNER ---------- */
.promo-banner{
  background:var(--aubergine);
  color:#fff;
  padding:12px 20px;
  text-align:center;
  font-size:0.88rem;
  position:relative;
  display:none;
}
.promo-banner.visible{display:block;}
.promo-banner a{color:var(--kalender-gelb); text-decoration:underline; font-weight:600;}
.promo-banner .promo-close{
  position:absolute;
  right:14px; top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  color:#fff;
  opacity:0.7;
  font-size:1.1rem;
  cursor:pointer;
  line-height:1;
  padding:4px;
}
.promo-banner .promo-close:hover{opacity:1;}
