/* ---------- Tokens ---------- */
:root {
  --paper: #121110;
  --paper-raised: #1C1916;
  --ink: #F4F0E8;
  --ink-soft: #B9B2A3;
  --accent: #FF5B3D;
  --accent-ink: #14120F;
  --gold: #D8B968;
  --meta: #8F8776;
  --line: rgba(244, 240, 232, 0.14);

  --font-display: "Space Grotesk", "Archivo Black", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", monospace;

  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;

  --radius: 4px;
  --max-width: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.snap-section { scroll-snap-align: start; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 500; }

.text-light { font-weight: 300; color: var(--ink-soft); }

p { margin: 0 0 var(--space-3); color: var(--ink-soft); font-weight: 300; }

a { color: inherit; }

.mono { font-family: var(--font-mono); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  min-height: 44px;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #cf3620; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn:active { transform: scale(0.98); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 17, 16, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}
.logo img { display: block; height: 44px; width: auto; }
.logo-dot { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: var(--space-5); }
.main-nav a { text-decoration: none; font-weight: 500; }
.main-nav a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: var(--space-3) var(--space-4) var(--space-4);
  background: var(--paper);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 761px) {
  .mobile-nav { display: none !important; }
}

/* ---------- Contact sheet (signature element) ---------- */
.contact-sheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  border: 1.5px solid var(--ink);
  padding: var(--space-2);
  background: var(--paper-raised);
}

.sheet-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 2px;
  background:
    radial-gradient(120% 140% at 20% 15%,
      hsl(var(--hue) var(--sat) calc(var(--l1) + 12%)) 0%,
      hsl(var(--hue) var(--sat) var(--l1)) 45%,
      hsl(var(--hue) var(--sat) var(--l2)) 100%);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.sheet-frame.is-visible { opacity: 1; transform: translateY(0); transition: opacity 500ms ease, transform 500ms ease; }

.sheet-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 6px);
}

.sheet-frame:hover { box-shadow: 0 8px 18px rgba(23,21,18,0.18); transform: translateY(-3px); }

.frame-no {
  position: absolute;
  left: 6px;
  bottom: 6px;
  font-size: 0.62rem;
  color: rgba(250,247,242,0.85);
  background: rgba(23,21,18,0.35);
  padding: 2px 6px;
  border-radius: 2px;
  z-index: 2;
}

.grease-circle {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  z-index: 3;
  pointer-events: none;
}
.grease-circle path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
}
.sheet-frame--pick.is-visible .grease-circle path {
  animation: draw-circle 900ms ease forwards 300ms;
}
@media (prefers-reduced-motion: reduce) {
  .sheet-frame--pick .grease-circle path { stroke-dashoffset: 0; animation: none; }
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }

/* ---------- Hero ---------- */
.hero--centered {
  height: calc(100vh - var(--header-h));
  padding: var(--space-4) 0;
  overflow: hidden;
}
@media (max-width: 640px), (max-height: 640px) {
  .hero--centered { height: auto; min-height: calc(100vh - var(--header-h)); overflow: visible; }
}
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.hero-center .eyebrow { margin-bottom: var(--space-4); }
.hero-center h1 { max-width: 22ch; }

.text-gradient,
.hero-gradient {
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub { max-width: 52ch; font-size: 1.08rem; }

.hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-top: var(--space-4); }
.btn-arrow { transition: transform 150ms ease; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-6);
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.hero-stats > div:not(.stat-divider) { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.stat-divider { width: 1px; height: 2rem; background: var(--line); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-reveal 600ms ease forwards;
  animation-delay: calc(var(--d) * 110ms + 80ms);
}
@keyframes hero-reveal { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
}

@media (max-width: 620px) {
  .hero-stats { gap: var(--space-3); }
  .hero-stats > div:not(.stat-divider) span:last-child { font-size: 0.78rem; }
}

/* ---------- Logo Cloud ---------- */
.logo-cloud { padding: var(--space-5) 0 var(--space-6); }
.logo-cloud .eyebrow { text-align: center; }
.logo-cloud-title {
  text-align: center;
  margin: 0 0 var(--space-5);
}
.logo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 880px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.logo-grid-hline { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line); }
.logo-grid-hline--bottom { top: auto; bottom: 0; }
.logo-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
  border-right: 1px solid var(--line);
}
.logo-cell:last-child { border-right: none; }
.logo-cell--fill { background: var(--paper-raised); }
.logo-link { display: flex; align-items: center; justify-content: center; width: 100%; }
.logo-img {
  max-height: 38px;
  max-width: 100%;
  width: auto;
  opacity: 0.88;
  transition: opacity 200ms ease;
}
.logo-cell:hover .logo-img { opacity: 1; }
/* Kosche ist eine dünne Serifenschrift mit viel Weißraum im Logo selbst -
   bei identischer Pixelhöhe wirkt sie neben den fetten Blockschriften
   (Trinkgut, Laservibe, ICS) kleiner. Optischer Ausgleich statt strikt
   gleicher Bounding-Box. */
