:root{
  --bg: #ffffff;
  --text: #101214;
  --muted: #4b5563;
  --border: rgba(16,18,20,.10);

  --black: #0b0d10;
  --black2: #0f1318;

  --white: #ffffff;
  --orange: #ff7a1a;
  --orangeGlow: rgba(255,122,26,.35);

  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{
  outline: 3px solid rgba(255,122,26,.45);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Layout */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--black), var(--black2));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.topbar__meta{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
}
.topbar__note{ opacity:.85; }

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: transform .12s ease, border-color .12s ease, color .12s ease;
}
.chip:hover{
  border-color: rgba(255,122,26,.55);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
  transform: translateY(-1px);
}

.navrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0 16px;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.brand__mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(255,122,26,.95), rgba(255,122,26,.18));
  box-shadow: 0 10px 24px rgba(255,122,26,.18);
  border: 1px solid rgba(255,122,26,.35);
}
.brand__name{
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 20px;
  color: var(--orange);
  line-height: 1;
}
.brand__sub{
  display:block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .25px;
  color: rgba(255,255,255,.78);
  margin-top: 4px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav__links{
  display:flex;
  align-items:center;
  gap: 6px;
}
.nav__link{
  appearance:none;
  border:0;
  background: transparent;
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
  cursor:pointer;
  transition: background .12s ease, color .12s ease, transform .12s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav__link:hover{
  background: rgba(255,255,255,.06);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
  transform: translateY(-1px);
}

/* Dropdown */

.dd{ position: relative; }
.dd__panel{
  position:absolute;
  top: 44px;
  right: 0;
  min-width: 240px;
  background: rgba(15,19,24,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;              /* default geschlossen */
  flex-wrap: wrap;            /* erlaubt Umbruch -> keine Wurst */
  gap: 6px;
  align-items: stretch;       /* korrekt geschrieben */

}
.dd.open .dd__panel{ display:block; }
.dd__panel a{
  display:flex;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.92);
  font-weight: 620;
  font-size: 14px;
  flex: 1 1 160px;     /* macht 1–2 Spalten je nach Platz */
  white-space: nowrap; /* verhindert unschöne Wortumbrüche */

}
.dd__panel a:hover{
  background: rgba(255,255,255,.06);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
} 

/* Dropdown-Trigger exakt wie .nav__link */
.dd > button,
.dd > a{
  appearance:none;
  border:0;
  background: transparent;
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
  font-family: inherit;      /* <- wichtig für “gleiche Schrift” */
  line-height: 1;            /* <- verhindert das “tiefer sitzen” */
  cursor:pointer;
  transition: background .12s ease, color .12s ease, transform .12s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.dd > button:hover,
.dd > a:hover{
  background: rgba(255,255,255,.06);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
  transform: translateY(-1px);
}

/* CTA */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 750;
  font-size: 14px;
  background: linear-gradient(180deg, rgba(255,122,26,.98), rgba(255,122,26,.82));
  color: #161616;
  border: 1px solid rgba(255,122,26,.45);
  box-shadow: 0 10px 22px rgba(255,122,26,.18);
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
}
.cta:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* Burger */
.burger{
  display:none;
  appearance:none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 750;
}

/* Mobile Panel */

.mobile-panel{
  display:none;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,16,.98);
  padding: 10px 0 16px;
}
.mobile-panel.open{ display:block; }
.mobile-panel a,
.mobile-panel__btn{
  width: 100%;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  margin: 6px 0;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-weight: 720;
  cursor:pointer;
}
.mobile-panel a:hover,
.mobile-panel__btn:hover{
  border-color: rgba(255,122,26,.55);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
}
.mobile-panel__cta{
  border-color: rgba(255,122,26,.55) !important;
  color: #161616 !important;
  background: linear-gradient(180deg, rgba(255,122,26,.98), rgba(255,122,26,.82)) !important;
}
.mobile-sub{
  display:none;
  padding: 0 4px 8px;
}
.mobile-sub.open{ display:block; }
.mobile-sub a{
  border-style:dashed;
  font-weight: 650;
}



/* Mobile menu: make dropdown triggers look EXACTLY like the normal links */
.mobile-panel a,
.mobile-panel__btn{
  font-family: inherit !important;
  font-size: 18px !important;     /* pick one size for all */
  font-weight: 800 !important;    /* same boldness as the others */
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

/* Remove native button quirks (Android/Chrome can render buttons differently) */
.mobile-panel__btn{
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

/* Make the arrow not shrink the text area / not affect alignment */
.mobile-panel__btn .caret,
.mobile-panel__btn svg,
.mobile-panel__btn span:last-child{
  flex: 0 0 auto;
  font-size: 16px;
  opacity: .85;
}




/* Main */
.site-main{ background: var(--bg); }

/* --------------------------------------------
   HERO IMAGE VERSION (single source of truth)
   Use with: <section class="hero hero--image">
-------------------------------------------- */

.hero.hero--image {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0d10;
  border-bottom: 1px solid rgba(16,18,20,.10);
}

/* Background image + dark overlay */
.hero.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 13, 16, 0.72), rgba(11, 13, 16, 0.88)),
    url("../images/frankfurt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

/* Subtle orange accent */
.hero.hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 122, 26, 0.18),
    rgba(255, 122, 26, 0) 55%
  );
  pointer-events: none;
}

