/* =====================================================================
   Laura Violetta Lex — main.css   (Editorial Botanical, per DESIGN.md)
   ===================================================================== */

:root{
  /* palette */
  --espresso:#2C2A1E; --olive-petal:#A3A380; --deep-blossom:#8C4A55;
  --deep-blossom-h:#723C46; --arctic-daisy:#EFEBCE; --petal-white:#FBF9EF;
  --golden-clover:#D7CE93; --rose-blush:#D8A48F; --peach-blossom:#B88588;
  --gold:#C9A24B;
  --ink-soft:#5b5742;
  /* WCAG-AA text shade of the olive (>=4.8:1 on the cream backgrounds); the lighter
     --olive-petal stays for backgrounds/decoration where contrast doesn't apply. */
  --olive-text:#67664f;
  /* Deep olive for the CTA bands: light cream text on this meets WCAG AA (~5.6:1),
     while --olive-petal stays for decorative backgrounds where contrast doesn't apply. */
  --olive-deep:#5E5E40;
  /* type */
  --f-display:'Fraunces',Georgia,serif;
  --f-script:'Great Vibes',cursive;
  --f-body:'DM Sans',system-ui,sans-serif;
  /* spacing */
  --gutter:clamp(1.2rem,4vw,2rem);
  --section-y:clamp(3.5rem,9vw,7rem);
  --maxw:1180px; --maxw-narrow:760px;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:auto;background:var(--arctic-daisy)}
/* Lenis smooth-scroll — required CSS for the smoothing to engage */
html.lenis,html.lenis body{height:auto}
.lenis.lenis-smooth{scroll-behavior:auto!important}
.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}
.lenis.lenis-stopped{overflow:hidden}
.lenis.lenis-smooth iframe{pointer-events:none}

body{
  font-family:var(--f-body);
  background:var(--arctic-daisy);
  color:var(--espresso);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

/* film grain — faint paper texture over the whole frame (no blend mode: keeps it cheap to composite) */
body::after{content:"";position:fixed;inset:0;z-index:9999;pointer-events:none;opacity:.045;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E")}

/* ── typography ── */
.headline-display{font-family:var(--f-display);font-weight:600;font-size:clamp(2.6rem,7vw,5.5rem);line-height:.98;letter-spacing:-.02em}
.headline-lg{font-family:var(--f-display);font-weight:600;font-size:clamp(2rem,4.5vw,3.2rem);line-height:1.05;letter-spacing:-.015em}
.headline-md{font-family:var(--f-display);font-weight:600;font-size:clamp(1.4rem,3vw,2rem);line-height:1.15}
.script-accent{font-family:var(--f-script);font-weight:400;line-height:1}
.eyebrow{display:inline-block;font-family:var(--f-body);font-weight:500;text-transform:uppercase;letter-spacing:.22em;font-size:.78rem;color:var(--olive-text);margin-bottom:.9rem}
.text-accent{font-family:var(--f-display);font-style:italic;font-size:1.2rem;color:var(--deep-blossom)}
.rich-text p{margin:0 0 1.1rem;font-size:1.06rem;color:var(--ink-soft)}
.text-center{text-align:center}

/* ── layout ── */
.container{max-width:var(--maxw);margin:0 auto;padding:0 var(--gutter)}
.container--narrow{max-width:var(--maxw-narrow)}
.section{padding:var(--section-y) 0;position:relative}
.section-head{margin-bottom:clamp(2rem,5vw,3.5rem)}

/* ── buttons & links ── */
.btn{display:inline-block;font-family:var(--f-body);font-weight:500;text-transform:uppercase;letter-spacing:.13em;font-size:.85rem;padding:.95rem 2.1rem;border-radius:9999px;border:1.5px solid transparent;text-decoration:none;cursor:pointer;transition:background .25s,color .25s,border-color .25s}
.btn--primary{background:var(--deep-blossom);color:var(--arctic-daisy)}
.btn--primary:hover{background:var(--deep-blossom-h)}
.btn--lg{padding:1.1rem 2.6rem;font-size:.92rem}
.link-underline{font-family:var(--f-body);font-weight:500;letter-spacing:.04em;text-decoration:none;color:var(--olive-text);border-bottom:1.5px solid var(--gold);padding-bottom:2px}
.link-underline:hover{color:var(--deep-blossom)}

/* ── header / nav (glassmorphism card + logo) ── */
.site-header{position:fixed;top:1.3rem;left:0;right:0;z-index:60;display:flex;justify-content:center;padding:0 var(--gutter);transition:transform .45s ease}
.site-header.is-hidden{transform:translateY(-170%)}
.nav-card{display:flex;align-items:center;gap:.35rem;padding:.55rem 1.5rem;max-width:96vw;flex-wrap:wrap;justify-content:center;
  background:rgba(255,255,255,.10);backdrop-filter:blur(18px) saturate(150%);-webkit-backdrop-filter:blur(18px) saturate(150%);
  border:1px solid rgba(255,255,255,.22);border-radius:9999px;
  box-shadow:0 10px 40px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.12);
  transition:background .45s ease,border-color .45s ease,box-shadow .45s ease}
.site-brand{flex:0 0 auto;display:flex;align-items:center}
.site-brand__logo{height:50px;width:auto;display:block}
.nav-divider{display:block;width:1px;height:1.4rem;background:rgba(255,255,255,.30);flex-shrink:0;margin:0 .35rem}
.site-nav{display:flex}
.nav-menu{list-style:none;display:flex;align-items:center;gap:.05rem;flex-wrap:wrap;justify-content:center}
.nav-menu a{font-family:var(--f-body);font-weight:400;font-size:.95rem;letter-spacing:.3em;text-transform:uppercase;text-decoration:none;color:var(--petal-white);padding:.55rem 1.1rem;border-radius:9999px;white-space:nowrap;text-shadow:0 1px 6px rgba(0,0,0,.34);transition:background .25s,color .25s}
.nav-menu a:hover{color:var(--rose-blush)}
.nav-sep{display:flex;align-items:center;padding:0;pointer-events:none;flex-shrink:0}
.nav-sep span{font-family:var(--f-body);font-size:.8rem;font-weight:400;letter-spacing:0;text-transform:none;color:rgba(255,255,255,.55);line-height:1}
/* scrolled onto light sections — keep the glass, adapt for legibility */
.site-header.is-scrolled .nav-card{background:rgba(251,249,239,.66);border-color:rgba(44,42,30,.10);box-shadow:0 8px 30px rgba(44,42,30,.12)}
.site-header.is-scrolled .nav-menu a{color:var(--espresso);text-shadow:none}
.site-header.is-scrolled .nav-menu a:hover{color:var(--deep-blossom)}
.site-header.is-scrolled .nav-sep span{color:rgba(44,42,30,.35)}
.site-header.is-scrolled .nav-divider{background:rgba(44,42,30,.18)}
.nav-toggle{display:none;align-items:center;justify-content:center;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle__icon{width:23px;height:23px;color:#fff;transition:color .25s}
.site-header.is-scrolled .nav-toggle__icon{color:var(--espresso)}
/* dropdown (Leistungen) */
.nav-has-sub{position:relative}
.nav-caret{font-size:.85em;opacity:1;margin-left:.25em;vertical-align:-.05em}
/* invisible hover-bridge: keeps the menu open while the cursor crosses the gap */
.nav-has-sub::after{content:"";position:absolute;top:100%;left:-10px;right:-10px;height:22px;display:none}
.nav-has-sub:hover::after{display:block}
.nav-sub{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);min-width:240px;list-style:none;background:var(--petal-white);border-radius:16px;padding:.5rem;box-shadow:0 16px 44px rgba(44,42,30,.20);opacity:0;visibility:hidden;transition:opacity .25s,transform .25s}
.nav-has-sub:hover .nav-sub,.nav-has-sub:focus-within .nav-sub{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav-sub li{display:block}
.nav-sub a{display:block;font-family:var(--f-body);font-weight:400;color:var(--espresso)!important;text-shadow:none!important;font-variant:normal;text-transform:uppercase;font-size:1rem;letter-spacing:.16em;text-align:center;padding:.6rem 1.1rem;border-radius:9999px;white-space:nowrap}
.nav-sub a:hover{color:var(--deep-blossom)!important}

/* ── hero ── */
.hero-track{position:relative;height:2400px;background:#1c1a14}
.hero-viewport{position:sticky;top:0;height:100vh;overflow:hidden;background:#1c1a14 center/cover no-repeat url(../hero/hero-poster.webp)}
.hero-canvas{position:absolute;inset:0;width:100%;height:100%;display:block;
  /* subtle cool grade to resolve warm hero into the muted palette */
  filter:saturate(.9) brightness(.97) contrast(1.02);}
.hero-viewport::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(44,42,30,.06) 0%,rgba(239,235,206,0) 86%,var(--arctic-daisy) 100%);pointer-events:none}
.hero-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:2rem;opacity:0;pointer-events:none;z-index:2}
.hero-name{opacity:1}
.hero-title{color:#fff;font-size:clamp(3rem,9vw,7rem);text-shadow:0 2px 30px rgba(0,0,0,.45)}
.hero-subtitle{font-family:var(--f-body);font-weight:400;text-transform:uppercase;letter-spacing:.3em;font-size:clamp(.7rem,1.6vw,.95rem);color:var(--petal-white);text-shadow:0 1px 12px rgba(0,0,0,.5);margin-top:.8rem;opacity:0}
.subtitle-clef{font-size:1.9em;line-height:0;letter-spacing:0;vertical-align:-.12em;display:inline-block;margin:0 .12em}
.scroll-hint{position:absolute;bottom:2.2rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:.6rem;z-index:3;transition:opacity .5s}
.scroll-hint span:first-child{font-family:var(--f-body);text-transform:uppercase;letter-spacing:.26em;font-size:.68rem;color:rgba(255,255,255,.85)}
.scroll-hint__line{width:1px;height:2rem;background:rgba(255,255,255,.6);animation:hintPulse 1.8s ease-in-out infinite}
.scroll-hint.is-hidden{opacity:0}
@keyframes hintPulse{0%,100%{opacity:.3;transform:scaleY(.7)}50%{opacity:1;transform:scaleY(1)}}

/* ── marquee ── */
.marquee{background:var(--golden-clover);overflow:hidden;white-space:nowrap;padding:.8rem 0}
.marquee__track{display:inline-flex;animation:marquee 26s linear infinite;will-change:transform}
.marquee__track span{font-family:var(--f-body);text-transform:uppercase;letter-spacing:.22em;font-size:.82rem;color:var(--olive-petal)}
/* "Alt rosa" variant — bridges the flower-tiled section into the FAQ on service pages
   that have no quote band. Same tonal treatment as the homepage marquee (mauve on rose). */
.marquee--rosa{background:var(--rose-blush)}
.marquee--rosa .marquee__track span{color:var(--peach-blossom)}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── welcome ── */
/* full-width image band */
.section--band{position:relative;min-height:58vh;display:flex;align-items:center;justify-content:center;text-align:center;background-size:cover;background-position:center;background-attachment:fixed}
.section--band::before{content:"";position:absolute;inset:0;background:rgba(44,42,30,.42)}
.section--band__inner{position:relative;z-index:2;padding:2rem;display:flex;align-items:center;justify-content:center;gap:clamp(1.4rem,4vw,3.4rem);flex-wrap:wrap}
.section--band__logo{flex:0 0 auto;width:clamp(190px,23vw,320px);height:auto;filter:drop-shadow(0 8px 26px rgba(0,0,0,.4))}
.section--band .script-accent{color:#fff;font-size:clamp(2.6rem,6vw,4.6rem);text-shadow:0 2px 26px rgba(0,0,0,.45);text-align:center;max-width:17ch;margin:0}
@media(max-width:760px){.section--band{background-attachment:scroll;min-height:46vh}.section--band .script-accent{text-align:center}}

.section--welcome{background:var(--arctic-daisy);position:relative;overflow:hidden}
.section--welcome .headline-display,
.section--service-welcome .headline-display,
.section--intro .headline-display,
.welcome-text .headline-display{margin:.2rem 0 clamp(1.4rem,4vw,2.2rem)}
.section--welcome .container{position:relative;z-index:2}
/* vintage rose sprays flanking the text — white drops out via multiply on the cream bg */
.welcome-flower{position:absolute;top:50%;transform:translateY(-50%);width:clamp(150px,16vw,300px);aspect-ratio:760/1054;background-size:contain;background-repeat:no-repeat;background-position:center;mix-blend-mode:multiply;opacity:.92;pointer-events:none;z-index:1}
.welcome-flower--l{left:clamp(10px,6vw,170px)}
.welcome-flower--r{right:clamp(10px,6vw,170px);transform:translateY(-50%) scaleX(-1)}
@media(max-width:1100px){
  .welcome-flower{top:-10px;transform:none;opacity:.90;width:clamp(68px,17vw,100px);z-index:1}
  .welcome-flower--l{left:clamp(4px,2vw,12px)}
  .welcome-flower--r{right:clamp(4px,2vw,12px);transform:scaleX(-1)}
  .welcome-text .container,
  .service-welcome-text .container,
  .section--intro .container{padding-left:clamp(55px,15vw,90px);padding-right:clamp(55px,15vw,90px)}
  .welcome-text .headline-display,
  .service-welcome-text .headline-display,
  .section--intro .headline-display,
  .section--intro h1,
  .section--intro h2{padding-left:0;padding-right:0;overflow-wrap:break-word;word-break:break-word}
}
.mobile-only{display:none}
@media(max-width:760px){
  .welcome-text .headline-display,
  .service-welcome-text .headline-display,
  .section--intro .headline-display,
  .section--intro h1,
  .section--intro h2{font-size:clamp(1.75rem,6.2vw,2.4rem);line-height:1.08}
  .mobile-only{display:inline}
}
/* welcome text block — flowers anchor to the TEXT (not the whole tall section) */
.welcome-text{position:relative}
/* welcome portrait card — rises from below on scroll (GSAP pin + scrub) */
.welcome-portrait-wrap{display:flex;justify-content:center;padding:1rem var(--gutter) 2rem;position:relative;z-index:2}
.welcome-portrait{will-change:transform,opacity;position:relative;display:flex;justify-content:center}
.welcome-portrait__card{
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.48);
  border-radius:30px;
  box-shadow:0 28px 72px rgba(44,42,30,.18),0 4px 14px rgba(44,42,30,.08);
  overflow:hidden;
  width:min(440px,86vw);
  padding:12px 12px 1.6rem
}
.welcome-portrait__card img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top center;border-radius:22px;display:block}
.welcome-portrait__name{text-align:center;font-size:clamp(2rem,5vw,3rem);color:var(--espresso);margin-top:.9rem;line-height:1.1}
/* interior intro sections WITH flowers (services + Über mich): make the section tall
   enough and vertically center its content, so the centered flanking flowers sit fully
   below the hero and are never clipped at the top or the bottom */
.section--intro:has(.welcome-flower){min-height:30rem;display:flex;flex-direction:column;justify-content:center}
@media(min-width:1101px){
  .section--intro .welcome-flower{width:clamp(150px,16vw,250px)}
}
@media(max-width:900px){.section--intro:has(.welcome-flower){min-height:auto;display:block}}

/* ── service-page welcome (Trauerfeier-Gesang) ── */
.section--service-welcome{background:var(--arctic-daisy);position:relative;overflow:hidden}
.section--service-welcome .headline-display{margin:.2rem 0 1.4rem}
.section--service-welcome .container{position:relative;z-index:2}
.service-welcome-text{position:relative}
/* portrait rises from below, aligned right */
.service-welcome-portrait-wrap{display:flex;justify-content:center;padding:1rem var(--gutter) 2rem;position:relative;z-index:2}
.service-welcome-portrait{will-change:transform,opacity;position:relative;display:flex;justify-content:center}
.service-welcome-portrait__card{
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.48);
  border-radius:30px;
  box-shadow:0 28px 72px rgba(44,42,30,.18),0 4px 14px rgba(44,42,30,.08);
  overflow:hidden;
  width:min(440px,86vw);
  padding:12px 12px 1.6rem
}
.service-welcome-portrait__card img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top center;border-radius:22px;display:block}