.logo-img--optical-boost { max-height: 72px; }
.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  padding: var(--space-2) var(--space-3);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.logo-cell:hover .logo-card { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32); }
.logo-card img {
  max-height: 38px;
  max-width: 100%;
  width: auto;
}
.logo-plus {
  position: absolute;
  width: 10px;
  height: 10px;
  color: var(--gold);
  z-index: 2;
}
.logo-plus::before, .logo-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.logo-plus::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.logo-plus::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.logo-plus--br { right: -5px; bottom: -5px; }

@media (max-width: 560px) {
  .logo-grid { grid-template-columns: 1fr; max-width: 220px; }
  .logo-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .logo-cell:last-child { border-bottom: none; }
  .logo-plus { display: none; }
}

/* ---------- Services ---------- */
.services { padding: var(--space-6) 0; }
.filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.service-frame {
  border-top: 3px solid var(--ink);
  padding-top: var(--space-3);
}
.service-frame .frame-no {
  position: static;
  display: inline-block;
  background: none;
  color: var(--meta);
  padding: 0;
  margin-bottom: var(--space-2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .filmstrip { grid-template-columns: 1fr; }
}

/* ---------- Vorher/Nachher ---------- */
.revamp { padding: var(--space-6) 0; }
.revamp-sub { max-width: 58ch; }

.revamp-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: var(--space-4);
  margin-top: var(--space-5);
  align-items: stretch;
}

.revamp-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  min-height: 200px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--paper);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.om-stage {
  position: absolute;
  inset: 0;
  container-type: inline-size;
  --om-speed: 1.8;
}

