/* ═══════════════════════════════════════════
   GARTENVEREIN TUNINGEN — Global Stylesheet
   Datei: css/style.css
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Design Tokens (Logo-Farben) ── */
:root {
  --creme:    #F0EDD6;
  --creme-d:  #E2DCC0;
  --creme-dd: #D0C99E;
  --gd:       #1B4D1B;   /* Dunkelgrün Logo */
  --gm:       #2E7D2E;   /* Mittelgrün Logo */
  --gh:       #4A9E3F;
  --gold:     #C9A84C;   /* Goldrand Logo   */
  --goldh:    #E2C46A;
  --goldd:    #9A7A28;
  --td:       #1A2A1A;
  --tm:       #3A4A3A;
  --tl:       #6A7A6A;
  --w:        #FFFFFF;
  --rot:      #B83232;
  --sh:       rgba(27,77,27,0.12);
  --r:        10px;
  --rs:       6px;
  --nav-h:    64px;
}

/* ── Icon System (Inline SVG sprite injected by app.js) ── */
.i {
  width: 1em; height: 1em;
  display: inline-block; vertical-align: -0.15em;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.i-lg { width: 1.35em; height: 1.35em; }
.i-xl { width: 2em; height: 2em; }
.i-2xl { width: 3rem; height: 3rem; }

/* Subtle SVG pattern backgrounds for image placeholders */
.bg-pat-leaves {
  background-color: var(--gm);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0, transparent 40%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.04) 18px 19px);
}
.bg-pat-rows {
  background-color: var(--gd);
  background-image:
    repeating-linear-gradient(90deg, rgba(201,168,76,0.10) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 30px);
}
.bg-pat-trellis {
  background-color: #3D8A34;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.07) 14px 15px),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 15px);
}
.bg-pat-soil {
  background-color: var(--gh);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0,0,0,0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.06) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 60%, rgba(0,0,0,0.07) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.05) 0 1px, transparent 2px);
  background-size: 60px 60px, 80px 80px, 50px 50px, 40px 40px;
}
.bg-pat-hero {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(201,168,76,0.18) 0, transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(201,168,76,0.12) 0, transparent 45%),
    repeating-linear-gradient(35deg, transparent 0 60px, rgba(255,255,255,0.02) 60px 61px);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--creme);
  color: var(--td);
  overflow-x: hidden;
  font-size: 16px;
  padding-top: var(--nav-h);
}
a { color: var(--gm); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--gm); border-radius: 3px; }

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--gd);
  border-bottom: 3px solid var(--gold);
  display: flex; align-items: center;
  padding: 0 1.25rem; gap: 0.75rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.35);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.65rem;
  cursor: pointer; flex-shrink: 0; text-decoration: none;
}
.nav-brand img {
  width: 40px; height: 40px;
  border-radius: 50%; border: 2px solid var(--gold);
  object-fit: contain; background: transparent;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-text .t1 { color: var(--creme); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.05em; }
.nav-brand-text .t2 { color: var(--goldh); font-size: 0.86rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.nav-links {
  display: flex; list-style: none; gap: 0;
  flex: 1; justify-content: center; overflow: hidden;
}
.nav-links li a {
  display: flex; align-items: center; gap: 0.45rem;
  color: rgba(240,237,214,0.8); text-decoration: none;
  padding: 0 0.85rem; height: var(--nav-h);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: all 0.2s;
}
.nav-links li a .i { opacity: 0.7; }
.nav-links li a:hover .i, .nav-links li a.active .i { opacity: 1; }
.nav-links li a:hover,
.nav-links li a.active { color: var(--goldh); border-bottom-color: var(--gold); text-decoration: none; }
/* Auth block — always at far right */
.nav-auth {
  display: flex; align-items: center; gap: 0.45rem;
  flex-shrink: 0; margin-left: auto;
}
.user-chip {
  background: rgba(201,168,76,0.2); color: var(--goldh);
  padding: 0.25rem 0.65rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; white-space: nowrap;
  display: none;
}
.btn-nav {
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--goldh); padding: 0.3rem 0.8rem; border-radius: 20px;
  cursor: pointer; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s; white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-nav:hover { background: var(--gold); color: var(--gd); }
.btn-nav.logout { border-color: var(--rot); color: #ffaaaa; }
.btn-nav.logout:hover { background: var(--rot); color: #fff; }
/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--creme); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile drawer */
.mob-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--gd); z-index: 999;
  border-bottom: 3px solid var(--gold);
  display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.mob-menu.open { display: block; animation: fadeUp 0.25s ease; }
.mob-links { display: flex; flex-direction: column; }
.mob-links a {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(240,237,214,0.85);
  padding: 0.85rem 1.5rem; text-decoration: none;
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.15s;
}
.mob-links a .i { opacity: 0.7; color: var(--goldh); }
.mob-links a:hover { background: rgba(201,168,76,0.15); color: var(--goldh); padding-left: 2rem; }

/* ════════════════════════════════
   LAYOUT HELPERS
════════════════════════════════ */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 1.25rem; max-width: 1080px; margin: 0 auto; }
.section-full { padding: 3.5rem 1.25rem; }
.text-center { text-align: center; }
.s-tag {
  display: inline-block; color: var(--gm);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 2px solid var(--gold); padding-bottom: 0.15rem; margin-bottom: 0.5rem;
}
.s-tag.lt { color: var(--goldh); }
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--gd); font-weight: 700;
}
.s-title.lt { color: var(--creme); }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-p {
  background: var(--gold); color: var(--gd); border: none; cursor: pointer;
  padding: 0.78rem 1.6rem; font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: 25px;
  transition: all 0.2s; box-shadow: 0 4px 15px rgba(201,168,76,0.35);
  font-family: 'Source Sans 3', sans-serif; display: inline-block; text-decoration: none;
}
.btn-p:hover { background: var(--goldh); transform: translateY(-2px); text-decoration: none; color: var(--gd); }
.btn-o {
  background: transparent; color: var(--creme);
  border: 2px solid rgba(240,237,214,0.4); cursor: pointer;
  padding: 0.78rem 1.6rem; font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: 25px;
  transition: all 0.2s; font-family: 'Source Sans 3', sans-serif;
  display: inline-block; text-decoration: none;
}
.btn-o:hover { border-color: var(--goldh); color: var(--goldh); text-decoration: none; }
.btn-o.dk { color: var(--gd); border-color: rgba(27,77,27,0.3); }
.btn-o.dk:hover { border-color: var(--gm); color: var(--gm); }
.btn-sm {
  padding: 0.38rem 0.9rem; font-size: 0.74rem; border-radius: 20px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid var(--gm); color: var(--gm);
  background: none; transition: all 0.18s; font-family: 'Source Sans 3', sans-serif;
}
.btn-sm:hover { background: var(--gm); color: #fff; }
.btn-sm.g { border-color: var(--gold); color: var(--goldd); }
.btn-sm.g:hover { background: var(--gold); color: var(--gd); }
.btn-sm.r { border-color: var(--rot); color: var(--rot); }
.btn-sm.r:hover { background: var(--rot); color: #fff; }

/* ════════════════════════════════
   CARDS (generic)
════════════════════════════════ */
.card {
  background: var(--w); border-radius: var(--r);
  box-shadow: 0 2px 14px var(--sh); padding: 1.5rem;
}
.card-top-gm { border-top: 4px solid var(--gm); }
.card-top-gold { border-top: 4px solid var(--gold); }
.card-top-gh { border-top: 4px solid var(--gh); }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.1rem; margin-top: 1.75rem;
}
.news-card {
  background: var(--w); border-radius: var(--r); overflow: hidden;
  box-shadow: 0 2px 14px var(--sh);
  transition: transform 0.25s;
}
.news-card:hover { transform: translateY(-3px); }
.news-img {
  height: 140px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gh), var(--gd));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
}
.news-img .i { width: 2.2rem; height: 2.2rem; stroke-width: 1.5; }
.news-img > * { position: relative; z-index: 1; }
.news-body { padding: 1.1rem; }
.news-date { color: var(--goldd); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.news-title { font-family: 'Playfair Display', serif; color: var(--gd); font-size: 1.05rem; margin: 0.35rem 0 0.5rem; }
.news-text { color: var(--tm); font-size: 0.86rem; line-height: 1.6; }

/* ════════════════════════════════
   FORMS
════════════════════════════════ */
.fg { margin-bottom: 1rem; }
.fg label {
  display: block; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 0.3rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--creme-d); border-radius: var(--rs);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.91rem;
  color: var(--td); background: var(--creme);
  transition: border-color 0.2s; appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--gm);
  box-shadow: 0 0 0 3px rgba(46,125,46,0.1);
}
.fg input.err { border-color: var(--rot) !important; }
.fg .emsg { color: var(--rot); font-size: 0.7rem; margin-top: 0.25rem; display: none; }
.fg .emsg.on { display: block; }
.fg textarea { resize: vertical; min-height: 76px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ck-row { display: flex; align-items: center; gap: 0.85rem; }
.ck-row span { font-size: 0.82rem; color: var(--tm); line-height: 1.5; }

/* Custom Checkbox — sichtbares Häkchen */
.ck-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; min-width: 20px;
  border: 2px solid var(--creme-dd);
  border-radius: 4px; background: var(--creme);
  cursor: pointer; margin-top: 1px; flex-shrink: 0;
  transition: all 0.18s; position: relative;
}
.ck-row input[type="checkbox"]:hover {
  border-color: var(--gm);
  background: rgba(46,125,46,0.06);
}
.ck-row input[type="checkbox"]:checked {
  background: var(--gm);
  border-color: var(--gm);
}
.ck-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 10px; top: 2px;
  width: 7px; height: 13px;
  border: 2.5px solid #fff;
  border-top: none; border-left: none;
  transform: translate(-50%, 0) rotate(45deg);
}
/* Standalone checkboxes in tables */
input[type="checkbox"].standalone {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--creme-dd); border-radius: 3px;
  background: var(--creme); cursor: pointer;
  transition: all 0.18s; position: relative; vertical-align: middle;
}
input[type="checkbox"].standalone:checked {
  background: var(--gm); border-color: var(--gm);
}
input[type="checkbox"].standalone:checked::after {
  content: '';
  position: absolute; left: 10px; top: 2px;
  width: 6px; height: 11px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: translate(-50%, 0) rotate(45deg);
}