/* Content */
.hero.hero--image .hero-content {
  position: relative;
  z-index: 2;
  max-width: 68ch;
  padding: 56px 0;
  color: #ffffff;
}

.hero.hero--image h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.6px;
  line-height: 1.08;
}

.hero.hero--image .hero-subline {
  margin: 0 0 12px;
  font-weight: 650;
  opacity: 0.92;
}

.hero.hero--image .hero-lead {
  margin: 0 0 22px;
  font-size: 16px;
  opacity: 0.88;
}

.hero.hero--image .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}

.hero.hero--image .hero-note {
  margin: 12px 0 0;
  font-size: 13px;
  opacity: 0.78;
  max-width: 80ch;
}

/* Optional: ensure buttons still look good on dark hero */
.hero.hero--image .btn {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
}
.hero.hero--image .btn:hover {
  border-color: rgba(255,122,26,.55);
  color: #ff7a1a;
  text-shadow: 0 0 12px rgba(255,122,26,.30);
}
.hero.hero--image .btn.primary {
  background: linear-gradient(180deg, rgba(255,122,26,.98), rgba(255,122,26,.82));
  color: #161616;
  border-color: rgba(255,122,26,.45);
}
.hero.hero--image .btn.primary:hover {
  color: #161616;
}

/* hero dropdown panel (same vibe as your other hero text) */
.hero-dd__panel{
  margin-top: 10px;
  max-width: 72ch;               /* like section-lead */
  color: rgba(255,255,255,.88);  /* adapt if your hero text uses another color */
  font-size: 15px;
  line-height: 1.55;

  /* same overlay look as hero content */
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 14px;
}

.hero-dd__panel p{ margin: 0; }


/* Responsive: a bit less height on small screens */
@media (max-width: 780px){
  .hero.hero--image {
    min-height: 62vh;
  }
  .hero.hero--image .hero-content {
    padding: 44px 0;
  }
}

