:root{
  --primary: #FF8A65;
  --secondary: #FFF3E0;
  --accent: #F5F5DC;
  --text: #4E342E;
  --bg: #FFFFFF;
  --muted: rgba(78,52,46,.72);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 20px rgba(78,52,46,.08);
  --shadow-md: 0 12px 40px rgba(78,52,46,.14);
  --container: 1100px;
  --header-h: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button, input, textarea{ font: inherit; }

/* Accessibility */
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99999;
}
.skip-link:focus{
  left: 12px;
  top: 12px;
  outline: 3px solid rgba(255,255,255,.9);
}
:focus-visible{
  outline: 3px solid rgba(255, 138, 101, .75);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Layout Helpers */
.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.grid{
  display: grid;
  gap: 18px;
}
.flex{
  display: flex;
  gap: 14px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), opacity .2s var(--ease);
  box-shadow: 0 12px 28px rgba(255, 138, 101, .24);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(255, 138, 101, .32);
}
.btn:active{ transform: translateY(0px) scale(.98); }
.btn.secondary{
  background: transparent;
  border-color: rgba(78,52,46,.22);
  color: var(--text);
  box-shadow: none;
}
.btn.secondary:hover{
  border-color: rgba(78,52,46,.38);
  box-shadow: var(--shadow-sm);
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 101, .12);
  border: 1px solid rgba(255, 138, 101, .22);
  font-weight: 700;
  font-size: 0.95rem;
}
.card{
  background: white;
  border: 1px solid rgba(78,52,46,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.section{
  padding: 64px 0;
  position: relative;
}
.section-header{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

h1, h2, h3{
  font-family: "Playfair Display", serif;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1{ font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3{ font-size: 1.25rem; }

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

/* Top Loading Bar */
.top-progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #ffb199);
  z-index: 9999;
  transition: width .08s linear;
}

/* Header */
header{
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(78,52,46,.10);
}

.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, #fff, rgba(255,255,255,.7)),
    linear-gradient(135deg, var(--primary), #ffb199);
  box-shadow: 0 10px 28px rgba(255, 138, 101, .25);
  border: 1px solid rgba(78,52,46,.08);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  color: rgba(78,52,46,.9);
}

.brand-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 600px) {
  .brand-logo-img {
    width: 48px;
    height: 48px;
  }
}

nav{
  display: none;
  align-items: center;
  gap: 12px;
}

nav a{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  color: rgba(78,52,46,.82);
  transition: background .2s var(--ease), color .2s var(--ease);
}

nav a:hover{
  background: rgba(255, 138, 101, .12);
  color: rgba(78,52,46,1);
}

nav a.active{
  background: rgba(255, 138, 101, .18);
  border: 1px solid rgba(255, 138, 101, .25);
  color: rgba(78,52,46,1);
}

.nav-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(78,52,46,.14);
  background: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.burger span{
  width: 18px;
  height: 2px;
  background: rgba(78,52,46,.85);
  display: block;
  position: relative;
}

.burger span::before,
.burger span::after{
  content: "";
  width: 18px;
  height: 2px;
  background: rgba(78,52,46,.85);
  position: absolute;
  left: 0;
  transition: transform .2s var(--ease), top .2s var(--ease), opacity .2s var(--ease);
}

.burger span::before{ top: -6px; }
.burger span::after{ top: 6px; }

.burger[aria-expanded="true"] span{
  background: transparent;
}

.burger[aria-expanded="true"] span::before{
  top: 0;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span::after{
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: rgba(78,52,46,.55);
  display: none;
  z-index: 9999;
}
.mobile-menu.open{ display: block; }

.mobile-panel{
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  background: white;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(78,52,46,.12);
  box-shadow: var(--shadow-md);
  animation: pop .25s var(--ease);
}

@keyframes pop{
  from{ transform: translateY(-8px); opacity: 0; }
  to{ transform: translateY(0px); opacity: 1; }
}

.mobile-links{
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.mobile-links a{
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 800;
  background: rgba(255, 138, 101, .10);
  border: 1px solid rgba(255, 138, 101, .18);
}

/* Hero */
.hero{
  padding-top: 32px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 30% 10%, rgba(255,138,101,.22), transparent 55%),
    radial-gradient(circle at 80% 40%, rgba(245,245,220,.85), transparent 60%),
    linear-gradient(180deg, rgba(255,243,224,.85), rgba(255,255,255,1));
}

.hero-grid{
  display: grid;
  gap: 18px;
  align-items: center;
}

.hero-card{
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.hero-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,138,101,.35), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(255,243,224,.95), transparent 60%);
  opacity: .65;
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.hero-logo {
  width: 220px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.15));
}

.hero-image{
  border-radius: 26px;
  border: 1px solid rgba(78,52,46,.12);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,138,101,.22), rgba(255,243,224,.9));
  box-shadow: var(--shadow-md);
  min-height: 280px;
  position: relative;
}