/* ════════════════════════════════
   TABLES
════════════════════════════════ */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl-toolbar {
  display: flex; gap: 0.7rem; align-items: center;
  margin-bottom: 0.9rem; flex-wrap: wrap;
}
.tbl-toolbar input[type="text"] {
  padding: 0.45rem 0.8rem; border: 1.5px solid var(--creme-d);
  border-radius: 20px; font-family: 'Source Sans 3', sans-serif;
  font-size: 0.83rem; color: var(--td); background: var(--creme);
  flex: 1; min-width: 160px; transition: border-color 0.2s;
}
.tbl-toolbar input:focus { outline: none; border-color: var(--gm); }
table.dt {
  width: 100%; border-collapse: collapse;
  font-size: 0.82rem; min-width: 460px;
}
table.dt th {
  background: var(--gd); color: var(--goldh);
  padding: 0.6rem 0.8rem; text-align: left;
  font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; white-space: nowrap;
}
table.dt td {
  padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--creme-d);
  color: var(--tm); vertical-align: top;
}
table.dt tr:hover td { background: var(--creme); }
.badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.04em; padding: 0.12rem 0.5rem; border-radius: 12px; white-space: nowrap;
}
.bok   { background: rgba(46,125,46,0.12); color: var(--gm); }
.bwarn { background: rgba(184,50,50,0.1);  color: var(--rot); }
.bpend { background: rgba(201,168,76,0.15);color: var(--goldd); }
.bnew  { background: rgba(52,120,200,0.12);color: #2870b8; }
.ab {
  background: none; border: 1.5px solid currentColor;
  padding: 0.15rem 0.45rem; border-radius: 4px; cursor: pointer;
  font-size: 0.7rem; font-weight: 700; transition: all 0.18s;
  margin-right: 0.18rem; font-family: 'Source Sans 3', sans-serif;
}
.ab.ok   { color: var(--gm); }  .ab.ok:hover   { background: var(--gm); color: #fff; }
.ab.ko   { color: var(--rot); } .ab.ko:hover   { background: var(--rot); color: #fff; }
.ab.edit { color: var(--goldd);} .ab.edit:hover { background: var(--gold); color: var(--gd); }
.chip {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  background: var(--creme-d); color: var(--tm);
  padding: 0.1rem 0.45rem; border-radius: 10px; margin-right: 0.18rem;
}

/* ════════════════════════════════
   OVERLAYS / MODALS
════════════════════════════════ */
.overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(27,77,27,0.65); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.overlay.open { display: flex; animation: fadeIn 0.2s ease; }
.modal {
  background: var(--w); border-radius: var(--r);
  padding: clamp(1.25rem, 4vw, 2rem); width: 100%; max-width: 430px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative; max-height: 88vh; overflow-y: auto;
}
.modal.wide { max-width: 540px; }
.modal-x {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: none; border: none; font-size: 1.1rem;
  cursor: pointer; color: var(--tl); transition: color 0.2s; line-height: 1;
}
.modal-x:hover { color: var(--rot); }
.modal-logo { text-align: center; margin-bottom: 1rem; }
.modal-logo img {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--gold); object-fit: contain; background: transparent;
  margin: 0 auto;
}
.modal-title { font-family: 'Playfair Display', serif; color: var(--gd); font-size: 1.3rem; margin-bottom: 0.18rem; }
.modal-sub { color: var(--tl); font-size: 0.8rem; margin-bottom: 1.25rem; }
.modal-footer { display: flex; gap: 0.7rem; margin-top: 0.9rem; }
.modal-footer button { flex: 1; }

/* ════════════════════════════════
   TOAST
════════════════════════════════ */
.toast {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 9999;
  background: var(--gd); color: var(--creme);
  padding: 0.8rem 1.1rem; border-radius: var(--rs);
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  font-size: 0.86rem; font-weight: 600;
  max-width: calc(100vw - 2.5rem); display: none;
}
.toast.on  { display: block; animation: fadeUp 0.3s ease; }
.toast.err { border-left-color: var(--rot); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: #0d2a0d; color: rgba(240,237,214,0.5);
  text-align: center; padding: 1.25rem; font-size: 0.76rem;
  border-top: 3px solid var(--gold); line-height: 1.8;
}
footer a { color: var(--goldh); }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float  { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-18px) rotate(5deg);} }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-brand-text .t1 { display: none; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav-brand-text { display: none; }
  .user-chip { display: none !important; }
  .btn-nav { font-size: 0.65rem; padding: 0.25rem 0.55rem; }
}
/* Landscape mobile */
@media (orientation: landscape) and (max-height: 500px) {
  :root { --nav-h: 50px; }
  .hero { min-height: auto; padding: 1.5rem; }
  .hero-logo-wrap img { width: 90px; height: 90px; }
  .hero h1 { font-size: 1.5rem; }
}
@media (orientation: landscape) and (max-width: 900px) {
  .mob-links { flex-direction: row; flex-wrap: wrap; }
  .mob-links a { flex: 1 1 50%; border-right: 1px solid rgba(255,255,255,0.06); font-size: 0.78rem; padding: 0.6rem 1rem; }
}