/* ---- Vorher-Panel: alte Seite, Männchen putzt sie sauber ---- */
.om-before {
  position: absolute; left: 3%; top: 6%; width: 44%; height: 78%;
  background: #fff; border: 0.15cqw solid #444;
  box-shadow: 0.3cqw 0.3cqw 0 rgba(0, 0, 0, 0.35);
  display: flex; flex-direction: column; overflow: hidden;
}
.om-browserbar {
  display: flex; align-items: center; gap: 0.7cqw; height: 3.2cqw; flex: 0 0 auto;
  background: #d8d8d8; border-bottom: 0.1cqw solid #aaa; padding: 0 1cqw;
}
.om-dot { width: 1.1cqw; height: 1.1cqw; border-radius: 50%; flex-shrink: 0; }
.om-dot--sm { width: 0.7cqw; height: 0.7cqw; }
.om-dot--pill { width: 1.4cqw; height: 0.9cqw; border-radius: 20%; }
.om-dot--grey { width: 0.9cqw; height: 0.9cqw; background: #ccc; }
.om-url { margin-left: auto; font-family: "Courier New", monospace; font-size: 0.9cqw; color: #666; }
.om-url--light { color: #999; letter-spacing: 0.03cqw; }

.om-before-body {
  position: relative; flex: 1; overflow: hidden; padding: 1.2cqw;
  display: flex; flex-direction: column; gap: 1.2cqw;
}
.om-hero {
  height: 8.5cqw; flex: 0 0 auto;
  background: linear-gradient(90deg, #e63946, #ffd60a, #7b2cbf);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3cqw;
}
.om-hero-title {
  font-family: Georgia, serif; font-weight: 700; font-size: 2cqw; color: #fff;
  text-shadow: 0.1cqw 0.1cqw 0 #000; letter-spacing: 0.1cqw; text-align: center;
}
.om-blink { font-family: "Courier New", monospace; font-size: 1.1cqw; color: #fff; animation: om-blink 1s ease-in-out infinite; }

.om-tilegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9cqw; flex: 0 0 auto; }
.om-tile { height: 5.6cqw; position: relative; }
.om-tile--x::before, .om-tile--x::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 1.6cqw; height: 0.15cqw; background: #999;
  transform: translate(-50%, -50%) rotate(45deg);
}
.om-tile--x::after { transform: translate(-50%, -50%) rotate(-45deg); }
.om-tile--x-light::before, .om-tile--x-light::after { background: #eee; }

.om-btnrow { display: flex; gap: 0.6cqw; flex-wrap: wrap; flex: 0 0 auto; }
.om-chip { font-size: 1.1cqw; padding: 0.5cqw 1cqw; }
.om-counter { font-family: "Courier New", monospace; font-size: 0.95cqw; color: #555; margin-top: auto; }

.om-dust {
  position: absolute; width: 0.7cqw; height: 0.7cqw; border-radius: 50%;
  background: #8a7a63; animation: om-dust calc(2.2s / var(--om-speed)) ease-in infinite;
}
.om-dust--sm { width: 0.5cqw; height: 0.5cqw; }

.om-cleaner {
  position: absolute; left: 6%; bottom: 2%; width: 9cqw; height: 15cqw;
  animation: om-walk calc(4s / var(--om-speed)) ease-in-out infinite;
}
.om-cleaner-head {
  position: absolute; left: 3.3cqw; bottom: 6.5cqw; width: 2.6cqw; height: 2.6cqw;
  border-radius: 50%; background: oklch(78% 0.06 60);
}
.om-cleaner-body {
  position: absolute; left: 2.8cqw; bottom: 1.5cqw; width: 3.6cqw; height: 5.3cqw;
  border-radius: 0.9cqw; background: oklch(40% 0.09 250);
}
.om-cleaner-broom {
  position: absolute; left: 5.8cqw; bottom: 5.8cqw; width: 0.5cqw; height: 6cqw;
  background: #8a5a2b; border-radius: 0.3cqw; transform-origin: top center;
  animation: om-broom calc(0.5s / var(--om-speed)) ease-in-out infinite;
}
.om-cleaner-broomhead {
  position: absolute; bottom: -0.6cqw; left: -0.6cqw; width: 1.7cqw; height: 1cqw;
  background: #d4a24c; border-radius: 0.2cqw;
}

/* ---- Pfeil-Fluss zwischen den Panels ---- */
.om-arrowlane {
  position: absolute; left: 47.5%; top: 6%; width: 5%; height: 78%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6cqw;
}
.om-arrowline { width: 0.1cqw; height: 40%; background: rgba(255, 255, 255, 0.18); }
.om-arrowbox { position: relative; width: 2.4cqw; height: 1.6cqw; flex-shrink: 0; }
.om-arrow {
  position: absolute; inset: 0; width: 0; height: 0;
  border-top: 0.8cqw solid transparent; border-bottom: 0.8cqw solid transparent;
  border-left: 1.2cqw solid var(--accent);
  opacity: 0;
  animation: om-arrow calc(1.5s / var(--om-speed)) ease-out infinite;
}

/* ---- Nachher-Panel: neue, moderne Seite ---- */
.om-after {
  position: absolute; right: 3%; top: 6%; width: 44%; height: 78%;
  background: #fff; border: 0.1cqw solid #e5e5e5;
  box-shadow: 0 0.5cqw 1.6cqw rgba(0, 0, 0, 0.4);
  display: flex; flex-direction: column; overflow: hidden;
}
.om-after-topbar {
  display: flex; align-items: center; gap: 0.7cqw; height: 3.2cqw; flex: 0 0 auto;
  background: #f5f5f5; border-bottom: 0.08cqw solid #eee; padding: 0 1cqw;
}
.om-after-body { flex: 1; display: flex; flex-direction: column; gap: 1.6cqw; padding: 2cqw; }
.om-after-nav { display: flex; align-items: center; justify-content: space-between; }
.om-logo-mark { width: 2.1cqw; height: 2.1cqw; border-radius: 0.5cqw; background: var(--accent); }
.om-navlines { display: flex; gap: 1.2cqw; }
.om-navlines span { height: 0.55cqw; border-radius: 0.3cqw; background: #e5e5e5; }
.om-navlines span:nth-child(1) { width: 2.8cqw; }
.om-navlines span:nth-child(2) { width: 2.4cqw; }
.om-navlines span:nth-child(3) { width: 3.1cqw; }
.om-cta-glow {
  background: var(--accent); color: #fff; font-size: 1.05cqw; padding: 0.55cqw 1.4cqw;
  border-radius: 2cqw; animation: om-glow 2.4s ease-in-out infinite;
}
.om-after-text { display: flex; flex-direction: column; gap: 0.7cqw; }
.om-barlg { width: 70%; height: 2.3cqw; border-radius: 0.35cqw; background: oklch(22% 0.01 80); }
.om-barsm { width: 52%; height: 0.9cqw; border-radius: 0.3cqw; background: #dcdcdc; margin-top: 0.4cqw; }
.om-after-image {
  flex: 1; border-radius: 0.6cqw; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg,
    color-mix(in oklch, var(--accent) 10%, white), color-mix(in oklch, var(--accent) 10%, white) 1.2cqw,
    color-mix(in oklch, var(--accent) 16%, white) 1.2cqw, color-mix(in oklch, var(--accent) 16%, white) 2.4cqw);
  font-family: "Courier New", monospace; font-size: 1cqw;
  color: color-mix(in oklch, var(--accent) 70%, black); letter-spacing: 0.05cqw;
  animation: om-float 3.6s ease-in-out infinite;
}

@keyframes om-walk { 0% { transform: translateX(0); } 50% { transform: translateX(27cqw); } 100% { transform: translateX(0); } }
@keyframes om-broom { 0%, 100% { transform: rotate(-16deg); } 50% { transform: rotate(20deg); } }
@keyframes om-dust {
  0% { opacity: 0; transform: translateY(0) scale(0.6); }
  35% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-1.6cqw) scale(1); }
}
@keyframes om-arrow {
  0% { opacity: 0; transform: translateX(0); }
  20% { opacity: 1; }
  65% { opacity: 1; }
  100% { opacity: 0; transform: translateX(2.4cqw); }
}
@keyframes om-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }
@keyframes om-glow {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 45%, transparent); }
  50% { box-shadow: 0 0 1.4cqw 0.4cqw color-mix(in oklch, var(--accent) 28%, transparent); }
}
@keyframes om-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-0.6cqw); } }

