/* ============================================================
   BASE / RESET
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --content-max-width: 100%;
}

/** { outline: 1px solid rgba(255, 0, 0, 0.4); }*/

html,
body {
  font-family: "Inter", Arial, sans-serif;
  background-size: cover;
  position: relative;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 {
  font-size: 4.5rem;
  font-weight: 300;
  margin-top: 20px;
  text-align: left;
}

h2 {
  font-size: 1.6rem;
  margin: 20px 0 10px;
  font-weight: 400;
  text-align: left;
}

p {
  margin: 8px 0;
}

/* ============================================================
   COMMON UI
============================================================ */
.burger {
  display: none;
}

/* ============================================================
   MARQUEE (STATIC)
============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  white-space: normal;
}

.marquee__inner {
  display: block;
  width: 100%;
}

.marquee__inner img {
  height: 200px;
  margin-right: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   VITA
============================================================ */
.vita-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.vita-bild {
  width: 100%;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.vita-liste {
  list-style: disc;
  padding-left: 2rem;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE (GRID)
============================================================ */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: none;
  min-height: 100vh;
}

/* LEFT COLUMN */
.kontakt-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
}

/* TEXT */
.kontakt-text {
  width: 100%;
  max-width: clamp(280px, 32vw, 600px);
}

.kontakt-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FORM */
/* ============================================================
   CONTACT FORM – MODERN, QUIET
============================================================ */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;

  width: 100%;
  max-width: clamp(280px, 32vw, 600px);
}

/* label wrapper (kept minimal, future-proof) */
.kontakt-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
}

/* inputs + textarea */
.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;

  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.4;

  color: #222;
  background: rgba(255, 255, 255, 0.85);

  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;

  transition:
    border-color 140ms ease,
    background-color 140ms ease;
}

/* textarea behavior */
.kontakt-form textarea {
  resize: vertical;
  min-height: 6rem;
}

/* placeholders */
.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.85rem;
}

/* hover: barely noticeable */
.kontakt-form input:hover,
.kontakt-form textarea:hover {
  border-color: rgba(0, 0, 0, 0.28);
}

/* focus: clear but restrained */
.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.95);
}

/* disabled state */
.kontakt-form input:disabled,
.kontakt-form textarea:disabled {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

/* modern button */
.kontakt-form button {
  margin-top: 0.75rem;
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);

  color: rgba(0, 0, 0, 0.85);
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;

  cursor: pointer;
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    opacity 140ms ease;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.kontakt-form button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.kontakt-form button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.kontakt-form button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.1);
}

.kontakt-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* RIGHT COLUMN */
.kontakt-image {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f2f2f2;

  height: 100%;
  width: 100%;
}

.kontakt-image img {
  max-width: 80%;
  max-height: 80vh;

  object-fit: contain;
  display: block;
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* CONTACT: MOBILE */
@media (max-width: 900px) {
  .kontakt-layout {
    grid-template-columns: 1fr;
  }

  .kontakt-left {
    padding: 2rem 1.5rem;
  }

  .kontakt-image {
    min-height: 40vh;
  }

  .kontakt-dummy {
    height: 70%;
  }
}

/* ============================================================
   GRID ITEM OVERLAY (GENERIC)
============================================================ */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 6px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover .overlay {
  opacity: 1;
}

/* ============================================================
   HOMEPAGE
============================================================ */
.homepage {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.homepage-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4vh;
  height: 100%;
  width: 100%;
}

/* Intro */
.home-intro {
  text-align: center;
  font-family: "Spectral";
  color: #333;
}

.home-intro h2 {
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}

.home-intro p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #666;
}

.home-intro p.home-intro-main {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
}

.home-intro p span,
.home-intro p a {
  position: relative;
  cursor: pointer;
  transition: text-decoration 0.2s ease;
  color: inherit;
  text-decoration: none;
}

.home-intro p span.underline,
.home-intro p a.underline,
.home-intro a:hover {
  text-decoration: underline dotted;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  opacity: 1;
  color: #111;
}

.home-intro p a:visited,
.home-intro p a:hover {
  color: inherit;
}

/* Blocks */
.home-blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 100%;
  height: 60%;
}

.home-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 85%;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Single-image sections */
.home-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-section:hover .home-image img {
  transform: scale(1.05);
}

/* Series stack */
.series-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.series-stack img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    top 1.2s ease,
    clip-path 1.2s ease;
  clip-path: inset(33.33% 0 33.33% 0);
  z-index: 1;
}

.series-stack img:nth-child(1) {
  top: -33.33%;
}
.series-stack img:nth-child(2) {
  top: 0;
}
.series-stack img:nth-child(3) {
  top: 33.33%;
}

.home-section:hover .series-stack img:nth-child(1) {
  top: 0;
  clip-path: inset(0 0 0 0);
  z-index: 2;
}

.home-section:hover .series-stack img:nth-child(2),
.home-section:hover .series-stack img:nth-child(3) {
  top: 66%;
}

/* Hover overlay label */
.home-overlay {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
  z-index: 5;
}

