/* ═══════════════════════════════════════
   Kettelfee Niemann – Shared Stylesheet
   Responsive-Breakpoint: 1024px
   ═══════════════════════════════════════ */

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

/* ════════════════════════════
   SKIP NAVIGATION (BFSG/WCAG 2.4.1)
   ════════════════════════════ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-primary);
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }

/* ════════════════════════════
   FOCUS VISIBLE (BFSG/WCAG 2.4.7)
   ════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

:root {
  --clr-primary:   #9b2f6e;
  --clr-accent:    #e97fb8;
  --clr-gold:      #f5a7d0;
  --clr-dark:      #1a1a1a;
  --clr-light:     #fdf4f9;
  --clr-white:     #ffffff;
  --clr-muted:     #7a5566;
  --radius:        12px;
  --shadow:        0 4px 24px rgba(155,47,110,.10);
  --shadow-lg:     0 12px 48px rgba(155,47,110,.18);
  --transition:    .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--clr-light);
  color: var(--clr-dark);
  line-height: 1.7;
  font-size: 1rem;
}

/* ════════════════════════════
   NAVBAR
   ════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2rem;
  position: relative;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--clr-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  z-index: 2;
}
@media (max-width: 480px) {
  .logo { font-size: 1.75rem; }
}
.logo span { color: var(--clr-accent); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--clr-dark);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--clr-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  padding: .5rem 1.2rem !important;
  border-radius: 99px;
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #7a2357 !important; color: #fff !important; }

/* Burger Button */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 2;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
/* Burger → X animation */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ab 1024px ── */
@media (max-width: 1024px) {
  .burger { display: flex; }
  nav { position: sticky; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: .5rem 0 1rem;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-top: 2px solid var(--clr-light);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .85rem 2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--clr-light);
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }

  .nav-cta {
    margin: .5rem 2rem 0 !important;
    display: block !important;
    text-align: center !important;
    border-radius: var(--radius) !important;
    padding: .8rem 1.2rem !important;
  }
}

/* ════════════════════════════
   PAGE HERO (Unterseiten)
   ════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #5a1040 0%, var(--clr-primary) 60%, #c4457a 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: auto; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--clr-gold); text-decoration: none; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: .8rem;
}
.page-hero h1 em { color: var(--clr-accent); font-style: normal; }
.page-hero p {
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .page-hero { padding: 4rem 1.5rem 3rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 3rem 1.2rem 2.5rem; }
}

/* ════════════════════════════
   SECTIONS & CONTAINER
   ════════════════════════════ */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: auto; }

.section-label {
  display: inline-block;
  color: var(--clr-accent);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--clr-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--clr-muted);
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  section { padding: 3rem 1.2rem; }
  .section-sub { margin-bottom: 2rem; }
}

/* ════════════════════════════
   CARDS GRID (2×2 default)
   ════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.card-body { padding: 1.5rem; }
.card-body h3 { color: var(--clr-primary); font-size: 1.1rem; margin-bottom: .5rem; }
.card-body p  { color: var(--clr-muted); font-size: .95rem; }

@media (max-width: 1024px) {
  .card-body { padding: 1.2rem; }
}

/* ════════════════════════════
   SERVICE LIST
   ════════════════════════════ */
.service-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .service-items-grid { grid-template-columns: 1fr; }
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: start;
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.service-item:hover { transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--clr-primary), #d45e9a);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.service-item h3 { color: var(--clr-primary); margin-bottom: .4rem; font-size: 1.05rem; }
.service-item p  { color: var(--clr-muted); font-size: .95rem; }

@media (max-width: 480px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 1.2rem;
  }
  .service-icon {
    width: 48px; height: 48px;
    font-size: 1.3rem;
  }
}

/* ════════════════════════════
   STEPS (4 Schritte)
   ════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; gap: 1rem; }
}

.step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 56px; height: 56px;
  background: var(--clr-primary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.step h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--clr-primary); font-weight: 700; }
.step p  { color: var(--clr-muted); font-size: .93rem; }

/* ════════════════════════════
   SPLIT GRID (2 Spalten)
   ════════════════════════════ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* Bild immer oben auf Mobile */
  .split-grid .split-visual { order: -1; }
}

.split-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.split-visual:hover img { transform: scale(1.04); }

/* ════════════════════════════
   STATS ROW (2×2)
   ════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: .8rem; }
}

.stat {
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 1.2rem;
  border-left: 4px solid var(--clr-accent);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--clr-primary);
  font-weight: 700;
  line-height: 1.2;
}
.stat-label { color: var(--clr-muted); font-size: .82rem; margin-top: .2rem; }

/* ════════════════════════════
   HIGHLIGHT BOX
   ════════════════════════════ */