@media (prefers-reduced-motion: reduce) {
  .om-cleaner { animation: none; left: 33%; }
  .om-cleaner-broom { animation: none; transform: rotate(0deg); }
  .om-dust { display: none; }
  .om-arrow { animation: none; opacity: 1; }
  .om-blink { animation: none; }
  .om-cta-glow { animation: none; }
  .om-after-image { animation: none; }
}

.revamp-tag {
  position: absolute; top: 0.9rem; z-index: 4;
  font-size: 0.62rem; letter-spacing: 0.08em; padding: 0.25rem 0.55rem;
}
.revamp-tag--before { left: 0.9rem; background: var(--ink); color: var(--paper); }
.revamp-tag--after { right: 0.9rem; background: var(--accent); color: var(--accent-ink); }

.revamp-badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}
.badge-chip {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--paper-raised); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  opacity: 0; transform: translateX(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.badge-chip svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--gold); margin-top: 0.2rem; }
.badge-chip-text { display: flex; flex-direction: column; gap: 0.25rem; }
.badge-chip-text strong { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; }
.badge-chip-text span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }
.revamp-frame.is-visible ~ .revamp-badges .badge-chip { opacity: 1; transform: translateX(0); }
.revamp-badges .badge-chip:nth-child(1) { transition-delay: 1450ms; }
.revamp-badges .badge-chip:nth-child(2) { transition-delay: 1550ms; }
.revamp-badges .badge-chip:nth-child(3) { transition-delay: 1650ms; }

@media (max-width: 760px) {
  .revamp-layout { grid-template-columns: 1fr; }
}


@media (max-width: 560px) {
  .contact-sheet { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- About / Process ---------- */
.about { padding: var(--space-7) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
.process {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-2);
}
.process li {
  position: relative;
  display: flex; gap: var(--space-3); align-items: center;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.85rem var(--space-3);
}
.process li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(var(--space-3) + 0.5rem);
  bottom: calc(-1 * var(--space-2) - 1px);
  width: 1.5px;
  height: var(--space-2);
  background: var(--line);
}
.process .frame-no {
  position: static; background: none; color: var(--gold); padding: 0;
  font-size: 1.1rem; font-weight: 500; flex-shrink: 0; line-height: 1;
}
.process strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.process p { margin: 0; font-size: 0.9rem; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact { padding: var(--space-7) 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
}
.contact-details { margin-top: var(--space-4); }
.contact-details div { margin-bottom: var(--space-3); }
.contact-details dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--meta); }
.contact-details dd { margin: 0; font-weight: 500; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { color: var(--accent); }

.job-ticket {
  background: var(--paper-raised);
  border: 1.5px solid var(--ink);
  padding: var(--space-5);
  position: relative;
}
.job-ticket::before {
  content: "AUFTRAGSZETTEL · #24-KTK";
  position: absolute;
  top: -1px; left: -1px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 4px 10px;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ticket-row { margin-top: var(--space-4); display: flex; flex-direction: column; gap: 0.4rem; }
.ticket-row:first-of-type { margin-top: var(--space-3); }
.job-ticket label { font-size: 0.82rem; font-weight: 600; }
.job-ticket input, .job-ticket textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  min-height: 44px;
}
.job-ticket textarea { min-height: 100px; resize: vertical; }
.job-ticket input:focus, .job-ticket textarea:focus { border-color: var(--accent); }
.job-ticket input.is-invalid, .job-ticket textarea.is-invalid { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--paper)); }
.job-ticket .btn { margin-top: var(--space-4); width: 100%; }
.ticket-status { margin: var(--space-3) 0 0; font-size: 0.85rem; min-height: 1.2em; }
.ticket-status.is-success { color: #6FCB9A; }
.ticket-status.is-error { color: var(--accent); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: var(--space-4) 0 var(--space-5); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--meta);
}
.footer-inner nav { display: flex; gap: var(--space-4); }
.footer-inner a { text-decoration: none; }
.footer-inner a:hover { color: var(--accent); }