/* HERO buttons: make <a.btn.primary> and <button.btn.hero-dd__btn> identical */
.hero.hero--image .hero-actions .btn{
  height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: .15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

/* Make the Kanzlei dropdown trigger look EXACTLY like the secondary button */
.hero.hero--image .hero-actions .btn.hero-dd__btn{
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

.hero.hero--image .hero-actions .btn.hero-dd__btn:hover{
  border-color: rgba(255,122,26,.55);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
  transform: translateY(-1px);
}

.hero.hero--image .hero-actions .btn{
  height: 35px;
  padding: 8px 14px;
  font-size: 13.5px;
  border-radius: 12px;
}

/* HERO Teilen block: centered under the last sentence */
.hero-share{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center button + dropdown */
}

/* Panel: keep your hero-dd look but centered + sized for icons */
.hero-share__panel{
  margin-top: 10px;
  max-width: 320px;
  width: max-content;
}

/* Share icon buttons INSIDE the dropdown: same vibe as dropdown buttons, but compact */
.share-links{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.share-link{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .12s ease, color .12s ease, transform .12s ease, text-shadow .12s ease;
}

.share-link:hover{
  border-color: rgba(255,122,26,.55);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255,122,26,.16);
}

.share-link img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}



/* Hub section */
.hub{ padding: 44px 0; }
.section-title{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.25px;
}
.section-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 72ch;
}

/* keep widths exactly as now */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

/* make tile layout predictable: h3, image, text */
.tile{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  overflow: hidden;

  display: flex;              /* IMPORTANT */
  flex-direction: column;     /* stack h3, img, p */
  align-items: stretch;
}

.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(255,122,26,.38);
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
}

/* Center heading (optional for all tiles) */
.tile h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -.2px;
  text-align: center;        /* <-- center heading */
}

/* Images inside tiles */
.tile-media{
  display:block;
  width: 100%;               /* <-- full card width */
  height: 160px;             /* <-- controlled size (TOP row) */
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  clip-path: inset(0 round 12px);
  margin: 0 auto 10px;       /* <-- centers if width < 100% (still fine here) */
}

/* Bottom row */
.tile-media--bottom{
  height: 160px;
}

.tile p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tile--soft{
  background: rgba(17,24,39,.02);
}


/* Contact section */
.contact, .offer{
  padding: 46px 0 56px;
  background: rgba(17,24,39,.02);
  border-top: 1px solid var(--border);
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 18px;
  align-items: start;
}

.contact-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-card h2{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.25px;
}

.contact-lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 80ch;
}

.contact-form .field{
  margin-bottom: 12px;
}

.field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label{
  display:block;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(0,0,0,.78);
}

.req{ color: var(--accent); font-weight: 700; }

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact-form textarea{ resize: vertical; min-height: 140px; }

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(255,122,26,.55);
  box-shadow: 0 0 0 4px rgba(255,122,26,.12);
}

.hint{
  margin-top: 6px;
  color: var(--muted);
  font-size: 12.5px;
}

.error{
  min-height: 16px;
  margin-top: 6px;
  font-size: 12.5px;
  color: #b42318;
}

.is-invalid{
  border-color: #b42318 !important;
  box-shadow: 0 0 0 4px rgba(180,35,24,.10) !important;
}

.field-check{ margin-top: 2px; }
.checkline{
  display:flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(0,0,0,.78);
}
.checkline input{ margin-top: 3px; }

