/* ============================================================
   saharastaub.de — Main Stylesheet
   Mobile-first, System Fonts, Modern Effects
   ============================================================ */

/* --- Reset & Base --- */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size:16px;line-height:1.65;color:#2d2a26;background:#faf8f5;
    -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:#8b6914;text-decoration:none;transition:color .2s}
a:hover{color:#6b5010}
ul,ol{padding-left:1.5rem}
table{border-collapse:collapse;width:100%}

/* --- Container --- */
.container{max-width:1140px;margin:0 auto;padding:0 1.25rem}
.content-narrow{max-width:760px}

/* --- Typography --- */
h1{font-size:2rem;font-weight:700;line-height:1.2;margin-bottom:.75rem;color:#1a1815}
h2{font-size:1.5rem;font-weight:600;line-height:1.3;margin:2rem 0 .75rem;color:#1a1815}
h3{font-size:1.15rem;font-weight:600;margin:1.5rem 0 .5rem;color:#2d2a26}
p{margin-bottom:1rem}
.lead{font-size:1.15rem;color:#5a5550;line-height:1.7;margin-bottom:1.5rem}

/* --- Header --- */
.site-header{background:rgba(255,255,255,.85);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(232,228,223,.6);padding:.75rem 0;position:sticky;top:0;z-index:1000;transition:box-shadow .3s}
.site-header.is-scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.site-header .container{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:.5rem;font-size:1.25rem;font-weight:700;color:#1a1815;text-decoration:none}
.logo:hover{color:#1a1815}
.logo-icon{width:32px;height:32px;border-radius:50%;flex-shrink:0;transition:transform .3s}
.logo:hover .logo-icon{transform:rotate(15deg)}
.logo-tld{color:#c4956a;font-weight:400}

/* --- Navigation --- */
.main-nav ul{display:flex;list-style:none;gap:.25rem;padding:0}
.main-nav a{display:block;padding:.5rem .75rem;border-radius:6px;font-size:.9rem;font-weight:500;color:#5a5550;transition:all .2s;position:relative}
.main-nav a:hover,.main-nav a[aria-current="page"]{background:#f5f0ea;color:#1a1815}
.main-nav a::after{content:'';position:absolute;bottom:2px;left:50%;width:0;height:2px;background:#c4956a;transition:all .3s;transform:translateX(-50%);border-radius:1px}
.main-nav a:hover::after{width:60%}

.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;flex-direction:column;gap:4px}
.nav-toggle span{display:block;width:22px;height:2px;background:#2d2a26;transition:all .3s}

@media(max-width:768px){
    .nav-toggle{display:flex}
    .main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(255,255,255,.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid #e8e4df;padding:1rem;box-shadow:0 4px 20px rgba(0,0,0,.1)}
    .main-nav.is-open{display:block}
    .main-nav ul{flex-direction:column;gap:0}
    .main-nav a{padding:.75rem 1rem;border-radius:0;border-bottom:1px solid #f5f0ea}
    .main-nav a::after{display:none}
}

/* --- Hero --- */
.hero{background:linear-gradient(135deg,#fff 0%,#f5f0ea 40%,#ece3d7 100%);padding:4rem 0 3rem;text-align:center;position:relative;overflow:hidden}
.hero--bg{background:linear-gradient(180deg,rgba(255,255,255,.88) 0%,rgba(245,240,234,.92) 50%,rgba(236,227,215,.95) 100%),url('/s/i/photos/hero-dust-sky.webp') center/cover no-repeat}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:500px;height:500px;background:radial-gradient(circle,rgba(196,149,106,.12) 0%,transparent 70%);border-radius:50%;pointer-events:none}
.hero::after{content:'';position:absolute;bottom:-30%;left:-10%;width:400px;height:400px;background:radial-gradient(circle,rgba(232,201,160,.15) 0%,transparent 70%);border-radius:50%;pointer-events:none}
.hero h1{font-size:2.75rem;margin-bottom:.5rem;background:linear-gradient(135deg,#1a1815 0%,#5a4a3a 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-sub{font-size:1.2rem;color:#6b6560;margin-bottom:2rem}

/* Floating dust particles */
.hero-particles{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.hero-particles span{position:absolute;background:#c4956a;border-radius:50%;opacity:.15;animation:float-particle linear infinite}
.hero-particles span:nth-child(1){width:6px;height:6px;top:20%;left:15%;animation-duration:8s}
.hero-particles span:nth-child(2){width:4px;height:4px;top:60%;left:80%;animation-duration:12s;animation-delay:-3s}
.hero-particles span:nth-child(3){width:8px;height:8px;top:40%;left:50%;animation-duration:10s;animation-delay:-5s}
.hero-particles span:nth-child(4){width:3px;height:3px;top:75%;left:25%;animation-duration:9s;animation-delay:-2s}
.hero-particles span:nth-child(5){width:5px;height:5px;top:10%;left:70%;animation-duration:11s;animation-delay:-7s}
.hero-particles span:nth-child(6){width:7px;height:7px;top:85%;left:60%;animation-duration:7s;animation-delay:-1s}

@keyframes float-particle{
    0%{transform:translateY(0) translateX(0);opacity:.15}
    25%{transform:translateY(-30px) translateX(15px);opacity:.25}
    50%{transform:translateY(-10px) translateX(-10px);opacity:.1}
    75%{transform:translateY(-40px) translateX(20px);opacity:.2}
    100%{transform:translateY(0) translateX(0);opacity:.15}
}

@media(max-width:768px){
    .hero{padding:2.5rem 0 2rem}
    .hero h1{font-size:1.85rem}
}

/* --- Section Dividers --- */
.section-wave{position:relative}
.section-wave::before{content:'';position:absolute;top:-40px;left:0;right:0;height:40px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40 C300 10 600 30 900 15 C1050 8 1150 20 1200 12 L1200 40 Z' fill='%23faf8f5'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;pointer-events:none}

/* --- Status Widget --- */
.status-widget{background:rgba(255,255,255,.8);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-radius:16px;padding:1.5rem;box-shadow:0 4px 20px rgba(0,0,0,.06);max-width:520px;margin:0 auto;border:1px solid rgba(232,228,223,.5)}
.status-widget--large{max-width:100%}
.status-indicator{display:flex;align-items:center;gap:1rem}
.status-dot{width:48px;height:48px;border-radius:50%;background:#ccc;flex-shrink:0;animation:pulse-glow 2s ease-in-out infinite;box-shadow:0 0 20px rgba(204,204,204,.4)}
.status-text{display:flex;flex-direction:column}
.status-label{font-size:1.25rem;font-weight:600}
.status-detail{font-size:.9rem;color:#6b6560}
.status-meta{margin-top:.75rem;font-size:.8rem;color:#999;text-align:right}

@keyframes pulse-glow{
    0%,100%{opacity:1;box-shadow:0 0 20px rgba(204,204,204,.3)}
    50%{opacity:.8;box-shadow:0 0 30px rgba(204,204,204,.6)}
}

/* --- Dashboard Grid --- */
.dashboard{padding:3rem 0}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}

@media(max-width:1024px){.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){
    .grid-4,.grid-3{grid-template-columns:1fr}
}

/* --- Cards with glassmorphism --- */
.card{background:rgba(255,255,255,.7);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-radius:16px;padding:1.5rem;box-shadow:0 4px 15px rgba(0,0,0,.05);border:1px solid rgba(232,228,223,.5);transition:all .3s ease}
.card:hover{box-shadow:0 8px 30px rgba(0,0,0,.1);transform:translateY(-3px)}
.card--highlight{border:2px solid #e8c9a0;background:linear-gradient(135deg,rgba(255,251,245,.9) 0%,rgba(255,255,255,.9) 100%)}
.card h2{font-size:1.1rem;margin:0 0 .75rem;color:#1a1815}
.card-icon{font-size:1.75rem;margin-bottom:.5rem;display:inline-block;background:linear-gradient(135deg,#c4956a,#e8c9a0);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.card-link{display:inline-flex;align-items:center;gap:.25rem;margin-top:.75rem;font-size:.85rem;font-weight:500;color:#8b6914;transition:gap .2s}
.card-link:hover{text-decoration:none;gap:.5rem}
.card-link::after{content:'\2192'}
.card-note{font-size:.8rem;color:#999;margin-top:.5rem}

/* --- Scroll Reveal Animation --- */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

@media(prefers-reduced-motion:reduce){
    .reveal{opacity:1;transform:none;transition:none}
    .hero-particles{display:none}
    .status-dot{animation:none}
}

/* --- Ampel (Health) --- */
.ampel{display:flex;align-items:center;gap:1rem;margin:.5rem 0}
.ampel--large{padding:1rem 0}
.ampel-circle{width:44px;height:44px;border-radius:50%;background:#ccc;flex-shrink:0;box-shadow:0 0 12px rgba(204,204,204,.3);transition:all .5s}
.ampel-info{display:flex;flex-direction:column}
.ampel-level{font-weight:600;font-size:1rem}
.ampel-advice{font-size:.85rem;color:#6b6560;line-height:1.4}
.ampel-note{font-size:.8rem;color:#999;margin-top:.5rem}

/* --- Sunset --- */
.sunset-score{display:flex;align-items:baseline;gap:.5rem;margin:.5rem 0}
.sunset-rating{font-size:2.25rem;font-weight:700;background:linear-gradient(135deg,#c4956a,#e8834a);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.sunset-label{font-size:.9rem;color:#6b6560}
.sunset-time{font-size:.9rem;color:#5a5550;margin-bottom:.5rem}
.sunset-hint{font-size:.8rem;color:#999;line-height:1.4}

/* --- Car Wash --- */
.carwash-status{margin:.5rem 0}
.carwash-status--large{padding:.75rem 0}
.carwash-label{font-size:1.25rem;font-weight:700;display:block}
.carwash-msg{font-size:.9rem;color:#5a5550;line-height:1.5}

/* --- PV --- */
.pv-loss{display:flex;align-items:baseline;gap:.5rem;margin:.5rem 0}
.pv-pct{font-size:2.25rem;font-weight:700;color:#f44336}
.pv-label{font-size:.85rem;color:#6b6560}
.pv-detail{font-size:.85rem;color:#5a5550}
.pv-calculator{margin:1rem 0}
.pv-calculator label{display:block;font-weight:500;margin-bottom:.5rem}
.pv-result{margin-top:1rem}
.pv-loss-display{display:flex;align-items:baseline;gap:.5rem}

/* --- Map --- */
.map-section{padding:3rem 0;background:#fff;position:relative}
.map-wrapper{margin:1rem 0;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.08)}
.dust-map{height:420px;width:100%;background:#e8e4df}
.dust-map--large{height:500px}
.map-caption{font-size:.8rem;color:#999;margin-top:.75rem;text-align:center}

@media(max-width:768px){
    .dust-map{height:300px}
    .dust-map--large{height:380px}
}

/* --- Regions --- */
.regions{padding:2.5rem 0}
.region-card{background:rgba(255,255,255,.7);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-radius:16px;padding:1.75rem;text-align:center;box-shadow:0 4px 15px rgba(0,0,0,.05);border:1px solid rgba(232,228,223,.5);border-top:3px solid #ccc;transition:all .3s}
.region-card:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,0,0,.08)}
.region-card h3{font-size:1rem;margin-bottom:.5rem}
.region-level{display:block;font-size:1.75rem;font-weight:700;margin:.25rem 0}
.region-cities{font-size:.8rem;color:#999}

/* --- Teasers --- */
.teasers{padding:3rem 0;background:linear-gradient(135deg,#f5f0ea 0%,#ece3d7 100%);position:relative}
.teasers h2{text-align:center;margin-bottom:1.5rem}
.teaser-card{display:block;background:rgba(255,255,255,.8);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-radius:16px;padding:1.75rem;box-shadow:0 4px 15px rgba(0,0,0,.05);border:1px solid rgba(255,255,255,.6);transition:all .3s;text-decoration:none;color:inherit;position:relative;overflow:hidden}
.teaser-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#c4956a,#e8c9a0);transform:scaleX(0);transition:transform .3s;transform-origin:left}
.teaser-card:hover{box-shadow:0 8px 30px rgba(0,0,0,.1);transform:translateY(-4px)}
.teaser-card:hover::before{transform:scaleX(1)}
.teaser-card h3{font-size:1rem;color:#1a1815;margin:0 0 .5rem}
.teaser-card p{font-size:.9rem;color:#6b6560;margin:0;line-height:1.5}

/* --- Page Header with Icon --- */
.page-header{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}
.page-header-icon{width:56px;height:56px;flex-shrink:0}
.page-header-icon svg{width:100%;height:100%}
.page-header h1{margin-bottom:0}

/* --- Content Hero Image --- */
.content-hero{width:100%;height:280px;object-fit:cover;border-radius:16px;margin-bottom:2rem;box-shadow:0 4px 20px rgba(0,0,0,.1)}
@media(max-width:768px){.content-hero{height:180px;border-radius:12px}}

/* --- Content Pages --- */
.content-page{padding:2.5rem 0}
.content-page h1{margin-bottom:1rem}
.content-page ul,.content-page ol{margin-bottom:1rem}
.content-page li{margin-bottom:.35rem}

/* --- Tables --- */
.city-table-wrap{overflow-x:auto;margin:1rem 0;border-radius:12px;box-shadow:0 2px 10px rgba(0,0,0,.05)}
.city-table{min-width:600px}
.city-table th,.city-table td{padding:.65rem .75rem;text-align:left;border-bottom:1px solid #e8e4df}
.city-table th{font-weight:600;font-size:.85rem;color:#6b6560;background:#faf8f5}
.city-table td{font-size:.9rem}
.city-table small{color:#999}
.city-table tbody tr{transition:background .2s}
.city-table tbody tr:hover{background:rgba(196,149,106,.05)}

.info-table{margin:1rem 0;border-radius:12px;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.05)}
.info-table th,.info-table td{padding:.5rem .75rem;text-align:left;border-bottom:1px solid #e8e4df}
.info-table th{font-weight:600;font-size:.85rem;background:#faf8f5}

/* --- Product Comparison --- */
.product-comparison{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin:1.5rem 0}
.product-card{background:#fff;border:1px solid #e8e4df;border-radius:16px;padding:0;position:relative;transition:all .3s;overflow:hidden;display:flex;flex-direction:column}
.product-card::after{content:'';position:absolute;inset:0;border-radius:16px;border:2px solid transparent;background:linear-gradient(135deg,#c4956a,#e8c9a0) border-box;-webkit-mask:linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .3s;pointer-events:none}
.product-card:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(0,0,0,.08)}
.product-card:hover::after{opacity:1}
.product-card--featured{border:2px solid #c4956a;box-shadow:0 4px 20px rgba(196,149,106,.15)}
.product-card--featured .product-badge{background:linear-gradient(135deg,#e8834a,#c4956a)}
.product-img{width:100%;height:220px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#f5f0ea,#ece3d7);padding:1.5rem;position:relative}
.product-img img{max-height:100%;max-width:100%;width:auto;height:auto;object-fit:contain;mix-blend-mode:multiply;transition:transform .3s}
.product-card:hover .product-img img{transform:scale(1.05)}
.product-img svg{width:auto;height:100%;max-width:100%}
.product-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.product-card h3{font-size:1.15rem;margin-bottom:.25rem}
.product-price{font-size:1.35rem;font-weight:700;color:#1a1815;margin-bottom:.75rem;display:flex;align-items:baseline;gap:.35rem}
.product-price .price-hint{font-size:.75rem;font-weight:400;color:#999}
.product-badge{position:absolute;top:0;left:1rem;background:linear-gradient(135deg,#c4956a,#a87d58);color:#fff;font-size:.75rem;font-weight:600;padding:.35rem .75rem;border-radius:0 0 6px 6px;box-shadow:0 2px 8px rgba(196,149,106,.3);z-index:2}
.product-specs{list-style:none;padding:0;margin:.5rem 0}
.product-specs li{padding:.4rem 0;font-size:.88rem;border-bottom:1px solid #f5f0ea;display:flex;align-items:center;gap:.35rem}
.product-specs li::before{content:"\2713";color:#4caf50;font-weight:700;flex-shrink:0;width:1.1em}
.product-pros{list-style:none;padding:0;margin:.75rem 0 0}
.product-pros li{padding:.25rem 0;font-size:.82rem;color:#5a5550}
.product-pros li::before{content:"+";color:#4caf50;font-weight:700;margin-right:.35rem}
.product-cons{list-style:none;padding:0;margin:.25rem 0 0}
.product-cons li{padding:.25rem 0;font-size:.82rem;color:#5a5550}
.product-cons li::before{content:"\2212";color:#e57373;font-weight:700;margin-right:.35rem}
.product-note{font-size:.85rem;color:#6b6560;margin-top:.75rem}
.product-footer{margin-top:auto;padding-top:1rem}
.product-btn{display:inline-block;width:100%;text-align:center;padding:.75rem 1.5rem;background:linear-gradient(135deg,#c4956a,#a87d58);color:#fff;border-radius:8px;font-size:.9rem;font-weight:500;text-decoration:none;transition:all .3s;box-shadow:0 2px 10px rgba(196,149,106,.3)}
.product-btn:hover{background:linear-gradient(135deg,#a87d58,#8b6545);color:#fff;transform:translateY(-1px);box-shadow:0 4px 15px rgba(196,149,106,.4)}
.product-stars{color:#f9a825;font-size:.9rem;letter-spacing:1px;margin-bottom:.5rem}
.product-stars span{color:#d0ccc7}

/* --- Product Comparison Table --- */
.comparison-table-wrap{overflow-x:auto;margin:2rem 0;border-radius:12px;box-shadow:0 2px 15px rgba(0,0,0,.06)}
.comparison-table{min-width:600px;background:#fff}
.comparison-table th,.comparison-table td{padding:.65rem .75rem;text-align:center;border-bottom:1px solid #f0ece7;font-size:.88rem}
.comparison-table thead th{background:#faf8f5;font-weight:600;color:#5a5550;font-size:.8rem;text-transform:uppercase;letter-spacing:.03em}
.comparison-table thead th:first-child{text-align:left}
.comparison-table tbody td:first-child{text-align:left;font-weight:500;color:#2d2a26}
.comparison-table tbody tr:hover{background:rgba(196,149,106,.04)}
.comparison-table .val-best{color:#2e7d32;font-weight:600}
.comparison-table .col-featured{background:rgba(196,149,106,.06)}

/* --- Quick-Verdict Section --- */
.quick-verdict{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:1.5rem 0}
.verdict-item{text-align:center;padding:1.25rem;background:rgba(255,255,255,.7);border-radius:12px;border:1px solid #e8e4df}
.verdict-icon{font-size:1.75rem;margin-bottom:.5rem}
.verdict-label{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:#999;margin-bottom:.25rem}
.verdict-product{font-size:.95rem;font-weight:600;color:#1a1815}

@media(max-width:768px){
    .product-comparison{grid-template-columns:1fr}
    .product-img{height:160px}
    .quick-verdict{grid-template-columns:1fr}
}

/* --- Forms --- */
.input-field{display:block;width:100%;max-width:300px;padding:.65rem .75rem;border:1px solid #d0ccc7;border-radius:8px;font-size:.95rem;font-family:inherit;background:#fff;transition:all .2s}
.input-field:focus{outline:none;border-color:#c4956a;box-shadow:0 0 0 4px rgba(196,149,106,.12)}
.city-selector{margin:1rem 0}
.city-selector label{font-weight:500;margin-right:.5rem}

/* --- Chart --- */
.chart-wrap{margin:1rem 0;background:#fff;border-radius:16px;padding:1.25rem;box-shadow:0 4px 15px rgba(0,0,0,.05)}
.chart-wrap canvas{display:block;width:100%;max-width:100%}

/* --- Footer --- */
.site-footer{background:#1a1815;color:#a09890;padding:3.5rem 0 1.5rem;margin-top:0;position:relative}
.site-footer::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#c4956a,#e8c9a0,#c4956a)}
.footer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-bottom:2rem}
.site-footer h3{color:#e8e4df;font-size:.9rem;font-weight:600;margin-bottom:.75rem;text-transform:uppercase;letter-spacing:.05em}
.site-footer ul{list-style:none;padding:0}
.site-footer li{margin-bottom:.4rem}
.site-footer a{color:#a09890;font-size:.85rem;transition:color .2s}
.site-footer a:hover{color:#e8c9a0}
.footer-bottom{border-top:1px solid #2d2a26;padding-top:1.25rem;font-size:.8rem;text-align:center}
.footer-bottom p{margin-bottom:.35rem}
.footer-bottom a{color:#c4956a}

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

/* --- Pastel Card Variants --- */
.card--mint{background:linear-gradient(135deg,rgba(232,245,233,.7),rgba(255,255,255,.7));border-left:3px solid #a5d6a7}
.card--amber{background:linear-gradient(135deg,rgba(255,248,225,.7),rgba(255,255,255,.7));border-left:3px solid #ffe082}
.card--blue{background:linear-gradient(135deg,rgba(227,242,253,.7),rgba(255,255,255,.7));border-left:3px solid #90caf9}
.card--solar{background:linear-gradient(135deg,rgba(255,243,224,.7),rgba(255,255,255,.7));border-left:3px solid #ffcc80}

.teaser--mint{background:linear-gradient(135deg,rgba(232,245,233,.6),rgba(255,255,255,.8))}
.teaser--mint::before{background:linear-gradient(90deg,#66bb6a,#a5d6a7)}
.teaser--blue{background:linear-gradient(135deg,rgba(227,242,253,.6),rgba(255,255,255,.8))}
.teaser--blue::before{background:linear-gradient(90deg,#42a5f5,#90caf9)}
.teaser--amber{background:linear-gradient(135deg,rgba(255,248,225,.6),rgba(255,255,255,.8))}
.teaser--amber::before{background:linear-gradient(90deg,#ffa726,#ffe082)}
.teaser--sand{background:linear-gradient(135deg,rgba(215,204,200,.3),rgba(255,255,255,.8))}
.teaser--sand::before{background:linear-gradient(90deg,#8d6e63,#d7ccc8)}
.teaser--lavender{background:linear-gradient(135deg,rgba(243,229,245,.5),rgba(255,255,255,.8))}
.teaser--lavender::before{background:linear-gradient(90deg,#ab47bc,#ce93d8)}
.teaser--teal{background:linear-gradient(135deg,rgba(224,242,241,.5),rgba(255,255,255,.8))}
.teaser--teal::before{background:linear-gradient(90deg,#26a69a,#80cbc4)}

/* --- Teaser Icons --- */
.teaser-icon{width:48px;height:48px;margin-bottom:.75rem}
.teaser-icon svg{width:100%;height:100%}

/* --- Impressum Anti-Spam --- */
.obf{unicode-bidi:bidi-override;direction:rtl;display:inline-block}
.hp-field{position:absolute;left:-9999px;opacity:0;height:0;width:0;overflow:hidden}

/* --- Utility --- */
.data-note{background:linear-gradient(135deg,#f5f0ea,#ece3d7);border-radius:12px;padding:1.25rem;margin:1.5rem 0;font-size:.85rem;color:#6b6560;border:1px solid rgba(232,228,223,.5)}
.affiliate-note{font-size:.8rem;color:#999;font-style:italic;margin-top:2rem;padding-top:1rem;border-top:1px solid #e8e4df}

/* --- Two-Column Content (Text + Image) --- */
.content-split{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;margin:2rem 0}
.content-split--reverse{direction:rtl}
.content-split--reverse>*{direction:ltr}
.content-split img{width:100%;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,.08)}
.content-split-text h2{margin-top:0}
@media(max-width:768px){
    .content-split{grid-template-columns:1fr;gap:1rem}
    .content-split--reverse{direction:ltr}
}

/* --- Section Image (inline content illustration) --- */
.section-img{width:100%;max-height:300px;object-fit:cover;border-radius:12px;margin:1.5rem 0;box-shadow:0 4px 15px rgba(0,0,0,.08)}

/* --- City Selector (for calculators) --- */
.city-select{display:block;width:100%;max-width:360px;padding:.65rem .75rem;border:1px solid #d0ccc7;border-radius:8px;font-size:.95rem;font-family:inherit;background:#fff;transition:all .2s;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6560' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center}
.city-select:focus{outline:none;border-color:#c4956a;box-shadow:0 0 0 4px rgba(196,149,106,.12)}

/* --- Accessibility --- */
:focus-visible{outline:2px solid #c4956a;outline-offset:2px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* --- Print --- */
@media print{
    .site-header,.site-footer,.nav-toggle,.card-link,.hero-particles{display:none}
    body{background:#fff;color:#000}
    .card,.teaser-card,.region-card{box-shadow:none;border:1px solid #ccc;backdrop-filter:none}
    .reveal{opacity:1;transform:none}
}
