/* CSS RESET & NORMALIZE */
html { scroll-behavior: smooth; }
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #F6F6F6;
  color: #181820;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.66;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 1.4em; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
:focus-visible { outline: 2px dashed #B49C68; outline-offset: 2px; }

/* BRAND FONTS (Playful Touch) */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #181820;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  color: #181820;
}
h2 { font-size: 2rem; color: #B49C68; }
h3 { font-size: 1.4rem; color: #181820; }
h4 { font-size: 1.1rem; color: #B49C68; }

/* PLAYFUL AND DYNAMIC VISUALS */
:root {
  --brand-primary: #181820;
  --brand-secondary: #B49C68;
  --brand-accent: #F6F6F6;
  --color-blue: #3FC8F6;
  --color-pink: #F66A9B;
  --color-yellow: #F9C846;
  --color-green: #68E0B7;
  --color-lavender: #A889F9;
  --shadow-lg: 0 8px 32px rgba(40,60,120,0.11);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: 0.19s cubic-bezier(.58,1.7,.43,.85);
}

main { margin-bottom: 80px; }

.section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(24,24,32,.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
.logo img { height: 48px; transition: transform var(--transition); }
.logo:hover img { transform: scale(1.07) rotate(-3deg); }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  color: #181820;
  font-size: 1rem;
  padding: 8px 7px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-yellow);
  color: #181820;
}
.cta-btn {
  font-family: 'Playfair Display', serif;
  font-size: 1.09rem;
  background: linear-gradient(90deg, var(--color-pink) 40%, var(--color-blue) 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-left: 16px;
  box-shadow: 0 4px 20px 0 rgba(68,100,250,.12);
  border: 2px solid transparent;
  letter-spacing: .03em;
  transition: transform var(--transition), box-shadow var(--transition), border 0.16s, background 0.28s;
  position: relative;
}
.cta-btn:hover,.cta-btn:focus {
  transform: scale(1.06) rotate(-1deg);
  background: linear-gradient(90deg, var(--color-yellow) 35%, var(--color-green) 100%);
  color: #181820;
  border: 2px solid var(--color-yellow);
}

/* Mobile nav */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-pink);
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform var(--transition);
  z-index: 301;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-blue);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(24,24,32, 0.97);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(120%);
  transition: transform 0.38s cubic-bezier(.61,1.04,.61,1);
  box-shadow: 0 0 180px 0 rgba(42,90,220,.11);
  padding: 56px 24px 40px 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  margin-bottom: 14px;
  border-radius: 8px;
  border: none;
  transition: background 0.13s, color 0.18s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: var(--color-yellow);
  color: #181820;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.33rem;
  padding: 14px 0;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 10px;
  transition: background 0.15s, color 0.2s;
  text-align: left;
  font-weight: 700;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: var(--color-lavender);
  color: #181820;
}

/* Hide main nav on mobile; show hamburger */
@media (max-width: 950px) {
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 951px) {
  .mobile-menu { display:none!important; }
  .mobile-menu-toggle { display: none; }
  .main-nav, .cta-btn { display: flex; }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(92deg, #F9C846 15%, #F66A9B 60%, #68E0B7 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0 18px 60px -20px rgba(68,40,160,0.11);
  animation: bg-swish 4.8s linear infinite alternate;
}
@keyframes bg-swish {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(14deg); }
}
.hero .container { justify-content: center; }
.hero .content-wrapper { text-align: center; margin: 0 auto; max-width:620px; }
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color:#181820;
  text-shadow:0 5px 28px rgba(246,106,155,0.07);
  animation: floaty 1.4s cubic-bezier(.38,.99,.91,1.09) alternate infinite;
}
@keyframes floaty {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}
.hero .subheadline {
  font-size: 1.29rem;
  margin-bottom: 30px;
  color: #23234a;
  font-family: 'Lato', Arial, sans-serif;
  animation: pop 1.8s .2s cubic-bezier(.38,1.1,.91,1.09) both;
}
@keyframes pop {
  0%{ opacity: 0;transform:scale(1.05); }
  70%{ opacity:.5; }
 100%{ opacity: 1;transform:scale(1); }
}