/* ── services ── */
.section--services{background:var(--petal-white)}
.cutout{position:absolute;width:clamp(110px,14vw,190px);pointer-events:none;z-index:1;filter:drop-shadow(0 14px 26px rgba(44,42,30,.18))}
.cutout--tl{top:-26px;left:3%;transform:rotate(-10deg)}
/* ── USP: dual angle (Gesang & Worte aus einer Hand) ── */
.section--usp{background:var(--petal-white)}
.usp-lead{max-width:var(--maxw-narrow);margin:1rem auto 0;color:var(--ink-soft);font-size:1.05rem;line-height:1.7}
.usp-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.8rem;margin-top:clamp(2rem,5vw,3.2rem)}
.usp-item{background:var(--arctic-daisy);border-radius:20px;padding:2rem 1.7rem;box-shadow:0 10px 30px rgba(44,42,30,.07);border-top:3px solid var(--deep-blossom)}
.usp-item__title{font-family:var(--f-display);font-weight:600;font-size:1.3rem;margin-bottom:.6rem;color:var(--espresso)}
.usp-item p{font-size:.96rem;color:var(--ink-soft);line-height:1.65}

.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:1.8rem}
.service-card{--svc:var(--deep-blossom);display:flex;flex-direction:column;background:var(--arctic-daisy);border-radius:20px;overflow:hidden;border-top:5px solid var(--svc);text-decoration:none;color:inherit;box-shadow:0 10px 30px rgba(44,42,30,.07);transition:transform .35s ease,box-shadow .35s ease}
.service-card:hover{transform:translateY(-6px);box-shadow:0 18px 42px color-mix(in srgb,var(--svc) 35%,transparent)}
/* Homepage Leistungen: 7 services in a 3-col grid → centre the lone 7th card in the
   middle column (under "Willkommensfeste"). Only at the 3-column width; below that the
   grid reflows to 2/1 columns where it already stacks naturally. */
@media(min-width:1024px){
  .section--services .service-grid > .service-card:nth-child(7){grid-column:2}
}
.service-card__media{height:200px;background-size:cover;background-position:center 25%;filter:saturate(.92)}
.service-card__body{padding:1.6rem 1.5rem 1.8rem;display:flex;flex-direction:column;flex:1}
.service-card__title{font-family:var(--f-display);font-weight:600;font-size:1.4rem;margin-bottom:.5rem;color:color-mix(in srgb,var(--svc) 58%,var(--espresso))}
.service-card__text{font-size:.96rem;color:var(--ink-soft);flex:1}
.service-card__more{margin-top:1rem;font-weight:500;letter-spacing:.06em;font-size:.85rem;color:color-mix(in srgb,var(--svc) 70%,var(--espresso))}