.form-actions{
  margin-top: 14px;
  display:flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.form-note{
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

.form-status{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(0,0,0,.75);
}

.form-status.ok{ color: #067647; }
.form-status.bad{ color: #b42318; }

/* Honeypot hidden but still in DOM */
.hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-side{
  background: #0b0d10;
  color: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
}

.contact-side h3{
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -.2px;
}

.kv{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.kv:first-of-type{ border-top: 0; }

.k{ color: rgba(255,255,255,.62); font-size: 13px; }
.v{ color: rgba(255,255,255,.92); font-size: 13.5px; }

/* Make the send button look like a real CTA */
.cta-send{
  padding: 12px 20px;
  border-radius: 999px; /* more CTA-like */
  background: linear-gradient(180deg, rgba(255,122,26,.98), rgba(255,122,26,.82));
  border: 1px solid rgba(255,122,26,.45);
  color: #161616;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 10px 22px rgba(255,122,26,.18);
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
}


.cta-send:hover{ transform: translateY(-1px); filter: brightness(1.02); }


/* Checkbox + Text: same line, text starts right after checkbox, wrap under text */
.checkline{
  display: flex;
  align-items: flex-start;      /* IMPORTANT: prevents checkbox sitting between wrapped lines */
  justify-content: flex-start;
  gap: 10px;
}

.checkline input[type="checkbox"]{
  margin-right: 6px !important;
  width: 15px;
  height: 15px;
  accent-color: var(--purple-500);
  flex: 0 0 auto;
  margin: 2px 0 0;              /* aligns checkbox with first text line */
}

.checkline label{
  flex: 1 1 auto;               /* label takes remaining width and wraps nicely */
  margin: 0;
  display: block;               /* stable wrapping */
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
}

.checkline label a{
  color: var(--purple-200);
  text-decoration: none;
}

/* Datenschutzerklärung im Formular: immer unterstrichen */
.checkline a{
  text-decoration: underline;
  color: inherit;
  transition: color .12s ease, text-shadow .12s ease;
}

/* Hover wie andere Links (orange + Glow) */
.checkline a:hover{
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
}


/* If the checkbox line sits inside .field-check, keep SAME behavior (no centering!) */
.field-check .checkline{
  align-items: flex-start;      /* override any centering */
}





.contact-side a{ color: #ff7a1a; text-decoration: none; }
.contact-side a:hover{ text-decoration: underline; }

.contact-side-note{
  margin-top: 12px;
  color: rgba(255,255,255,.70);
  font-size: 12.5px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}

@media (max-width: 880px){
  .contact-grid{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
}

/* Footer */
.site-footer{
  background: linear-gradient(180deg, var(--black), var(--black2));
  color: rgba(255,255,255,.90);
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footergrid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  padding: 26px 0;
}
.foot-title{
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.foot-text{
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.footlist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.site-footer a{
  color: rgba(255,255,255,.88);
}
.site-footer a:hover{
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
}

.copyright{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 0 18px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .footergrid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
}

@media (max-width: 780px){
  .nav__links, .cta { display:none; }
  .burger{ display:inline-flex; }
  .topbar{ display:none; }
}

/* Social icons block */
  .social-media{
  display: flex;
  justify-content: center;
}

.social-icons{
  display: flex;
  align-items: center;
  gap: 18px;                  /* space between icons */
  padding: 12px 0; 
  padding-top: 40px;
}

/* Make each icon sit in an equal-size box (nice alignment) */
.social-icon{
  width: 56px;                /* same clickable area for all */
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Keep proportions: no distortion */
.social-icon img{
  max-height: 50px;           /* same visual height target */
  max-width: 56px;            /* prevents oversized wide logos */
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
}


/* Make ALL tile images sharp (no rounding) */
.hub .tile img.tile-media{

  border-radius: 12px !important;
  clip-path: inset(0 round 12px) !important;

 }

/* ===== Cookie banner (no cookies used) ===== */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;

  display: none; /* becomes visible via .show */
}

.cookie-banner.show{
  display: block;
}

.cookie-inner{
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(8, 10, 12, 0.92);
  border: 1px solid rgba(255, 138, 0, 0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-text{
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.25;
}

.cookie-actions{
  flex: 0 0 auto;
}

.cookie-ok{
  cursor: pointer;
  border: 1px solid rgba(255, 138, 0, 0.55);
  background: rgba(255, 138, 0, 0.14);
  color: rgba(255, 190, 120, 0.98);
  font-weight: 600;

  padding: 8px 14px;
  border-radius: 999px;

  transition: transform .08s ease, background .12s ease, border-color .12s ease;
}

.cookie-ok:hover{
  background: rgba(255, 138, 0, 0.20);
  border-color: rgba(255, 138, 0, 0.70);
}

.cookie-ok:active{
  transform: translateY(1px);
}

@media (max-width: 520px){
  .cookie-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions{
    display: flex;
    justify-content: flex-end;
  }
}

.page-main { padding: 48px 0; }
.legal h2 { margin-top: 28px; }
.legal p, .legal li { max-width: 75ch; } /* optional, schner lesbar */

.page-title--center { text-align: center; }

#legallink:hover{
  background: rgba(255,255,255,.06);
  color: var(--orange);
  text-shadow: 0 0 12px var(--orangeGlow);
  transform: translateY(-1px);
  text-decoration: underline;
}

#legallink {
  text-decoration: underline;
}

/* =========================================================
   TEMP: Disable navigation + box links (CSS-only)
   Keeps clickable: Startseite, Impressum, Datenschutz, Die Kanzlei, Teilen, Kontakt
   ========================================================= */

/* ---------- HEADER (desktop) ---------- */

/* Disable dropdown triggers (Leistungen / Publikationen) */
#btn-themen,
#btn-pub{
  pointer-events: none;
  cursor: default;
  opacity: .55;
}

/* Disable Ablauf + FAQ in header */
.nav__links > a.nav__link[href="/ablauf"],
.nav__links > a.nav__link[href="/faq"],
.nav__links > a.nav__link[href="/faq.html"]{
  pointer-events: none;
  cursor: default;
  opacity: .55;
  text-decoration: none;
}

/* Also disable the dropdown items inside the panels */
#dd-themen .dd__panel a,
#dd-pub .dd__panel a{
  pointer-events: none;
  cursor: default;
  opacity: .55;
  text-decoration: none;
}

/* ---------- HEADER (mobile panel) ---------- */

/* Disable mobile dropdown triggers */
#btn-mobile-themen,
#btn-mobile-pub{
  pointer-events: none;
  cursor: default;
  opacity: .55;
}

/* Disable all links inside mobile dropdowns (Leistungen/Publikationen items) */
#mobile-themen-sub a,
#mobile-pub-sub a{
  pointer-events: none;
  cursor: default;
  opacity: .55;
  text-decoration: none;
}

/* Disable Ablauf + FAQ in the mobile panel */
.mobile-panel > a[href="/ablauf"],
.mobile-panel > a[href="/faq"],
.mobile-panel > a[href="/faq.html"]{
  pointer-events: none;
  cursor: default;
  opacity: .55;
  text-decoration: none;
}

/* Keep Kontakt clickable in mobile */
.mobile-panel > a[href="#kontakt"],
.mobile-panel__cta[href="#kontakt"]{
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

/* ---------- FOOTER ---------- */

/* Disable footer "Men" links: Leistungen / Blog / Rechtsprechung / Ablauf / FAQ */
.site-footer .footlist a[href="leistungen/index"],
.site-footer .footlist a[href="leistungen/index.html"],
.site-footer .footlist a[href="blog/index"],
.site-footer .footlist a[href="blog/index.html"],
.site-footer .footlist a[href="rechtsprechung/index"],
.site-footer .footlist a[href="rechtsprechung/index.html"],
.site-footer .footlist a[href="/ablauf"],
.site-footer .footlist a[href="/faq"],
.site-footer .footlist a[href="/faq.html"]{
  pointer-events: none;
  cursor: default;
  opacity: .55;
  text-decoration: none;
}

/* Keep footer Kontakt clickable */
.site-footer .footlist a[href="#kontakt"]{
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

/* Keep footer Rechtliches clickable */
.site-footer .footlist a[href="/impressum"],
.site-footer .footlist a[href="/datenschutz"]{
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

/* ---------- BOX LINKS (tiles) ---------- */

/* Disable all "box links" everywhere */
a.tile{
  pointer-events: none;
  cursor: default;
}

/* (Optional) make tiles look less "clickable" */
a.tile:hover{
  transform: none !important;
  box-shadow: none !important;
}

/* Keep Share links clickable (your "Teilen" dropdown icons) */
a.share-link{
  pointer-events: auto;
  cursor: pointer;
}