.home-section:hover .home-overlay {
  opacity: 1;
}

/* Extra section */
.extra-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  padding: 40px 5%;
  gap: 40px;
  height: 100vh;
  scroll-snap-type: y mandatory;
}

.extra-section .extra-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.extra-section .extra-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.extra-section .extra-image .dummy {
  flex: 1;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  color: #666;
}

.extra-section .extra-image .dummy::after {
  content: "Portrait / Werk";
}

.extra-section .extra-text {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* ============================================================
   ARBEITEN (SHARED)
============================================================ */
.arbeiten-main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.arbeiten-main.no-snap {
  scroll-snap-type: none;
}

/* Ensure each section/tile has a stable full-viewport height */
.arbeiten-section {
  scroll-snap-align: start;  /* ✅ Add this if missing */
  scroll-snap-stop: always;  /* ✅ ADD THIS - prevents scroll skipping sections */
  height: 100vh;
}

/* The tile becomes a 2-row layout: image area + meta area */
.arbeit-einzeln {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;

  /* required for click-zones */
  position: relative;

  /* keep your touch behavior */
  touch-action: none;
}

/* Row 1: image stage fills remaining space */
.arbeit-stage {
  min-height: 0; /* IMPORTANT: lets the grid cell shrink */
  display: flex;
  align-items: center;
  justify-content: center;

  /* spacing like your sketch (image doesn't touch edges) */
  padding: 24px 24px 0 24px;

  position: relative; /* anchor image-flash */
}

/* Image behaves like "max width + max height inside tile" */
.arbeit-bild {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Row 2: meta is BELOW the image, never overlays */
.arbeit-meta {
  padding: 12px 24px 20px 24px;

  /* subtle typography */
  color: rgba(0, 0, 0, 0.82);

  /* avoid long titles crashing the layout */
  max-width: min(560px, calc(100% - 48px));
  overflow-wrap: anywhere;
  hyphens: auto;

  /* don’t block click-zones */
  pointer-events: none;
}

.arbeit-meta-title {
  display: block;
  font-weight: 200;
  margin-bottom: 4px;
}

.arbeit-meta-lines {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.65);
}

.arbeit-meta-count {
  display: block;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
}


.arbeit-bild.objekt {
  width: 100%;
  max-height: 80vh;
  max-width: 80vw;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Click zones */
.click-zone {
  position: absolute;
  top: 0;
  height: 100%;
}

.click-zone.left {
  left: 0;
  width: 35%;
  cursor:
    url("/cursors/arrow-left.png") 0 9,
    w-resize;
}

.click-zone.center {
  left: 35%;
  width: 30%;
  cursor:
    url("/cursors/overview.png") 12 12,
    zoom-out;
}

.click-zone.right {
  right: 0;
  width: 35%;
  cursor:
    url("/cursors/arrow-right.png") 18 9,
    e-resize;
}

/* Serien section */
.serien-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  scroll-snap-align: start;
  padding-top: 5vh;
}

.serien-header {
  text-align: center;
  margin-top: 3vh;
  margin-bottom: 3vh;
}

.serien-header h2 {
  font-size: 1.6rem;
  font-style: italic;
  margin: 0;
}

.serien-year {
  font-size: 1rem;
  color: #555;
  margin-top: 0.2rem;
}

.serien-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 25vh, 460px), 1fr));
  gap: 3vh;
  align-content: start;
}

.arbeit-bild.serie {
  max-height: 85vh;
  object-fit: contain;
}

/* Image-only white flash */
.image-flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  z-index: 3;
}

.image-flash.instant {
  opacity: 1;
  transition: none;
}

/* ============================================================
   SIDEBAR LAYOUT (DESKTOP) — CLEAN CUT
============================================================ */

.sidebar-layout {
  display: grid;
  grid-template-columns: clamp(260px, 18vw, 290px) 1fr;
  height: 100vh;
  overflow: hidden;
}

.sidebar,
.sidebar-main {
  min-height: 0;
  min-width: 0;
}

/* main scroll container */
.sidebar-main {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ============================================================
   SIDEBAR (NO LINES, CORRECT POSITIONING)
============================================================ */

.sidebar.sidebar-remodel {
  height: 100vh;
  position: sticky;
  top: 0;

  background: #f2f4f7;
  padding: 2vh 1.5vw;

  display: grid;
  grid-template-rows: auto 1fr auto; /* header / centered middle / bottom */

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  font-weight: 300;
  letter-spacing: 0.01em;
}

/* links: constant metrics */
.sidebar.sidebar-remodel a {
  text-decoration: none;
  color: #333;
  font-family: var(--font-spectral);
  font-weight: 400;              /* ✅ constant */
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-size: clamp(1rem, 2.3vw, 1.1rem);
  opacity: 0.85;
}

/* active: emphasis without width change */
.sidebar.sidebar-remodel a.active {
  text-decoration: underline dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  opacity: 1;
  color: #111;
}



/* ============================================================
   HEADER: width controlled by the Arbeiten row
============================================================ */

.sidebar-header {
  display: inline-grid;
  grid-template-rows: auto auto;
  justify-items: stretch;   /* 👈 important */
  width: fit-content;       /* 👈 width defined by the row */
  margin: 0 auto;
  text-align: center;
}

/* Arbeiten row defines width */
.sidebar-work-main--row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  margin-top: 6px;
}