/* ── testimonials ── */
.section--testimonials{background:var(--rose-blush)}
/* photo background variant (Referenzen, first section after hero) */
.section--photobg{position:relative;background-size:cover;background-position:center;background-attachment:fixed}
.section--photobg::before{content:"";position:absolute;inset:0;background:rgba(247,240,228,.5);z-index:0}
.section--photobg>*{position:relative;z-index:1}
@media(max-width:760px){.section--photobg{background-attachment:scroll}}
/* tiled photo background (homepage testimonials) — image repeated side by side, cards on top */
.section--tiledbg{position:relative;background-repeat:repeat;background-size:25% auto}
.section--tiledbg::before{content:"";position:absolute;inset:0;background:rgba(247,240,228,.45);z-index:0}
.section--tiledbg>*{position:relative;z-index:1}
@media(max-width:760px){.section--tiledbg{background-size:50% auto}}
.testimonial-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.6rem}
.testimonial-card{background:var(--petal-white);border-radius:20px;padding:2rem;box-shadow:0 10px 30px rgba(44,42,30,.10)}
.testimonial-card__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:.7rem}
.testimonial-card__stars{color:var(--gold);letter-spacing:.18em}
.testimonial-card__google{display:inline-flex;align-items:center;gap:.32rem;text-decoration:none;font-family:var(--f-body);font-weight:500;font-size:.72rem;letter-spacing:.05em;color:var(--ink-soft);opacity:.9;transition:opacity .2s;flex-shrink:0}
.testimonial-card__google:hover{opacity:1}
.testimonial-card blockquote{font-family:var(--f-display);font-style:italic;font-size:1.22rem;line-height:1.5;border:0;margin:0 0 1rem}
.testimonial-card figcaption{font-family:var(--f-body);text-transform:uppercase;letter-spacing:.14em;font-size:.78rem;color:var(--peach-blossom)}