/* ============ CARDS, GRIDS & CONTENT FLEXBOXES ============ */
.content-wrapper, .feature-grid, .testimonial-list, .service-highlights, .blog-teaser-list, .service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}
.feature-grid, .service-highlights, .blog-teaser-list, .testimonial-list, .service-detail-list {
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 28px 24px;
  min-width: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-8px) scale(1.02); box-shadow:0 18px 60px -22px var(--color-blue, #3FC8F6); }

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 3px solid var(--color-yellow);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px 0 rgba(40,60,120, .08);
  margin-bottom: 20px;
  flex:1 1 300px;
  transition: transform 0.18s, box-shadow 0.15s;
  position: relative;
  color: #232234;
}
.testimonial-card:hover {
  transform: scale(1.025) rotate(-1.2deg) translateY(-6px);
  box-shadow: 0 18px 60px -20px var(--color-blue);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  color: #181820;
}
.testimonial-card strong { color: var(--color-pink); margin-left: 14px; font-weight: bold; font-size: 1rem; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff1f7;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 rgba(255,153,190,.092);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: transform 0.18s, box-shadow 0.12s;
  border: 2.3px dashed var(--color-pink);
  position: relative;
}
.feature-item:hover { background: #F9C84622; border-color:var(--color-blue); transform:scale(1.025); box-shadow:0 16px 50px -11px var(--color-blue, #3FC8F6); }
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 7px #F66A9B22);
}