.highlight-box {
  background: linear-gradient(135deg, rgba(155,47,110,.07), rgba(233,127,184,.1));
  border: 1px solid rgba(155,47,110,.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.highlight-box h3 { color: var(--clr-primary); margin-bottom: .6rem; }
.highlight-box p  { color: var(--clr-muted); }

/* ════════════════════════════
   INFO TABLE
   ════════════════════════════ */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid rgba(155,47,110,.1); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: .8rem .5rem;
  color: var(--clr-muted);
  font-size: .97rem;
  vertical-align: top;
}
.info-table td:first-child {
  font-weight: 600;
  color: var(--clr-primary);
  width: 160px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .info-table { display: block; }
  .info-table tr { display: flex; flex-direction: column; padding: .6rem 0; }
  .info-table td { padding: .2rem 0; width: auto; white-space: normal; }
  .info-table td:first-child { font-size: .85rem; }
}

/* ════════════════════════════
   CONTACT CARD
   ════════════════════════════ */
.contact-card {
  background: var(--clr-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--clr-primary);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-light);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--clr-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label { font-size: .8rem; color: var(--clr-muted); margin-bottom: .1rem; }
.contact-value { font-weight: 600; color: var(--clr-dark); font-size: .97rem; }
.contact-value a { color: var(--clr-primary); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .contact-card { padding: 1.8rem; }
}
@media (max-width: 480px) {
  .contact-card { padding: 1.4rem; border-radius: var(--radius); }
}

/* ════════════════════════════
   FAQ
   ════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
details {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(155,47,110,.12);
  cursor: pointer;
}
details[open] { border-color: var(--clr-accent); }
summary {
  font-weight: 600;
  color: var(--clr-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .97rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--clr-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: .8rem; color: var(--clr-muted); font-size: .95rem; line-height: 1.7; }

/* ════════════════════════════
   CTA BANNER
   ════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #5a1040, var(--clr-primary));
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(233,127,184,.22) 0%, transparent 70%);
}
.cta-banner > .container { position: relative; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .cta-banner { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .cta-banner { padding: 3rem 1.2rem; }
}

/* ════════════════════════════
   BUTTONS
   ════════════════════════════ */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2rem;
  background: var(--clr-gold);
  color: var(--clr-dark);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 99px;
  text-decoration: none;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-call::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  background: var(--clr-gold);
  opacity: .35;
  animation: ring-pulse 2s ease-out infinite;
}
.btn-call::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 99px;
  background: var(--clr-gold);
  opacity: .15;
  animation: ring-pulse 2s .4s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(1);   opacity: .35; }
  100% { transform: scale(1.5); opacity: 0; }
}
.btn-call:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245,167,208,.6); }

.phone-icon {
  display: inline-block;
  animation: shake-phone 3s ease-in-out infinite;
}
@keyframes shake-phone {
  0%,89%,100% { transform: rotate(0); }
  91%          { transform: rotate(-15deg); }
  93%          { transform: rotate(15deg); }
  95%          { transform: rotate(-10deg); }
  97%          { transform: rotate(10deg); }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--clr-white);
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: #7a2357; transform: translateY(-2px); }

/* Button-Gruppen auf Mobile gestapelt */
@media (max-width: 480px) {
  .btn-call, .btn-outline, .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: .97rem;
    padding: .85rem 1.5rem;
  }
  .hero-cta,
  .cta-banner div[style*="flex"] {
    flex-direction: column !important;
    align-items: center;
  }
}

/* ════════════════════════════
   FLOATING CALL BUTTON
   ════════════════════════════ */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--clr-gold);
  color: var(--clr-dark);
  width: 62px; height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.float-call::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--clr-gold);
  opacity: .3;
  animation: ring-pulse 2.2s ease-out infinite;
}
.float-call:hover { transform: scale(1.12); }

@media (max-width: 480px) {
  .float-call { bottom: 1.2rem; right: 1.2rem; width: 54px; height: 54px; font-size: 1.4rem; }
}

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
footer {
  background: #1a0a12;
  color: rgba(255,255,255,.6);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: .6rem;
}
.footer-desc { font-size: .92rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--clr-accent); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.footer-copy { font-size: .82rem; text-align: center; }
footer a { color: var(--clr-accent); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-desc { max-width: 100%; }
  footer { padding: 2.5rem 1.2rem 1.2rem; }
}

/* ════════════════════════════
   IMPRESSUM / LEGAL
   ════════════════════════════ */
.legal-section { background: var(--clr-white); }
.legal-block { margin-bottom: 2.5rem; }
.legal-block h2 {
  font-family: 'Playfair Display', serif;
  color: var(--clr-primary);
  font-size: 1.4rem;
  margin-bottom: .8rem;
  border-bottom: 2px solid var(--clr-light);
  padding-bottom: .5rem;
}
.legal-block p,
.legal-block address {
  color: var(--clr-muted);
  font-size: .97rem;
  font-style: normal;
  line-height: 1.8;
}
.legal-block a { color: var(--clr-primary); }

/* ════════════════════════════
   SCROLL REVEAL
   ════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════
   HERO (Homepage)
   ════════════════════════════ */
.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5a1040 0%, #9b2f6e 50%, #c4457a 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(233,127,184,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,167,208,.12) 0%, transparent 40%);
  animation: pulse-bg 8s ease-in-out infinite alternate;
}
@keyframes pulse-bg { from { opacity: .6; } to { opacity: 1; } }
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 0 1rem; }
.hero-badge {
  display: inline-block;
  background: rgba(245,167,208,.2);
  border: 1px solid rgba(245,167,208,.45);
  color: #f9d0ea;
  padding: .35rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  animation: fadeDown .7s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  animation: fadeDown .7s .15s ease both;
}
.hero h1 em { color: var(--clr-accent); font-style: normal; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeDown .7s .3s ease both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeDown .7s .45s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 1024px) {
  .hero { min-height: 80vh; padding: 4rem 1.5rem 5rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 100svh; padding: 3.5rem 1.2rem 5rem; }
}

/* ════════════════════════════
   IMAGE GALLERY
   ════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(90,16,64,.85), transparent);
  color: #fff;
  padding: 1rem;
  font-size: .9rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ════════════════════════════
   MAP WRAPPER
   ════════════════════════════ */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/7;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 1024px) {
  .map-wrapper { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .map-wrapper { aspect-ratio: 1/1; }
}

/* ════════════════════════════
   CHECK LIST
   ════════════════════════════ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: var(--clr-muted);
  font-size: .97rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  color: var(--clr-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ════════════════════════════
   STEPS-3 (3-Spalten-Variante)
   ════════════════════════════ */
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .steps-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .steps-3 { grid-template-columns: 1fr; } }

/* ════════════════════════════
   UTILITY: CENTER TEXT GROUP
   ════════════════════════════ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