/* ── CTA ── */
.section--cta{background:var(--olive-deep);color:var(--arctic-daisy);overflow:hidden}
.section--cta .headline-display{color:var(--arctic-daisy)}
.cta-lead{max-width:46ch;margin:1rem auto 2rem;color:#f3f1e0;font-size:1.1rem}
.petals{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;opacity:.55}
.section--cta .container{position:relative;z-index:2}

/* ── footer ── */
.site-footer{background:var(--espresso);color:var(--arctic-daisy);position:relative;overflow:hidden}
.site-footer>.site-footer__inner,.site-footer>.site-footer__base{position:relative;z-index:1}
.site-footer__inner{max-width:var(--maxw);margin:0 auto;padding:clamp(3rem,6vw,4.5rem) var(--gutter) 2.5rem;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:2rem}
.site-footer__brand .script-accent{font-size:2.4rem;color:var(--golden-clover)}
.footer-label{font-size:.85rem;letter-spacing:.06em;color:#c7c2a8;margin-top:.4rem}
.footer-heading{font-family:var(--f-display);font-weight:500;font-size:1.05rem;margin-bottom:.8rem;color:var(--rose-blush)}
.footer-list{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.footer-list a{text-decoration:none;color:var(--arctic-daisy);font-size:.92rem;opacity:.85;transition:opacity .2s}
.footer-list a:hover{opacity:1;color:var(--golden-clover)}
.site-footer__base{border-top:1px solid rgba(255,255,255,.12);text-align:center;padding:1.4rem;font-size:.8rem;color:#b7b298}

/* ── scroll reveals (GSAP also drives these; CSS is the no-JS fallback) ── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .9s cubic-bezier(.165,.84,.44,1),transform .9s cubic-bezier(.165,.84,.44,1);will-change:opacity,transform;backface-visibility:hidden}
.no-js .reveal,.reveal.is-in{opacity:1;transform:none}

/* Hide mobile drawer header, footer and caret-toggle on desktop */
@media(min-width:881px){
  .site-nav__header,.site-nav__footer,.nav-caret-toggle{display:none!important}
}

/* ── responsive ── */
@media(max-width:880px){
  .site-header{top:.8rem;left:0;right:0;padding:0 1.2rem;display:flex;justify-content:flex-end;align-items:center}
  .site-brand{display:none!important}
  .nav-card{position:relative;width:44px;height:44px;padding:0;border-radius:12px;background:none;backdrop-filter:none;-webkit-backdrop-filter:none;border-color:transparent;box-shadow:none;display:flex;align-items:center;justify-content:center;cursor:pointer}
  .nav-card::before{content:"";position:absolute;inset:0;border-radius:12px;background:rgba(255,255,255,.16);backdrop-filter:blur(18px) saturate(150%);-webkit-backdrop-filter:blur(18px) saturate(150%);border:1px solid rgba(255,255,255,.24);box-shadow:0 8px 28px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.12);transition:background .35s ease,border-color .35s ease}
  .site-header.is-scrolled .nav-card::before,body.nav-open .nav-card::before{background:rgba(251,249,239,.88);border-color:rgba(44,42,30,.12);box-shadow:0 8px 28px rgba(44,42,30,.12)}
  .nav-toggle{display:flex;align-items:center;justify-content:center;position:relative;z-index:70;background:none;border:none;cursor:pointer;padding:0;width:100%;height:100%}
  .nav-toggle__label{display:none!important}
  .nav-toggle__icon{width:24px;height:24px;color:#fff;flex:0 0 auto;transition:color .25s}
  .site-header.is-scrolled .nav-toggle__icon,body.nav-open .nav-toggle__icon{color:var(--espresso)}
  .nav-divider{display:none}
  .site-nav{position:fixed;inset:0;background:var(--petal-white);opacity:0;visibility:hidden;transition:opacity .35s ease,visibility 0s linear .35s;padding:1.4rem 1.6rem 2.5rem;overflow-y:auto;display:flex;flex-direction:column;justify-content:space-between;z-index:90}
  body.nav-open .site-nav{opacity:1;visibility:visible;transition-delay:0s}
  body.nav-open{overflow:hidden}
  .site-nav__header{display:flex;align-items:center;justify-content:space-between;width:100%;padding-bottom:1rem;border-bottom:1px solid rgba(44,42,30,.08);margin-bottom:1rem}
  .site-nav__brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;color:var(--espresso)}
  .site-nav__logo{width:38px;height:38px;border-radius:50%;box-shadow:0 2px 8px rgba(0,0,0,.15)}
  .site-nav__title{font-family:var(--f-display);font-size:1.25rem;font-weight:600;font-style:normal;letter-spacing:-.01em;color:var(--espresso)}
  .site-nav__close{background:none;border:none;font-size:2.2rem;line-height:1;color:var(--espresso);cursor:pointer;padding:0;width:44px;height:44px;display:flex;align-items:center;justify-content:center}
  .site-nav .nav-menu{flex-direction:column;flex-wrap:nowrap;align-items:center;gap:.25rem;text-align:center;width:100%;margin:auto 0}
  .site-nav .nav-menu>li{width:100%}
  .site-nav .nav-menu a{color:var(--espresso)!important;text-shadow:none!important;font-size:1.22rem;padding:.75rem 0;display:inline-block;letter-spacing:.03em}
  .nav-has-sub{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative}
  .nav-parent-link{display:inline-block;padding:.75rem 0 .75rem 1.8rem!important}
  .nav-caret-toggle{background:none;border:none;color:var(--espresso);font-size:.78rem;padding:.75rem .8rem;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;transition:transform .3s ease}
  .nav-has-sub.is-open .nav-caret-toggle{transform:rotate(180deg)}
  .site-nav__footer{width:100%;padding-top:1.2rem;display:flex;justify-content:center;border-top:1px solid rgba(44,42,30,.08);margin-top:auto}
  .site-nav__cta{width:100%;max-width:280px;text-align:center;padding:.9rem 1.6rem!important;font-family:var(--f-body);font-size:.9rem!important;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--petal-white)!important;background:var(--deep-blossom);border-radius:9999px;box-shadow:0 6px 20px rgba(140,74,85,.25);transition:background .25s ease,transform .25s ease,box-shadow .25s ease;display:inline-block;text-decoration:none!important}
  .site-nav__cta:hover,.site-nav__cta:focus{background:var(--deep-blossom-h);transform:translateY(-2px);box-shadow:0 10px 26px rgba(140,74,85,.38);color:var(--petal-white)!important}
  .site-nav__cta:active{transform:translateY(0);box-shadow:0 4px 12px rgba(140,74,85,.2)}
  .nav-sep{display:none}
  .nav-sub{position:static;transform:none!important;box-shadow:none;background:rgba(44,42,30,.03);border-left:3px solid var(--rose-blush);padding:0;min-width:0;width:100%;max-height:0;opacity:0;visibility:hidden;overflow:hidden;border-radius:0 12px 12px 0;margin:.3rem 0;transition:max-height .35s ease,opacity .25s ease,padding .35s ease}
  .nav-has-sub.is-open .nav-sub{max-height:28rem;opacity:1;visibility:visible;padding:.4rem 0}
  .nav-sub li{width:100%;display:block}
  .nav-sub a{text-align:center!important;font-size:1.02rem!important;padding:.65rem 1rem!important;letter-spacing:.02em;white-space:normal;color:var(--espresso)!important;opacity:.9;display:block;border-radius:8px;transition:background .2s ease,color .2s ease}
  .nav-sub a:hover,.nav-sub a:focus{opacity:1;color:var(--deep-blossom)!important;background:rgba(216,164,143,.14)}
  .site-footer__inner{grid-template-columns:1fr 1fr}

  /* Mobile/Tablet odd-count card grid: center the solo last card with 100% identical card width */
  @media (min-width: 660px) and (max-width: 980px) {
    .service-grid > *:last-child:nth-child(odd),
    .testimonial-grid > *:last-child:nth-child(odd),
    .usp-grid > *:last-child:nth-child(odd),
    .why-grid > *:last-child:nth-child(odd),
    .hoerprobe-grid > *:last-child:nth-child(odd),
    .media-grid > *:last-child:nth-child(odd),
    .ratgeber-grid > *:last-child:nth-child(odd),
    .article-grid > *:last-child:nth-child(odd),
    .cards-grid > *:last-child:nth-child(odd) {
      grid-column: 1 / -1;
      justify-self: center;
      width: calc(50% - 0.9rem);
      max-width: 100%;
    }
  }

  /* Mobile-only post-parallax block media sizing */
  .service-block__media {
    aspect-ratio: 4/5;
    width: 100%;
    max-height: 480px;
    background-size: cover;
    background-position: center 18%;
    margin: 0 auto;
  }
  .story-florals .service-block__grid {
    align-items: center!important;
  }
  .story-florals .service-block__media {
    height: auto;
    max-height: 480px;
  }
}
@media(max-width:880px){
  .hero-track{height:180vh}
}
@media(max-width:560px){
  .site-footer__inner{grid-template-columns:1fr}
  .hero-track{height:180vh}
  .hero-name{opacity:1!important}
  .scroll-hint{display:none}
}

/* ── service pages ── */
.eyebrow--light{color:var(--golden-clover)}
.service-hero__title{color:#fff;text-shadow:0 2px 28px rgba(0,0,0,.4);margin-top:.3rem}
.section--intro{background:var(--arctic-daisy);padding-bottom:clamp(2rem,5vw,3rem);position:relative;overflow:hidden}
.section--intro .container{position:relative;z-index:2}
.price-pill{display:inline-block;margin-top:1.6rem;background:var(--golden-clover);color:var(--espresso);font-weight:500;letter-spacing:.04em;padding:.5rem 1.4rem;border-radius:9999px;font-size:.95rem}
.service-blocks{background:var(--arctic-daisy)}
.service-block{padding:clamp(2rem,5vw,3.5rem) 0}
.service-block__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,4vw,3.5rem);align-items:center}
.service-block__grid--single{grid-template-columns:1fr;max-width:760px;margin:0 auto;text-align:center}
.service-block--reverse .service-block__media{order:2}
.service-block__media{min-height:340px;border-radius:20px;background-size:cover;background-position:center 22%;filter:saturate(.92);box-shadow:0 14px 38px rgba(44,42,30,.12)}
/* delicate vintage tendrils framing a photo (top-left + bottom-right) */
.service-block__media{position:relative}
.service-block__media::before,.service-block__media::after{content:"";position:absolute;width:clamp(160px,20vw,250px);aspect-ratio:480/540;background-size:contain;background-repeat:no-repeat;pointer-events:none;z-index:3}
.service-block__media::before{top:-50px;left:-50px;background-image:url(../img/borduere-tl.webp?v=3);background-position:top left}
.service-block__media::after{bottom:-62px;right:-62px;background-image:url(../img/borduere-br.webp?v=3);background-position:bottom right}
.service-block__text h2{margin-bottom:1rem}
/* Über-mich story band: floral tiled background, no image-hugging tendrils here,
   photos stretch to match their text column's height */
.story-florals .service-block__media::before,
.story-florals .service-block__media::after{display:none}
.story-florals .service-block__grid{align-items:stretch}
.story-florals .service-block__media{height:100%}
/* subtle translucent cream panel behind the text for readability over the florals */
.story-florals .service-block__text{background:rgba(248,242,231,.82);border-radius:18px;padding:clamp(1.4rem,3vw,2.3rem);box-shadow:0 8px 30px rgba(44,42,30,.07)}
.step-list{margin:.4rem 0 0;padding-left:1.2rem}
.step-list li{margin:.5rem 0;color:var(--ink-soft)}
.step-list--plain{list-style:none;padding-left:0}

/* ── breadcrumbs — kept in DOM for SEO/a11y, visually hidden ── */
.breadcrumbs{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.breadcrumbs__list{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem;list-style:none;margin:0;padding:.8rem 0;font-family:var(--f-body);font-size:.82rem;letter-spacing:.03em;color:var(--ink-soft)}
.breadcrumbs__list li{display:flex;align-items:center;gap:.55rem}
.breadcrumbs__list li:not(:last-child)::after{content:"›";color:var(--olive-petal)}
.breadcrumbs a{color:var(--olive-text);text-decoration:none;transition:color .2s}
.breadcrumbs a:hover{color:var(--deep-blossom)}
.breadcrumbs [aria-current="page"]{color:var(--espresso)}

/* ── city pages: local venues, FAQ, region links ── */
.section--ort{background:var(--petal-white)}
.venue-list{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem;margin:1.6rem 0 0;padding:0}
.venue-list li{background:var(--arctic-daisy);border:1px solid rgba(44,42,30,.08);border-radius:9999px;padding:.55rem 1.2rem;font-family:var(--f-body);font-size:.92rem;color:var(--espresso)}
.venue-detail-list{list-style:none;margin:1.9rem auto 0;padding:0;max-width:680px;display:flex;flex-direction:column;gap:.9rem;text-align:left}
.venue-detail-list li{background:var(--petal-white);border:1px solid rgba(44,42,30,.08);border-radius:16px;padding:1rem 1.3rem;box-shadow:0 6px 18px rgba(44,42,30,.05)}
.venue-name{display:block;font-family:var(--f-display);font-weight:600;font-size:1.06rem;color:var(--espresso);margin-bottom:.22rem}
.venue-desc{display:block;font-family:var(--f-body);font-size:.94rem;line-height:1.5;color:var(--olive-text)}
.about-stats-band{padding:2.6rem 0}
.about-stats{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem 2.8rem;text-align:center}
.about-stats li{display:flex;flex-direction:column;gap:.15rem}
.about-stats strong{font-family:var(--f-display);font-weight:600;font-size:1.7rem;line-height:1;color:var(--espresso)}
.about-stats span{font-family:var(--f-body);font-size:.9rem;color:var(--olive-text)}
.section--faq{background:var(--arctic-daisy)}
.faq-list{display:grid;gap:.9rem;margin-top:1.8rem}
.faq-item{background:var(--petal-white);border-radius:18px;box-shadow:0 8px 24px rgba(44,42,30,.06);border:1px solid rgba(44,42,30,.06);overflow:hidden;transition:box-shadow .3s ease,border-color .3s ease}
.faq-item:hover{box-shadow:0 12px 30px rgba(44,42,30,.10)}
.faq-item.is-open{box-shadow:0 16px 38px rgba(44,42,30,.13);border-color:var(--golden-clover)}
.faq-q{display:flex;align-items:flex-start;gap:1rem;width:100%;margin:0;padding:1.35rem 1.6rem;background:none;border:0;text-align:left;cursor:pointer;font-family:var(--f-display);font-weight:600;font-size:1.12rem;line-height:1.35;color:var(--espresso);transition:color .25s ease;-webkit-tap-highlight-color:transparent}
.faq-q:hover{color:var(--deep-blossom)}
.faq-q:focus-visible{outline:2px solid var(--deep-blossom);outline-offset:-3px;border-radius:18px}
.faq-q__text{flex:1}
.faq-q__ico{position:relative;flex:0 0 22px;width:22px;height:22px;margin-top:.18em}
.faq-q__ico::before,.faq-q__ico::after{content:"";position:absolute;top:50%;left:50%;width:13px;height:2px;border-radius:2px;background:var(--deep-blossom);transform:translate(-50%,-50%);transition:transform .35s cubic-bezier(.4,0,.2,1),background-color .25s ease}
.faq-q__ico::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item.is-open .faq-q__ico::after{transform:translate(-50%,-50%) rotate(0)}
.faq-item.is-open .faq-q__ico::before,.faq-item.is-open .faq-q__ico::after{background:var(--olive-petal)}
.faq-a{height:0;overflow:hidden;transition:height .38s cubic-bezier(.4,0,.2,1)}
.faq-a__inner{padding:0 1.6rem 1.4rem;color:var(--ink-soft)}
.faq-a__inner p{margin:0}
@media (prefers-reduced-motion:reduce){.faq-a,.faq-q__ico::before,.faq-q__ico::after{transition:none}}
.section--regions{background:var(--petal-white)}
.region-links{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;margin:1.8rem 0 0;padding:0}
.region-links a{display:inline-block;background:var(--arctic-daisy);border-radius:9999px;padding:.5rem 1.1rem;font-family:var(--f-body);font-size:.9rem;letter-spacing:.02em;color:var(--olive-text);text-decoration:none;transition:background .2s,color .2s}
.region-links a:hover{background:var(--deep-blossom);color:#fff}
.section--band{position:relative;min-height:clamp(340px,45vw,480px);display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.section--band__bg{position:absolute;top:-25%;bottom:-25%;left:0;right:0;width:100%;height:150%;background-size:cover;background-position:center;will-change:transform;pointer-events:none;z-index:0}
.section--band__inner{position:relative;z-index:2;padding:4.5rem var(--gutter)}
.section--quote{background:var(--rose-blush)}
.service-quote{font-family:var(--f-display);font-style:italic;font-size:clamp(1.3rem,3vw,1.9rem);line-height:1.5;border:0;margin:.4rem 0 1rem;color:var(--espresso)}
.service-quote__by{text-transform:uppercase;letter-spacing:.14em;font-size:.8rem;color:var(--deep-blossom)}
/* stars + attribution need a darker, on-palette tone to read on the rose-blush bg (gold/peach vanish here) */
.section--quote .testimonial-card__stars{color:var(--deep-blossom)}
.section--cta-service{background:var(--olive-deep)}
.cta-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1.6rem}
.btn--ghost-light{background:transparent;color:var(--arctic-daisy);border-color:var(--arctic-daisy)}
.btn--ghost-light:hover{background:var(--arctic-daisy);color:var(--espresso)}
.service-block__media[style*="gesang-am-klavier"]{background-position:center 55%}

/* ── service photo gallery (impressionen) ── */
.section--service-photos{background:var(--petal-white);padding:clamp(3rem,6vw,5rem) 0}
.service-photos-collage{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:auto auto;gap:1.5rem;align-items:stretch;max-width:1040px;margin:0 auto}
.service-photo-card{position:relative;background:var(--arctic-daisy);border-radius:24px;padding:10px 10px 1.4rem;border:1px solid rgba(44,42,30,.08);box-shadow:0 14px 38px rgba(44,42,30,.09);transition:transform .35s ease,box-shadow .35s ease;display:flex;flex-direction:column;overflow:hidden;margin:0}
.service-photo-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px rgba(44,42,30,.16)}
.service-photo-card__img-wrap{width:100%;flex:1;border-radius:16px;overflow:hidden;position:relative}
.service-photo-card__img-wrap img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.service-photo-card--1{grid-column:1;grid-row:1 / span 2}
.service-photo-card--1 .service-photo-card__img-wrap img{min-height:390px}
.service-photo-card--2{grid-column:2;grid-row:1}
.service-photo-card--2 .service-photo-card__img-wrap img{height:220px}
.service-photo-card--3{grid-column:2;grid-row:2}
.service-photo-card--3 .service-photo-card__img-wrap img{height:170px}
.service-photo-card__caption{text-align:center;font-size:1.5rem;color:var(--espresso);margin-top:.7rem;line-height:1.15}
@media(max-width:768px){
  .service-photos-collage{grid-template-columns:1fr;grid-template-rows:auto;gap:1.2rem}
  .service-photo-card--1,.service-photo-card--2,.service-photo-card--3{grid-column:1;grid-row:auto}
  .service-photo-card--1 .service-photo-card__img-wrap img{height:280px;min-height:0}
  .service-photo-card--2 .service-photo-card__img-wrap img{height:240px}
  .service-photo-card--3 .service-photo-card__img-wrap img{height:200px}
}

@media(max-width:760px){
  .service-block__grid{grid-template-columns:1fr}
  .service-block--reverse .service-block__media{order:0}
  .service-block__media{min-height:240px}
}

/* ── full-bleed page hero (interior pages): whole photo shown uncropped,
   fills the first screen, scroll reveals the rest ── */
.page-hero{position:relative;width:100%;margin:0;height:100vh;height:100svh;border-radius:0;color:#fff;background:var(--espresso);overflow:hidden;transform-origin:center center}
.page-hero__img{display:block;width:100%;height:100%;object-fit:cover;object-position:50% 30%}
.page-hero__dim{position:absolute;inset:0;background:#000;opacity:0;pointer-events:none}
.page-hero__overlay{position:absolute;inset:0;display:flex;align-items:flex-end;background:linear-gradient(rgba(44,42,30,.04) 35%,rgba(44,42,30,.64));pointer-events:none}
.page-hero__inner{max-width:var(--maxw);margin:0 auto;width:100%;padding:0 var(--gutter) clamp(2.5rem,6vw,4.5rem)}
.page-hero__title{color:#fff;text-shadow:0 2px 30px rgba(0,0,0,.45);margin-top:.3rem}
.page-hero__subtitle{font-family:var(--f-body);text-transform:uppercase;letter-spacing:.2em;font-size:clamp(.72rem,1.4vw,.92rem);color:var(--arctic-daisy);text-shadow:0 1px 10px rgba(0,0,0,.5);margin-top:.9rem}

/* ── generic grid ── */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.6rem}

/* ── price cards & lists ── */
.section--packages{background:var(--arctic-daisy)}
/* Sides = plain columns · middle = highlighted colour card, taller · all CTAs on one baseline */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;align-items:end;max-width:1060px;margin:0 auto}
.pkg{display:flex;flex-direction:column;padding:1.9rem 1.5rem;text-align:left}
.pkg__label{font-family:var(--f-body);text-transform:uppercase;letter-spacing:.2em;font-size:.72rem;color:var(--olive-text);margin-bottom:.4rem}
.pkg__title{font-family:var(--f-display);font-weight:600;font-size:1.5rem;color:var(--espresso);margin-bottom:.2rem}
.pkg__amt{font-family:var(--f-display);font-size:2.4rem;font-weight:600;color:var(--deep-blossom);margin:.1rem 0 1rem}
.pkg__list{list-style:none;margin:0 0 1.7rem;flex:1}
.pkg__list li{position:relative;padding:.42rem 0 .42rem 1.6rem;color:var(--ink-soft);font-size:.96rem}
.pkg__list li::before{content:"\2713";position:absolute;left:0;color:var(--gold);font-weight:700}
.pkg .btn{align-self:stretch;text-align:center;margin-top:auto}
/* featured (middle): filled palette colour, badge, extends upward */
.pkg--featured{position:relative;background:var(--deep-blossom);color:var(--arctic-daisy);border-radius:26px;padding:3.2rem 1.8rem 1.9rem;box-shadow:0 26px 58px rgba(44,42,30,.24)}
.pkg--featured .pkg__label{color:var(--golden-clover)}
.pkg--featured .pkg__title,.pkg--featured .pkg__amt{color:#fff}
.pkg--featured .pkg__list li{color:#f3f1e0}
.pkg--featured .pkg__list li::before{color:var(--golden-clover)}
.pkg__badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--gold);color:var(--espresso);font-family:var(--f-body);text-transform:uppercase;letter-spacing:.12em;font-size:.7rem;font-weight:600;padding:.4rem 1.1rem;border-radius:9999px;white-space:nowrap;box-shadow:0 6px 16px rgba(44,42,30,.2)}
.pkg__btn{background:var(--arctic-daisy);color:var(--deep-blossom)}
.pkg__btn:hover{background:#fff;color:var(--deep-blossom-h)}
@media(max-width:760px){
  .price-grid{grid-template-columns:1fr;align-items:stretch;max-width:430px}
}
.section--addons{background:var(--petal-white)}
.price-list{list-style:none;margin:0 0 1.5rem;border-top:1px solid rgba(44,42,30,.12)}
.price-list li{display:flex;justify-content:space-between;gap:1rem;padding:.85rem .2rem;border-bottom:1px solid rgba(44,42,30,.12);font-size:1rem}
.price-list li span:last-child{font-family:var(--f-display);color:var(--deep-blossom);white-space:nowrap}
.price-note{background:var(--arctic-daisy);border-left:4px solid var(--gold);padding:1rem 1.3rem;border-radius:0 12px 12px 0;color:var(--ink-soft);font-size:.95rem}
/* per-service detail list (price page) */
.section--details{background:var(--arctic-daisy)}
.detail-item{padding:1.8rem 0;border-bottom:1px solid rgba(44,42,30,.12)}
.detail-item:last-child{border-bottom:0}
.detail-item__head{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;flex-wrap:wrap;margin-bottom:.3rem}
.detail-item__head .headline-md{margin:0}
.detail-item__price{font-family:var(--f-display);font-size:1.3rem;color:var(--deep-blossom);white-space:nowrap}
.detail-item>p{color:var(--ink-soft);margin:.2rem 0 .9rem}
.check-list{list-style:none;margin:0}
.check-list li{position:relative;padding:.4rem 0 .4rem 1.7rem;color:var(--ink-soft);font-size:.97rem}
.check-list li::before{content:"\2713";position:absolute;left:0;color:var(--gold);font-weight:700}
.detail-item--accent{background:var(--petal-white);border:1.5px solid var(--gold);border-radius:18px;padding:1.6rem;margin:.6rem 0}

/* ── gallery: Pinterest-style collage drifting right-to-left ── */
.section--gallery{background:var(--arctic-daisy);overflow:hidden}
.gallery-marquee{position:relative;width:100%;margin-top:clamp(1.6rem,4vw,2.6rem);overflow:hidden;
	-webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
	mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent)}
.gallery-marquee__track{display:flex;width:max-content;animation:gallery-scroll 80s linear infinite}
.gallery-marquee:hover .gallery-marquee__track{animation-play-state:paused}
.gallery-col{display:flex;flex-direction:column;flex:0 0 auto;margin-right:1rem}
.gallery-tile{width:clamp(190px,22vw,260px);margin-bottom:1rem;border-radius:16px;background-size:cover;background-position:center 25%;filter:saturate(.94);box-shadow:0 10px 28px rgba(44,42,30,.1)}
.gallery-tile:last-child{margin-bottom:0}
@keyframes gallery-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(prefers-reduced-motion:reduce){
	.gallery-marquee{-webkit-mask-image:none;mask-image:none}
	.gallery-marquee__track{animation:none;flex-wrap:wrap;justify-content:center}
	.gallery-col[aria-hidden]{display:none}
}

/* ── media cards ── */
.section--media{background:var(--arctic-daisy)}
.media-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.4rem}
.media-card{display:flex;flex-direction:column;gap:.35rem;background:var(--petal-white);border-radius:18px;padding:1.8rem;text-decoration:none;color:inherit;box-shadow:0 10px 28px rgba(44,42,30,.08);transition:transform .3s,box-shadow .3s}
.media-card:hover{transform:translateY(-5px);box-shadow:0 16px 38px rgba(44,42,30,.13)}
.media-card__platform{font-family:var(--f-display);font-size:1.5rem;font-weight:600}
.media-card__desc{color:var(--ink-soft);font-size:.95rem}
.media-card__more{margin-top:.6rem;font-weight:500;letter-spacing:.06em;font-size:.85rem;color:var(--deep-blossom)}

/* ── booking ── */
.section--booking{background:var(--petal-white)}
#termin,#kontaktformular{scroll-margin-top:96px}
/* ── discovery-call booking widget (custom: calendar -> slots -> form) ── */
.ll-cal{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);max-width:940px;margin:2.4rem auto 0;background:var(--deep-blossom);border-radius:20px;overflow:hidden;box-shadow:0 16px 44px rgba(140,74,85,.28)}
.ll-cal__photo{background:url(../img/portrait-1.webp) center top/cover no-repeat;min-height:420px}
.ll-cal__panel{padding:clamp(1.4rem,2.6vw,2.4rem);color:#fff;position:relative}
.ll-cal__step{display:none;animation:llcalfade .35s ease}
.ll-cal[data-step="calendar"] .ll-cal__step--calendar,
.ll-cal[data-step="slots"] .ll-cal__step--slots,
.ll-cal[data-step="form"] .ll-cal__step--form{display:block}
@keyframes llcalfade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.ll-cal__kicker{font-family:var(--f-body);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;opacity:.85;margin:0 0 .2rem}
.ll-cal__title{color:#fff;font-size:clamp(1.3rem,2.4vw,1.7rem);margin:0 0 1rem}
.ll-cal__sub{font-family:var(--f-body);opacity:.92;margin:0 0 1rem;font-size:.95rem}
.ll-cal__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem}
.ll-cal__month{font-family:var(--f-body);font-weight:600;font-size:1.05rem}
.ll-cal__nav{width:38px;height:38px;border:none;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;font-size:1.3rem;line-height:1;cursor:pointer;transition:background .15s}
.ll-cal__nav:hover:not(:disabled){background:rgba(255,255,255,.28)}
.ll-cal__nav:disabled{opacity:.3;cursor:default}
.ll-cal__dow{display:grid;grid-template-columns:repeat(7,1fr);gap:.25rem;margin-bottom:.35rem}
.ll-cal__dow span{text-align:center;font-family:var(--f-body);font-size:.72rem;opacity:.6}
.ll-cal__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:.25rem}
.ll-cal__day{aspect-ratio:1;border:none;border-radius:9px;background:#fff;color:var(--deep-blossom);font-family:var(--f-body);font-weight:600;font-size:.95rem;cursor:pointer;transition:background .15s,color .15s}
.ll-cal__day:hover:not(.is-off){background:var(--golden-clover);color:var(--espresso)}
.ll-cal__day.is-off{background:transparent;color:rgba(255,255,255,.32);cursor:default}
.ll-cal__slots{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.ll-cal__slot{background:transparent;border:1.5px solid #fff;border-radius:10px;color:#fff;font-family:var(--f-body);font-weight:600;padding:.75rem;cursor:pointer;transition:background .15s,color .15s}
.ll-cal__slot:hover{background:#fff;color:var(--deep-blossom)}
.ll-cal__back{background:none;border:none;color:rgba(255,255,255,.85);font-family:var(--f-body);font-size:.85rem;cursor:pointer;padding:0;margin-bottom:.8rem}
.ll-cal__back:hover{color:#fff}
.ll-cal__summary{font-family:var(--f-body);font-weight:600;background:rgba(255,255,255,.14);border-radius:10px;padding:.6rem .9rem;margin:0 0 1rem}
.ll-cal__form{display:grid;gap:.7rem}
.ll-cal__form label{display:grid;gap:.25rem}
.ll-cal__form .field-label{font-family:var(--f-body);font-size:.82rem;opacity:.85}
.ll-cal__form input,.ll-cal__form select,.ll-cal__form textarea{width:100%;border:none;border-radius:9px;padding:.6rem .7rem;font-family:var(--f-body);font-size:.95rem;background:#fff;color:var(--espresso)}
.ll-cal__form .btn{margin-top:.3rem}
.ll-cal .req{color:var(--golden-clover)}
.ll-cal--done .ll-cal__panel{display:flex;align-items:center}
.ll-cal--done .form-success p{font-family:var(--f-body)}
@media (max-width:780px){
  .ll-cal{grid-template-columns:1fr}
  .ll-cal__photo{min-height:clamp(320px,80vw,420px);background-position:center 12%}
}
@media (prefers-reduced-motion:reduce){.ll-cal__step{animation:none}}

/* ── contact ── */
.section--contact{background:var(--arctic-daisy)}
.contact-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:clamp(1.8rem,4vw,3.5rem);align-items:start}
.contact-intro .headline-md{margin:.3rem 0 1rem}
.contact-list{list-style:none;margin:1.4rem 0;display:flex;flex-direction:column;gap:.7rem}
.contact-list li{display:flex;gap:1rem;align-items:baseline}
.contact-list__label{font-family:var(--f-body);text-transform:uppercase;letter-spacing:.14em;font-size:.72rem;color:var(--olive-text);min-width:90px}
.contact-list a{color:var(--deep-blossom);text-decoration:none}
.contact-form-wrap{background:var(--petal-white);border-radius:20px;padding:clamp(1.6rem,3vw,2.4rem);box-shadow:0 14px 40px rgba(44,42,30,.1)}
.form-title{color:var(--deep-blossom)}
.form-sub{color:var(--ink-soft);font-size:.95rem;margin:.3rem 0 1.2rem}
.contact-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.contact-form label{position:relative;display:flex;flex-direction:column;gap:.35rem;font-size:.85rem;font-weight:500;color:var(--espresso)}
.contact-form .field-label{display:block}
.contact-form .js-datepicker{cursor:pointer;padding-right:2.5rem;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C4A55' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='4.5' width='18' height='16.5' rx='2.5'/%3E%3Cpath d='M3 9.5h18M8 2.5v4M16 2.5v4'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .8rem center;background-size:18px}

/* On-brand form validation styling */
.field-error {
  border-color: var(--deep-blossom) !important;
  background-color: rgba(216, 164, 143, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(140, 74, 85, 0.18) !important;
}
.field-error-msg {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--deep-blossom);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.35rem;
  animation: fieldErrFade 0.2s ease-out;
}
.ll-cal__form .field-error {
  border: 1.5px solid var(--golden-clover) !important;
  background-color: rgba(243, 212, 141, 0.15) !important;
  box-shadow: 0 0 0 3px rgba(243, 212, 141, 0.25) !important;
}
.ll-cal__form .field-error-msg {
  color: var(--golden-clover);
}
@keyframes fieldErrFade {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}
/* custom calendar popup */
.lx-dp{position:absolute;z-index:50;top:calc(100% + 6px);left:0;width:290px;max-width:88vw;background:var(--petal-white);border:1px solid rgba(140,74,85,.22);border-radius:14px;box-shadow:0 18px 44px rgba(44,42,30,.2);padding:.85rem;display:none}
.lx-dp.is-open{display:block}
.lx-dp__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:.5rem}
.lx-dp__title{font-family:var(--f-display);font-weight:600;font-size:1rem;color:var(--espresso)}
.lx-dp__nav{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;background:none;cursor:pointer;border-radius:50%;color:var(--deep-blossom);font-size:1.2rem;line-height:1}
.lx-dp__nav:hover{background:rgba(140,74,85,.12)}
.lx-dp__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:2px}
.lx-dp__dow{font-size:.68rem;text-align:center;color:var(--ink-soft);font-weight:600;padding:.25rem 0}
.lx-dp__day{aspect-ratio:1;display:flex;align-items:center;justify-content:center;border:none;background:none;border-radius:8px;cursor:pointer;font-family:var(--f-body);font-size:.85rem;color:var(--espresso)}
.lx-dp__day:hover{background:var(--rose-blush);color:#fff}
.lx-dp__day.is-today{box-shadow:inset 0 0 0 1.5px var(--deep-blossom)}
.lx-dp__day.is-selected{background:var(--deep-blossom);color:#fff}
.lx-dp__day.is-empty{visibility:hidden;cursor:default}
.lx-dp__day:disabled{opacity:.32;cursor:default}
.lx-dp__day:disabled:hover{background:none;color:var(--espresso)}
/* on-brand custom dropdowns (replace native blue selects) */
.lx-sel{position:relative}
.lx-sel__native{display:none}
.lx-sel__btn{display:flex;align-items:center;justify-content:space-between;gap:.5rem;width:100%;font-family:var(--f-body);font-size:1rem;text-align:left;padding:.75rem .85rem;border:1px solid rgba(44,42,30,.18);border-radius:10px;background:#fff;color:var(--espresso);cursor:pointer}
.lx-sel__btn.is-empty .lx-sel__val{color:var(--olive-text)}
.lx-sel__btn:hover{border-color:var(--deep-blossom)}
.lx-sel__btn.is-open{border-color:var(--deep-blossom);box-shadow:0 0 0 3px rgba(140,74,85,.12)}
.lx-sel__arrow{flex:0 0 auto;width:9px;height:9px;border-right:2px solid var(--deep-blossom);border-bottom:2px solid var(--deep-blossom);transform:rotate(45deg);margin-top:-4px;transition:transform .2s}
.lx-sel__btn.is-open .lx-sel__arrow{transform:rotate(-135deg);margin-top:3px}
.lx-sel__list{position:absolute;z-index:50;top:calc(100% + 6px);left:0;right:0;margin:0;padding:.35rem;list-style:none;background:var(--petal-white);border:1px solid rgba(140,74,85,.22);border-radius:12px;box-shadow:0 18px 44px rgba(44,42,30,.2);max-height:260px;overflow:auto;display:none}
.lx-sel__list.is-open{display:block}
.lx-sel__opt{padding:.55rem .7rem;border-radius:8px;cursor:pointer;font-size:.92rem;color:var(--espresso)}
.lx-sel__opt:hover,.lx-sel__opt.is-active{background:var(--rose-blush);color:#fff}
.lx-sel__opt.is-selected{background:var(--deep-blossom);color:#fff}
/* centered submit */
.contact-form button[type="submit"]{display:block;width:fit-content;margin:.4rem auto 0}
.contact-form .form-full{margin-bottom:1.2rem}
.contact-form input,.contact-form select,.contact-form textarea{font-family:var(--f-body);font-size:1rem;padding:.75rem .85rem;border:1px solid rgba(44,42,30,.18);border-radius:10px;background:#fff;color:var(--espresso);width:100%}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:none;border-color:var(--deep-blossom);box-shadow:0 0 0 3px rgba(140,74,85,.12)}
.form-success{text-align:center;padding:2rem 0}
.form-success .headline-md{color:var(--deep-blossom);margin-bottom:.5rem}
.form-error{background:rgba(140,74,85,.1);color:var(--deep-blossom);padding:.8rem 1rem;border-radius:10px;margin-bottom:1rem}

/* ── legal & article ── */
.section--legal,.section--article{background:var(--arctic-daisy)}
.legal-text h2{font-family:var(--f-display);font-size:1.3rem;margin:1.8rem 0 .5rem}
.legal-text p{margin-bottom:1rem;color:var(--ink-soft)}
.sitemap-list{list-style:none;display:flex;flex-direction:column;gap:.7rem;margin:0 0 2.5rem;padding:0}
.sitemap-list a{color:var(--deep-blossom);text-decoration:none;font-size:1rem;transition:color .2s}
.sitemap-list a:hover{color:var(--olive-petal)}
.sitemap-region-links{justify-content:flex-start;margin-bottom:2.5rem}
.article-body h2{font-family:var(--f-display);font-size:clamp(1.4rem,3vw,1.9rem);margin:2rem 0 .8rem;scroll-margin-top:96px}
.article-body p{margin-bottom:1.1rem;font-size:1.07rem;color:var(--ink-soft)}
.article-body ul{margin:0 0 1.3rem 1.2rem}
.article-body li{margin:.5rem 0;color:var(--ink-soft)}
.article-body strong{color:var(--espresso)}
.article-body a{color:var(--deep-blossom);text-decoration:none;font-weight:600;transition:color .2s ease}
.article-body a:hover{color:var(--deep-blossom-h)}
/* Ratgeber: "Kurz & klar" key-takeaways + auto table of contents */
.article-summary{background:var(--petal-white);border:1px solid rgba(44,42,30,.08);border-left:4px solid var(--golden-clover);border-radius:16px;padding:1.5rem 1.7rem;margin:1.8rem 0 1.4rem;box-shadow:0 10px 30px rgba(44,42,30,.07)}
.article-summary__label{margin:0 0 .9rem;font-family:var(--f-display);font-weight:600;font-size:1.2rem;color:var(--espresso);display:flex;align-items:center;gap:.6rem}
.article-summary__label::before{content:"";width:1.7rem;height:2px;background:var(--golden-clover);flex:0 0 auto}
.article-summary__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.6rem}
.article-summary__list li{position:relative;padding-left:1.7rem;font-family:var(--f-body);font-size:1rem;line-height:1.55;color:var(--ink-soft)}
.article-summary__list li::before{content:"✓";position:absolute;left:0;top:-.05rem;color:var(--golden-clover);font-weight:700}
.article-toc{background:var(--petal-white);border:1px solid rgba(44,42,30,.07);border-radius:16px;padding:1.3rem 1.7rem 1.4rem;margin:0 0 2.4rem;box-shadow:0 8px 24px rgba(44,42,30,.05)}
.article-toc__label{margin:0 0 .8rem;font-family:var(--f-display);font-weight:600;font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;color:var(--olive-text)}
.article-toc__list{margin:0;padding:0;list-style:none;counter-reset:toc;display:flex;flex-direction:column;gap:.5rem}
.article-toc__list li{counter-increment:toc;position:relative;padding-left:2.1rem;font-family:var(--f-body);font-size:1rem;line-height:1.4}
.article-toc__list li::before{content:counter(toc,decimal-leading-zero);position:absolute;left:0;top:.06rem;font-family:var(--f-display);font-size:.85rem;font-weight:600;color:var(--golden-clover)}
.article-toc__list a{color:var(--olive-text);text-decoration:none;border-bottom:1px solid transparent;transition:color .2s ease,border-color .2s ease}
.article-toc__list a:hover{color:var(--deep-blossom);border-bottom-color:var(--deep-blossom)}
.section--ratgeber{background:var(--arctic-daisy)}

@media(max-width:760px){
  .contact-layout{grid-template-columns:1fr}
  .contact-form .form-row{grid-template-columns:1fr}
}

/* ── reduced motion ── */
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .marquee__track{animation:none}
  .scroll-hint__line{animation:none}
  .petals{display:none}
}

/* Warm-cream page background — every page except the homepage.
   Shifts the cream (--arctic-daisy) background fills to #F6EBDB;
   text-colour uses of --arctic-daisy (CTAs, footer) are left untouched. */
body:not(.home){background:#F6EBDB}
/* Über-mich + service pages: the shrinking hero reveals the body behind it, so match
   that sliver to the --arctic-daisy welcome section directly below it (not the pink). */
body.page-template-template-ueber:not(.home),
body.page-template-template-service:not(.home){background:var(--arctic-daisy)}
body:not(.home) .section--welcome,
body:not(.home) .section--intro,
body:not(.home) .service-blocks,
body:not(.home) .service-card,
body:not(.home) .venue-list li,
body:not(.home) .section--faq,
body:not(.home) .region-links a,
body:not(.home) .section--packages,
body:not(.home) .pkg__btn,
body:not(.home) .price-note,
body:not(.home) .section--details,
body:not(.home) .section--gallery,
body:not(.home) .section--media,
body:not(.home) .section--contact,
body:not(.home) .section--legal,
body:not(.home) .section--article,
body:not(.home) .section--ratgeber,
body:not(.home) .btn--ghost-light:hover{background:#F6EBDB}
/* The warm-cream override above out-specifies a plain `.region-links a:hover`, which left
   the pill pink on hover while the text went white (unreadable). Scope the hover to match. */
body:not(.home) .region-links a:hover{background:var(--deep-blossom);color:#fff}

/* Homepage: warm cream on the Leistungen + Einsatzgebiet sections only */
.home .section--services,
.home .section--regions{background:#F6EBDB}

/* ── Wavy section transitions ───────────────────────────────────────────────
   Every section that follows another section laps up over it with a small
   wavy edge, coloured automatically in that section's own background
   (background:inherit), shaped by an SVG wave mask.
   • The hero is never a .section, so the first content section gets no wave.
   • Edges touching a photo/tiled section (band, photobg, testimonials) are
     skipped so a flat colour never meets a photo. */
.section + .section::after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:100%;
	height:22px;
	background:inherit;
	-webkit-mask:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='90'%20height='22'%20viewBox='0%200%2090%2022'%3E%3Cpath%20d='M0,11%20Q22.5,3%2045,11%20Q67.5,19%2090,11%20V22%20H0%20Z'%20fill='%23000'/%3E%3C/svg%3E") left bottom / 90px 22px repeat-x;
	        mask:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='90'%20height='22'%20viewBox='0%200%2090%2022'%3E%3Cpath%20d='M0,11%20Q22.5,3%2045,11%20Q67.5,19%2090,11%20V22%20H0%20Z'%20fill='%23000'/%3E%3C/svg%3E") left bottom / 90px 22px repeat-x;
	pointer-events:none;
	z-index:1;
}
/* skip the wave wherever a photo/tiled/flower-image section is on either side.
   These use the same `.section + …` shape as the main rule so they match its
   specificity and reliably override it (the bare `.X::after` form lost the
   cascade and let the flower image bleed into a wavy strip). */
.section + .section--tiledbg::after,
.section + .section--photobg::after,
.section + .section--testimonials::after,
.section--tiledbg + .section::after,
.section--photobg + .section::after,
.section--testimonials + .section::after,
.section--band + .section::after{content:none}
/* the CTA hides overflow for its decorative petals — let its wave show */
.section + .section--cta{overflow:visible}

/* ── Accessibility (additive — no change to the resting visual design) ─────────
   Skip link, keyboard-only focus indicators, and an invisible 44px hit area on
   the hamburger. None of these alter how the site looks for mouse users. */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* Package titles link to their service page without changing the heading's look. */
.pkg__title a{color:inherit;text-decoration:none}
.pkg__title a:hover{text-decoration:underline}
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--deep-blossom);color:#fff;padding:.7rem 1.1rem;border-radius:0 0 10px 0;font-family:var(--f-body);font-weight:600;text-decoration:none}
.skip-link:focus{left:0}
.site-main:focus{outline:none}

/* Visible focus ring for keyboard users only (:focus-visible never fires on mouse click). */
a:focus-visible,button:focus-visible,.btn:focus-visible,.nav-toggle:focus-visible,
.breadcrumbs a:focus-visible,.lx-dp__day:focus-visible,.lx-dp__nav:focus-visible,
.lx-sel__btn:focus-visible,.lx-sel__opt:focus-visible,
input:focus-visible,select:focus-visible,textarea:focus-visible{
	outline:2px solid var(--deep-blossom);outline-offset:2px;border-radius:4px
}
/* On dark surfaces (nav over hero, footer, booking calendar) use a light ring for contrast. */
.site-header .nav-menu a:focus-visible,.site-header .nav-toggle:focus-visible,
.site-footer a:focus-visible,.ll-cal__day:focus-visible,.ll-cal__slot:focus-visible{
	outline:2px solid #fff;outline-offset:2px;border-radius:4px
}

/* Hamburger: extend the touch target to 44px without changing its visible size. */
.nav-toggle{position:relative}
.nav-toggle::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:44px;height:44px}

/* ── Audit fixes (2026-06-30): honeypot, consent, byline, NAP/map ── */
/* Honeypot: visually hidden but still submitted, so bots fill it and humans never see it. */
.ll-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
/* DSGVO consent checkbox under both forms. */
.contact-form .form-consent,.ll-cal__form .form-consent{display:flex;flex-direction:row;align-items:flex-start;gap:.6rem;margin:.4rem 0 1.1rem;font-size:.82rem;line-height:1.5;font-weight:400;text-align:left}
.contact-form .form-consent{color:var(--ink-soft)}
.ll-cal__form .form-consent{color:#f3f1e0}
.form-consent input[type=checkbox]{flex:0 0 auto;width:18px;height:18px;margin-top:.12rem;accent-color:var(--deep-blossom);cursor:pointer}
.form-consent a{color:var(--deep-blossom);text-decoration:underline}
.ll-cal__form .form-consent a{color:#fff}
/* Ratgeber article byline (E-E-A-T / freshness signal). */
.article-byline{margin:1.6rem auto .2rem;font-family:var(--f-body);font-size:.85rem;letter-spacing:.02em;color:var(--olive-text);text-align:center}
.article-byline a{color:var(--deep-blossom);text-decoration:none}
.article-byline a:hover{text-decoration:underline}
.article-byline__role,.article-byline__date{color:var(--ink-soft)}
@media(max-width:600px){.article-byline__role,.article-byline__date{display:block}}
/* Kontakt: visible NAP + Maps link. */
.contact-list__addr{font-style:normal;line-height:1.4}
.contact-map-link{margin:.4rem 0 1.4rem;font-size:.9rem}

/* Stat band — extractable trust numbers (count up on scroll) */
.stat-band{padding:2.6rem 0;background:var(--arctic-daisy);border-block:1px solid rgba(94,94,64,.14)}
.stat-band .stat-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.stat-band .stat{display:flex;flex-direction:column;gap:.3rem}
.stat-num{font-family:var(--f-display);font-weight:600;font-size:clamp(1.9rem,4vw,3rem);line-height:1;color:var(--olive-deep)}
.stat-label{font-family:var(--f-body);font-size:.85rem;letter-spacing:.04em;color:var(--olive-text)}
.stat-credential{margin:1.7rem 0 0;text-align:center;font-family:var(--f-body);font-size:.9rem;letter-spacing:.02em;color:var(--olive-deep)}
@media(max-width:640px){.stat-band .stat-grid{grid-template-columns:repeat(2,1fr);gap:1.8rem 1rem}}

/* Why a studied voice — differentiator */
.why-opera .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;margin-top:2rem;text-align:left}
.why-opera .why-item h3{font-family:var(--f-display);font-weight:600;font-size:1.15rem;margin:0 0 .5rem;color:var(--olive-deep)}
.why-opera .why-item p{margin:0;font-size:.96rem;line-height:1.6;color:var(--ink-soft)}
@media(max-width:760px){.why-opera .why-grid{grid-template-columns:1fr}}
/* Service intro credential accent */
.intro-credential{font-style:italic;color:var(--deep-blossom);font-size:1.02rem;margin-top:.4rem}
/* USP cross-links (Wort & Klang) */
.usp-links{display:flex;flex-direction:column;gap:.55rem;align-items:center;margin-top:1.8rem;text-align:center}

/* Hörproben click-to-play grid. Self-contained branded facade (no external thumbnail):
   the YouTube iframe loads only on click → zero Google contact / cookies before consent. */
.hoerprobe-cat{margin:2.6rem 0 1.2rem;text-align:center}
.hoerprobe-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.4rem}
.hoerprobe{display:flex;flex-direction:column;gap:.7rem}
.hoerprobe__play{position:relative;display:flex;align-items:center;justify-content:center;padding:0;border:0;cursor:pointer;border-radius:14px;overflow:hidden;aspect-ratio:16/9;width:100%;background-image:linear-gradient(155deg,rgba(94,94,64,.86),rgba(140,74,85,.80)),url('../stock/testimonials-tile.webp');background-size:cover;background-position:center;transition:filter .25s}
.hoerprobe__play:hover{filter:brightness(1.06)}
.hoerprobe__btn{width:66px;height:66px;border-radius:50%;background:rgba(251,249,239,.94);color:var(--olive-deep);display:flex;align-items:center;justify-content:center;font-size:1.5rem;padding-left:5px;box-shadow:0 8px 22px rgba(44,42,30,.28);transition:transform .2s}
.hoerprobe__play:hover .hoerprobe__btn{transform:scale(1.1)}
.hoerprobe__title{text-align:center;font-family:var(--f-body);font-size:.95rem;color:var(--ink-soft)}
.hoerprobe iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:14px;display:block}

/* Repertoire (Liedliste) */
.repertoire-cat{margin:2.6rem 0 1rem;text-align:center}
.repertoire-list{list-style:none;margin:0;padding:0;columns:2;column-gap:2.4rem}
.repertoire-list li{break-inside:avoid;padding:.4rem 0;border-bottom:1px solid rgba(94,94,64,.12);font-family:var(--f-body)}
.repertoire-title{color:var(--espresso)}
.repertoire-by{opacity:.7;font-size:.9em;color:var(--ink-soft)}
@media(max-width:640px){.repertoire-list{columns:1}}
/* City page: churches list label */
.venue-churches-label{margin:1.6rem 0 .3rem;font-family:var(--f-body);font-size:.95rem;color:var(--olive-text)}

/* Per-service "So läuft's ab" */
.section--steps .service-steps{list-style:none;margin:2rem 0 0;padding:0;display:flex;flex-direction:column;gap:1rem;max-width:640px;margin-inline:auto}
.section--steps .service-step{display:flex;gap:1.1rem;align-items:flex-start}
.section--steps .service-step__n{flex:0 0 2.3rem;height:2.3rem;border-radius:50%;background:var(--olive-deep);color:var(--petal-white);display:flex;align-items:center;justify-content:center;font-family:var(--f-display);font-weight:600}
.section--steps .service-step__b{display:flex;flex-direction:column;gap:.15rem}
.section--steps .service-step__b strong{font-family:var(--f-display);color:var(--olive-deep)}
.section--steps .service-step__b span{color:var(--ink-soft);font-size:.98rem}

/* Recent bookings feed (homepage, renders only when populated) */
.bookings-feed{list-style:none;margin:1.6rem auto 0;padding:0;max-width:560px;display:flex;flex-direction:column;gap:.55rem}
.bookings-feed li{font-family:var(--f-body);color:var(--ink-soft);padding:.35rem 0;border-bottom:1px solid rgba(94,94,64,.1)}
.bookings-feed .bk-date{font-family:var(--f-display);color:var(--olive-deep)}

/* Google reviews trust badge (visible link to the GBP — not schema) */
.review-badge{display:inline-flex;align-items:center;gap:.5rem;text-decoration:none;font-family:var(--f-body);color:var(--ink-soft);transition:opacity .2s}
.review-badge:hover{opacity:.8}
.review-badge__stars{color:#F5A623;letter-spacing:.06em;font-size:1rem;line-height:1}
.review-badge__text{font-size:.9rem;color:var(--olive-text)}
.review-badge__text strong{color:var(--olive-deep)}
.stat-reviews{margin-top:1rem;text-align:center}
.section--reviewbar{padding:2.2rem 0 0}
.review-badge--lg .review-badge__stars{font-size:1.3rem}
.review-badge--lg .review-badge__text{font-size:1.05rem}
.review-bar__note{margin:.7rem 0 0;font-size:.9rem;color:var(--ink-soft)}