.sidebar-dot {
  color: rgba(0, 0, 0, 0.45);
  transform: translateY(-0.06em);
}

.sidebar-logo {
  margin-bottom: 10px;
}

.sidebar-logoLink {
  display: block;
  width: 100%;
}

/* THIS was missing: the element must have height */
.sidebar-logoMark {
  display: block;
  width: 100%;
  aspect-ratio: 118.10942 / 45.88792; /* from your SVG viewBox */
  
  background-color: #333; /* logo color */

  -webkit-mask-image: url("/img/logo.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("/img/logo.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* ============================================================
   MIDDLE: subchapters truly centered (no scroll)
============================================================ */

.sidebar-work {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.sidebar-subchapters {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.sidebar-subchapters ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-subchapters li {
  margin: 7px 0;
  display: flex;
  justify-content: center;
}

.sidebar-subchapters a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-subchapters-empty {
  height: 1px;
}

/* ============================================================
   BOTTOM: secondary + icons + small grey impressum
============================================================ */

.sidebar-secondary {
  padding: 6px 10px 10px;
  display: grid;
  gap: 10px;
}

.sidebar-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2px;
}

.sidebar-icons img {
  height: 15px;
  width: auto;
  display: block;
  opacity: 0.85;
}

/* legal inside secondary */
.sidebar-secondary .sidebar-legal {
  margin-top: 12px;
}

.sidebar-secondary .sidebar-legal a {
  color: rgba(0, 0, 0, 0.55);
  font-size: clamp(0.85rem, 1.9vw, 0.95rem);
  line-height: 1.25;
  font-weight: 400;
}


/* Desktop hide mobile nav */
@media screen and (min-width: 769px) {
  .burger,
  .mobile-nav {
    display: none !important;
  }
}

.desktop-view {
  display: block;
  pointer-events: auto;
}

.mobile-view {
  display: none;
  pointer-events: none;
}

.desktop-single {
  position: relative;
}

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: white;
  opacity: 0;
  pointer-events: none;
  animation: fadeInOut 3s ease forwards;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.toast-success {
  background-color: #22c55e;
}

.toast-error {
  background-color: #ef4444;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ============================================================
   OVERVIEW OVERLAY + MASONRY
============================================================ */
.overview-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  overflow-y: auto;
  overflow-x: hidden;

  padding: 56px 24px 40px;
}

.overview-x {
          position: fixed;
          top: 18px;
          right: 18px;
          z-index: 10001;
          appearance: none;
          border: 0;
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(8px);
          -webkit-backdrop-filter: blur(8px);
          color: rgba(0, 0, 0, 0.8);
          width: 32px;
          height: 32px;
          border-radius: 999px;
          cursor: pointer;
          font-size: 18px;
          line-height: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: background 120ms;
}

.overview-x:hover {
          background: rgba(0, 0, 0, 0.12);
}

/* Masonry columns */
.overview-masonry {
  width: min(1300px, 96vw);
  margin: 0 auto;
  column-count: 3;
  column-gap: 14px;
}

@media (max-width: 1200px) {
  .overview-masonry {
    column-count: 2;
  }
}

/* Tile */
.overview-tile {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;

  border: 0;
  background: transparent;
  cursor: pointer;

  border-radius: 8px;
  overflow: hidden;
  break-inside: avoid;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
  transition: transform 160ms ease;

  position: relative;

  /* per-image reserved space */
  aspect-ratio: var(--ar, auto);

  /* placeholder tint while loading */
  background: rgba(255, 255, 255, 0.2);
}

.overview-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  opacity: 0;
  transition: opacity 220ms ease;
  will-change: opacity;
}

.overview-tile img[data-loaded="true"] {
  opacity: 1;
}

.overview-tile.is-active {
  outline: 2px solid rgba(0, 0, 0, 0.55);
  outline-offset: -2px;
}

/* Meta hover overlay */
.overview-meta {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
  opacity: 0;
  transition: opacity 160ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  pointer-events: none;
}

.overview-tile:hover .overview-meta,
.overview-tile:focus-visible .overview-meta {
  opacity: 1;
}

.overview-meta-text {
  text-align: center;
  color: #000;
  max-width: 100%;
}

.overview-meta-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.overview-meta-size {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.2;
}

/* ============================================================
   LIVE BADGE LINK
============================================================ */
.link-with-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.link-with-badge.has-live {
  padding-right: 2.2em;
}

.live-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.35rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  line-height: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  user-select: none;
  pointer-events: none;

  margin-left: -0.1em;
  transform: translate(-0.4em, -1.5em) rotate(18deg);
  transform-origin: left bottom;
  color: red;
}

.nav-group {
  text-decoration: none;
}


/* title + misc inline */
.arbeit-meta-head {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55em;
}

.arbeit-meta-misc {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 400;
  white-space: nowrap;
}