.service-item, .service-block {
  background: #F9C84630;
  border-radius: var(--radius-sm);
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 9px 0 rgba(250,210,60,0.13);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex:1 1 220px;
  border: 2.2px solid #F9C846;
  transition: box-shadow 0.18s, border 0.16s, transform 0.13s;
}
.service-item:hover, .service-block:hover {
  border-color:var(--color-blue); box-shadow:0 10px 30px 0 var(--color-blue, #3FC8F6, .13); transform:scale(1.015);
}
.service-block .service-price, .service-item .service-price {
  font-weight: bold;
  color: var(--color-pink);
  margin-top: 6px;
  font-size: 1.03em;
}

.faq-item { margin-bottom: 14px; }
.faq-item h4 { font-size:1.09rem; color: var(--color-blue); margin-bottom:6px; }
.faq-item p { font-size:.98rem; color:#181820; margin-left: 4px; }

.service-pricing-table {
  margin: 30px 0 22px 0;
  width: 100%;
}
.service-pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size:1rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.service-pricing-table th, .service-pricing-table td {
  padding:15px 16px;
  border-bottom: 1px solid #F9C84660;
  text-align:left;
}
.service-pricing-table th {
  background: #F9C846;
  color: #181820;
  font-family: 'Playfair Display', serif; font-weight: bold;
}
.service-pricing-table tr:last-child td { border-bottom:none; }

/* Blogs */
.blog-teaser {
  background: #E3F8FF;
  border-radius: var(--radius-md);
  box-shadow:0 3px 13px #3FC8F616;
  padding:24px 14px 16px 24px;
  margin-bottom:20px;
  flex:1 1 230px;
  min-width:230px;
  transition:transform 0.14s, box-shadow 0.14s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.blog-teaser h3 { color:#3FC8F6; margin-bottom:3px; }
.blog-teaser a { color: var(--color-pink); font-weight: bold; }
.blog-teaser:hover { transform:scale(1.019) rotate(-1.1deg); background: #F66A9B22; box-shadow:0 14px 40px -12px #F66A9B33; }

/* Topic highlights, exclusive list, featured articles */
.topic-highlights, .exclusive-list, .featured-article {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow:0 2px 11px #A889F919;
  padding: 20px 18px 18px 24px;
  margin:28px 0 12px 0;
  font-size: 1.08rem;
  color:#181820;
}
.topic-highlights h3, .exclusive-list h3, .featured-article h3 { color:#A889F9; }
.topic-highlights ul, .exclusive-list ul { margin: 10px 0 0 0; }
.exclusive-list h4 { color:var(--color-pink); margin-bottom:7px; }

/* Contact / Map */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-note {
  background: #F6F6F6;
  border: 2px dashed #A889F9;
  border-radius: 16px;
  padding: 13px 14px 9px 16px;
  font-size: .98rem;
  color: #181820;
  margin-top: 6px;
}
.location-map{
  display: flex;
  align-items:flex-start;
  gap:30px;
  background:#fff;
  border-radius: 14px;
  padding:22px 16px 17px 18px;
  box-shadow:0 2px 9px #F66A9B11;
}
.location-map img { width: 56px; height: 56px; }
.directions-snippet p{
  margin-bottom:7px; color:#23234a; font-size:1rem;
}

/* Text sections */
.text-section {
  padding: 10px 0 0 0;
  max-width:780px;
  margin:0 auto 14px auto;
  font-size:1.1rem;
  color:#181820;
}
.text-section ul { margin-top: 8px; margin-bottom: 10px; }
.text-section li { margin-bottom: 4px; }

.confirmation-message {
  font-size: 1.26rem;
  margin-bottom: 12px;
  color: #181820;
  font-weight: bold;
}
.next-steps-info { color: #B49C68; margin-bottom: 18px; }

/* Rating Summary */
.rating-summary {
  font-weight: bold;
  background: #E3F8FF;
  border-radius: 16px;
  color: #181820;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  margin-top:24px;
  box-shadow: 0 4px 9px #3FC8F625;
}
.rating-summary strong { color: #F66A9B; }

/* Accordion/FAQ (Dienstleistungen)  */
.accordion {
  margin:36px 0 18px 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 14px #A889F90C;
  padding: 20px 15px 13px 18px;
}
.accordion h3 { color:var(--color-lavender); }

/* Table corrections in accordion */
@media(max-width:480px){
  .service-pricing-table th, .service-pricing-table td { padding:7px 4px; }
}

/* ========== FOOTER ========== */
footer {
  background: #181820;
  color: #fff;
  padding: 28px 0 18px 0;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  box-shadow: 0 -9px 32px -17px #F9C84622;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  opacity: .88;
  font-size: 1rem;
  font-family:'Lato', Arial, sans-serif;
  transition: color 0.17s, background 0.17s, opacity 0.16s;
  padding: 5px 9px;
  border-radius:8px;
}
.footer-nav a:hover { background:var(--color-yellow); color:#181820; opacity:1; }
footer p { font-size: 0.99rem; opacity: .75; }

/* ========== COOKIE CONSENT BANNER + MODAL ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff7eb;
  color: #181820;
  border-top: 4px solid #F9C846;
  box-shadow: 0 -5px 22px #F9C84633;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 14px 20px 14px;
  z-index: 700;
  gap:20px;
  animation: cookiepop .7s cubic-bezier(.32,1.3,.7,.92);
  font-size: 1.03em;
  flex-wrap: wrap;
}
@keyframes cookiepop { from{opacity:0;transform:translateY(80px);} to{opacity:1;transform:translateY(0);} }
.cookie-banner p { margin: 0; flex: 2 1 200px; font-size:1.07em; }
.cookie-banner .cookie-btn {
  margin: 0 5px 0 0; padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1em;
  border: none;
  background:var(--color-yellow);
  color: #181820;
  transition: background 0.14s, color 0.14s, transform 0.12s;
  box-shadow: 0 2px 8px #F9C84611;
}
.cookie-banner .cookie-btn.accept {
  background: linear-gradient(90deg,#3FC8F6, #F9C846 80%);
  color: #181820;
}
.cookie-banner .cookie-btn.settings { background: #F66A9B; color: #fff; }
.cookie-banner .cookie-btn.reject { background: #A889F9; color: #fff; }
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus{ transform:scale(1.05); opacity: .93; }

.cookie-modal-overlay {
  z-index: 1002;
  position: fixed; inset:0;
  background: rgba(24,24,32,0.79);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein .23s;
}
@keyframes fadein { from{opacity:0;} to{opacity:1;} }
.cookie-modal {
  background:#fff;
  border-radius: 26px;
  box-shadow: 0 6px 44px #A889F978;
  padding: 40px 30px 24px 30px;
  max-width: 410px;
  min-width: 286px;
  width: 88vw;
  position: relative;
  animation: pop .29s cubic-bezier(.38,1.1,.91,1.09);
}
.cookie-modal h2 { color: #F66A9B; font-size:1.19em; margin-bottom:16px; }
.cookie-modal .cookie-categorylist {
  margin-bottom:28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:11px 0;
  border-bottom:1px solid #F6F6F6;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width:38px; height: 18px;
  border-radius: 14px;
  background: #eee;
  position: relative;
  background: #F9C846aa;
  transition:background 0.17s;
}
.cookie-modal .cookie-toggle:checked {
  background: linear-gradient(90deg, #A889F9, #3FC8F6 80%);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left:2px; top:2px;
  width:14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #23234a16;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle:checked::before {
  left:22px;
}
.cookie-modal .desc { font-size:.96em; color:#23234a; margin-top:6px; padding-left:2px; }
.cookie-modal .cookie-btn { margin-top:18px; width:100%; }
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  position: absolute;
  top:8px; right: 15px;
  font-size: 1.55rem;
  color: #232234dd;
  cursor:pointer;
  border-radius: 80%;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal .close-cookie-modal:hover { background: #E3F8FF; color: #F66A9B; }

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  a, button, .cta-btn, .service-item, .feature-item, .testimonial-card, .card, .blog-teaser, .footer-nav a { transition:all var(--transition); }
}

/* ========== SPACING & RESPONSIVE FLEXBOX ========== */
@media (max-width: 980px) {
  .feature-grid, .service-highlights, .blog-teaser-list, .testimonial-list, .service-detail-list, .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item,
  .service-item,
  .card,
  .testimonial-card,
  .service-block,
  .blog-teaser {
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 22px 8px; }
  h1 { font-size:2.1rem; }
  h2 { font-size:1.35rem; }
  h3 { font-size:1.1rem; }
  .hero { border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; }
  .container { padding: 0 7px; }
  .footer-nav { flex-direction: column; gap:7px; }
  .testimonial-card, .service-item, .feature-item, .card, .service-block, .blog-teaser {
    min-width: 0;
    margin-bottom:16px;
    padding-left:13px; padding-right:13px;
  }
  .content-wrapper, .feature-grid, .service-highlights, .testimonial-list, .blog-teaser-list, .service-detail-list{
    flex-direction: column;
    gap:16px;
  }
  .text-image-section { flex-direction:column; gap:16px; }
  .location-map { flex-direction:column; gap:14px; }
}

@media (max-width: 540px) {
  .hero .content-wrapper { padding: 0 3px; }
  .hero { min-height:160px; }
  h1 { font-size:1.3rem; }
  h2 { font-size:1.03rem; }
  .cta-btn, .cookie-banner .cookie-btn { font-size:.99em; padding:10px 14px; }
  .cookie-modal { padding:18px 7px 16px 7px; }
}

/* ========== HELPERS / UTILITIES ========== */
.mt-8{margin-top:8px;}
.mt-16{margin-top:16px;}
.mt-24{margin-top:24px;}
.text-center{ text-align:center; }
.text-right{text-align:right;}
.text-left{text-align:left;}

/* Hide elements with .visually-hidden */
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ======= CUSTOM SCROLLBAR ======= */
::-webkit-scrollbar {
  width: 12px;
  background: #F9C84622;
}
::-webkit-scrollbar-thumb {
  background: #F9C84699;
  border-radius: 6px;
}

/* ========== END ========== */