/* ── RSS Garten-News Widget ── */
.rss-widget { margin-top: 1.25rem; }
.rss-widget-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.rss-widget-header h3 { font-family: 'Playfair Display', serif; color: var(--gd); margin: 0; font-size: 1.1rem; }
.rss-badge { background: var(--gm); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 3px; letter-spacing: 0.03em; }
.rss-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 0.85rem; }
.rss-card { background: var(--creme); border-radius: var(--rs); padding: 1rem; display: flex; flex-direction: column; gap: 0.45rem; border: 1px solid rgba(46,125,46,0.12); transition: box-shadow 0.18s; }
.rss-card:hover { box-shadow: 0 3px 14px rgba(46,125,46,0.14); }
.rss-card-date { font-size: 0.7rem; color: var(--tl); }
.rss-card-title { font-size: 0.88rem; font-weight: 700; color: var(--gd); line-height: 1.35; }
.rss-card-desc { font-size: 0.8rem; color: var(--tm); line-height: 1.45; flex: 1; }
.rss-card-link { font-size: 0.75rem; color: var(--gm); font-weight: 600; text-decoration: none; align-self: flex-start; }
.rss-card-link:hover { text-decoration: underline; }
.rss-loading { color: var(--tl); font-size: 0.85rem; padding: 1.5rem 0; text-align: center; }
.rss-error { color: var(--err, #c0392b); font-size: 0.83rem; padding: 1rem; background: rgba(192,57,43,0.07); border-radius: var(--rs); }

/* ── Unter Konstruktion Banner ── */
#wip-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
  overflow: hidden;
}
#wip-overlay span {
  position: absolute;
  display: block;
  white-space: nowrap;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  color: rgba(200, 0, 0, 0.18);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-35deg);
  transform-origin: center;
  user-select: none;
}