/* Decorative "image" placeholder */
.hero-image::before{
  content: url("../assets/start_small.png");
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.95), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,138,101,.55), transparent 55%),
    linear-gradient(135deg, rgba(255,138,101,.15), rgba(255,243,224,.95));
}

.hero-image::after{
  content: "Platzhaler Foto / Bild";
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-weight: 800;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(78,52,46,.12);
  padding: 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Services */
.service-grid{
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.service-card{
  padding: 16px;
  display: grid;
  gap: 10px;
}

.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,138,101,.15);
  border: 1px solid rgba(255,138,101,.22);
  font-size: 20px;
}

/* Gallery preview */
.preview-grid{
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.preview-item{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(78,52,46,.12);
  background: linear-gradient(135deg, rgba(255,138,101,.25), rgba(245,245,220,.92));
  min-height: 110px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.preview-item::after{
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255,255,255,.75);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(78,52,46,.12);
  font-weight: 800;
  font-size: .9rem;
}

/* Testimonials */
.testimonial-grid{
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.testimonial{
  padding: 16px;
}

.testimonial strong{
  color: rgba(78,52,46,1);
}

/* About sections */
.about-grid{
  display: grid;
  gap: 18px;
  align-items: start;
}

.profile-photo{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(78,52,46,.12);
  background-image: url("../ich.jpg");
  min-height: 320px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.profile-photo::after{
  content:
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(78,52,46,.12);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.timeline{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.timeline-item{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(255,243,224,.55);
}

.timeline-item span{
  display: inline-block;
  font-weight: 900;
  margin-bottom: 6px;
  color: rgba(78,52,46,1);
}

.quote{
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,138,101,.22);
  background: rgba(255,138,101,.08);
  font-weight: 800;
  color: rgba(78,52,46,1);
}

/* Values */
.values-grid{
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.value{
  padding: 16px;
  display: grid;
  gap: 8px;
}

/* Tabs */
.tabs{
  margin-top: 16px;
}

.tablist{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,243,224,.75);
  border: 1px solid rgba(78,52,46,.12);
}

.tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  color: rgba(78,52,46,.8);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}

.tab[aria-selected="true"]{
  background: rgba(255,138,101,.18);
  border-color: rgba(255,138,101,.25);
  color: rgba(78,52,46,1);
}

.tabpanel{
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(78,52,46,.12);
  background: white;
  box-shadow: var(--shadow-sm);
}

/* Slider */
.slider{
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(255,243,224,.6);
  position: relative;
}

.slides{
  display: flex;
  transition: transform .45s var(--ease);
}

.slide{
  min-width: 100%;
  padding: 18px;
  display: grid;
  gap: 10px;
  min-height: 240px;
  position: relative;
}

.slide .slide-art{
  flex: 1;
  border-radius: 18px;
  border: 1px solid rgba(78,52,46,.12);
  background: linear-gradient(135deg, rgba(255,138,101,.25), rgba(245,245,220,.92));
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.slide .slide-art::after{
  content: attr(data-art);
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(78,52,46,.12);
  font-weight: 900;
  font-size: .9rem;
}

.slider-controls{
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.slider-controls button{
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(255,255,255,.78);
  cursor: pointer;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.dots{
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(78,52,46,.22);
  background: rgba(255,255,255,.6);
  cursor: pointer;
}

.dot.active{
  background: var(--primary);
  border-color: rgba(255,138,101,.45);
}

/* Tutorials Accordion */
details{
  border-radius: 18px;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(255,243,224,.55);
  padding: 10px 12px;
  overflow: hidden;
}

summary{
  cursor: pointer;
  font-weight: 900;
  color: rgba(78,52,46,1);
}

details p{
  margin-top: 10px;
  color: rgba(78,52,46,.78);
}

/* Offer list */
.offer-list{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.offer{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(245,245,220,.65);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.offer strong{
  color: rgba(78,52,46,1);
}

/* Contact */
.contact-grid{
  display: grid;
  gap: 18px;
  align-items: start;
}

.form{
  padding: 16px;
}

label{
  font-weight: 800;
  font-size: .95rem;
  color: rgba(78,52,46,.9);
}

.field{
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(78,52,46,.18);
  background: white;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}

textarea{
  min-height: 130px;
  resize: vertical;
}

input:focus, textarea:focus{
  border-color: rgba(255,138,101,.55);
  box-shadow: 0 0 0 5px rgba(255,138,101,.16);
  outline: none;
}

.error{
  font-size: .9rem;
  color: #b3261e;
  font-weight: 700;
  display: none;
}

.error.show{ display: block; }

.map{
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(78,52,46,.12);
  background: linear-gradient(135deg, rgba(255,138,101,.14), rgba(255,243,224,.92));
  box-shadow: var(--shadow-md);
  position: relative;
}

.map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map::after{
  content: "Karte • Bergisch Gladbach (Platzhalter)";
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(78,52,46,.12);
  font-weight: 900;
  pointer-events: none;
}

/* Footer */
footer{
  padding: 28px 0;
  border-top: 1px solid rgba(78,52,46,.12);
  background: rgba(255,243,224,.65);
}

.footer-grid{
  display: grid;
  gap: 14px;
  align-items: start;
}

.social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social a{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(78,52,46,.12);
  background: rgba(255,255,255,.75);
  font-weight: 900;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(78,52,46,.92);
  color: white;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  z-index: 99999;
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.toast.show{
  display: flex;
  animation: toastIn .25s var(--ease);
}

@keyframes toastIn{
  from{ transform: translateX(-50%) translateY(10px); opacity: 0; }
  to{ transform: translateX(-50%) translateY(0px); opacity: 1; }
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible{
  opacity: 1;
  transform: translateY(0px);
}

/* Section anchors offset */
section{
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* Responsive */
@media (min-width: 860px){
  nav{ display: flex; }
  .burger{ display: none; }

  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
  }

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

  .preview-grid{
    grid-template-columns: repeat(4, 1fr);
  }

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

  .about-grid{
    grid-template-columns: 0.95fr 1.05fr;
  }

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

  .contact-grid{
    grid-template-columns: 1.05fr .95fr;
  }

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition: none; }
  .slides{ transition: none; }
  .btn{ transition: none; }
}/* Spezifische Stile für die Preis-Sektion */.pricing-grid {    margin-top: 30px;    align-items: stretch;}.price-list {    list-style: none;    padding: 0;    margin: 20px 0;}.price-list li {    display: flex;    justify-content: space-between;    align-items: flex-start;    padding: 10px 0;    border-bottom: 1px dashed rgba(78, 52, 46, 0.1);    font-size: 0.95rem;}.price-list li span {    font-weight: 700;    color: #4E342E;    margin-left: 10px;}.price-tag {    font-size: 2rem;    font-family: 'Playfair Display', serif;    font-weight: 700;    color: #FF8A65;    margin: 20px 0;    text-align: center;}.muted.small {    font-size: 0.8rem;    opacity: 0.7;    font-style: italic;}/* Responsive Anpassung für die Zusatzinfos */@media (max-width: 768px) {    .pricing-grid {        grid-template-columns: 1fr;    }}