/* ============================================================
   Fonts (self-hosted)
   ============================================================ */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/geist-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/geist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --canvas: #f1f5f8;
  --ink: #16191b;
  --accent: #08a5dc;
  --line: #c9d8e1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Geist, Arial, sans-serif;
}

/* ============================================================
   Hero (Startseite)
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
  background: var(--canvas);
}
.hero-video {
  position: absolute;
  top: 106px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 106px);
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  height: 106px;
  max-width: 1400px;
  margin: auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(22, 25, 27, 0.11);
  position: relative;
  z-index: 100;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.06em;
  font-size: 25px;
}
.brand-name span {
  color: var(--accent);
}
.brand-logo {
  width: 38px;
  height: 33px;
  display: block;
  object-fit: contain;
}
.nav .brand-logo {
  width: clamp(220px, 20vw, 310px);
  height: auto;
}
.nav .brand-name {
  display: none;
}
footer .brand-logo {
  width: 190px;
  height: auto;
}
footer .brand-name {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 52px);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-contact {
  color: white !important;
  background: var(--ink);
  padding: 14px 22px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.nav-contact:hover {
  background: var(--accent);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  padding: 9px 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}
.hero-content {
  max-width: 1400px;
  margin: auto;
  padding: clamp(100px, 15.3vh, 190px) clamp(24px, 5vw, 72px) 80px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #50707c;
}
.eyebrow span {
  width: 30px;
  height: 3px;
  background: var(--accent);
}
h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(65px, 8.8vw, 146px);
  line-height: 0.88;
  letter-spacing: -0.09em;
  font-weight: 600;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}
.intro {
  max-width: 610px;
  margin: 42px 0 36px;
  font-size: clamp(19px, 1.75vw, 26px);
  letter-spacing: -0.038em;
  line-height: 1.27;
}
.typewriter-wrap {
  display: inline;
}
.typewriter-line {
  display: inline-block;
  margin-top: 10px;
}
.typewriter-hash {
  color: #8a9aa1;
  margin-right: 2px;
}
#typewriter-text {
  color: var(--accent);
  font-weight: 600;
}
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 2px;
  background: var(--accent);
  vertical-align: -0.1em;
  animation: typewriter-blink 0.85s step-end infinite;
}
@keyframes typewriter-blink {
  50% {
    opacity: 0;
  }
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.button {
  min-height: 59px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button b {
  font-size: 21px;
  font-weight: 400;
}
.button-dark {
  color: white;
  background: var(--ink);
}
.button-blue {
  color: var(--ink);
  background: var(--accent);
}
.button-parallelogram {
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
.hero-meta {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 5vw, 72px);
  bottom: 36px;
  display: flex;
  gap: 22px;
  color: #6c828c;
  font-size: 12px;
  font-weight: 500;
}
.hero-meta span + span::before {
  content: "/";
  margin-right: 22px;
  color: var(--accent);
}
@media (max-width: 720px) {
  .nav {
    height: 80px;
  }
  .hero-video {
    top: 80px;
    height: calc(100% - 80px);
    opacity: 0.2;
  }
  .brand {
    font-size: 21px;
  }
  .brand-logo {
    width: 32px;
    height: 28px;
  }
  .nav .brand-logo {
    width: 190px;
    height: auto;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    z-index: 200;
  }
  .nav-links.open {
    display: flex;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(22, 25, 27, 0.08);
  }
  .menu-toggle {
    display: block;
  }
  .hero-video {
    object-position: 68% center;
  }
  .hero-content {
    padding-top: 90px;
    padding-bottom: 150px;
  }
  h1 {
    font-size: clamp(53px, 15vw, 94px);
    line-height: 0.9;
  }
  .intro {
    margin-top: 30px;
  }
  .hero-meta {
    left: 24px;
    right: auto;
    bottom: 25px;
    display: grid;
    gap: 7px;
  }
  .hero-meta span + span::before {
    display: none;
  }
}

/* ============================================================
   Section-Basis (gemeinsame Abstände / Überschriften)
   ============================================================ */
.section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px);
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #71818a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-kicker span {
  color: var(--accent);
}
.section h2 {
  margin: 25px 0 0;
  font-size: clamp(44px, 5.3vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 600;
}

/* ============================================================
   Über-mich-Teaser (Startseite)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(50px, 10vw, 180px);
  align-items: end;
}
.about-copy {
  max-width: 480px;
}
.about-copy p {
  margin: 0 0 19px;
  color: #4b5b63;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
.text-link {
  display: inline-flex;
  gap: 17px;
  margin-top: 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.text-link b {
  color: var(--accent);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(75px, 10vw, 150px);
  padding-top: 22px;
  border-top: 1px solid #c7d2d8;
}
.stats div {
  display: grid;
  gap: 8px;
}
.stats strong {
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.07em;
}
.stats span {
  color: #6b7a81;
  font-size: 14px;
}

/* ============================================================
   Leistungen-Liste (Startseite)
   ============================================================ */
.services {
  background: #fff;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.service-list {
  margin-top: clamp(65px, 8vw, 110px);
  border-top: 1px solid #cbd6dc;
}
.service-item {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 27px 5px;
  border: none;
  text-decoration: none;
  color: var(--ink);
  transition:
    padding 0.2s ease,
    color 0.2s ease;
}
.service-item:hover {
  padding-left: 18px;
  color: var(--accent);
}
.service-item > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}
.service-item h3 {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 39px);
  letter-spacing: -0.055em;
}
.service-item p {
  margin: 7px 0 0;
  color: #6c7b83;
  font-size: 15px;
}
.service-item > b {
  font-size: 25px;
  font-weight: 400;
}

/* ============================================================
   Kompetenzen (Startseite)
   ============================================================ */
.capabilities {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 150px);
  color: white;
  background: var(--ink);
}
.section-kicker.light {
  color: #a0b2bb;
}
.capability-intro h2 {
  color: white;
}
.capability-intro p {
  max-width: 350px;
  color: #b5c5cc;
  line-height: 1.45;
  font-size: 18px;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #425057;
  border-left: 1px solid #425057;
}
.capability-grid article {
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid #425057;
  border-bottom: 1px solid #425057;
}
.capability-icon {
  display: block;
  color: var(--accent);
  font-size: 30px;
}
.capability-grid h3 {
  margin: 43px 0 8px;
  font-size: 24px;
  letter-spacing: -0.05em;
}
.capability-grid p {
  margin: 0;
  color: #aab8bd;
  max-width: 210px;
  font-size: 14px;
  line-height: 1.4;
}

/* ============================================================
   Referenzen / Portfolio (Startseite)
   ============================================================ */
.portfolio {
  background: #fff;
}
.split {
  align-items: flex-end;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-top: 72px;
}
.project:last-child {
  grid-column: 2;
}
.project-art {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}
.project-large .project-art {
  min-height: 500px;
}
.project-art-one {
  display: flex;
  align-items: end;
  gap: 17px;
  padding: 45px;
  background: #083e55;
}
.project-art-one i {
  width: 19%;
  height: 55%;
  background: var(--accent);
  transform: skewX(-17deg);
}
.project-art-one i:nth-child(2) {
  height: 77%;
  background: #d6f0fa;
}
.project-art-one i:nth-child(3) {
  height: 103%;
}
.project-art-one span {
  position: absolute;
  top: 29px;
  right: 35px;
  color: #d6f0fa;
  font-size: 15px;
}
.binary-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 24px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.08);
  word-break: break-all;
  overflow: hidden;
  pointer-events: none;
}
.art-stat {
  position: absolute;
  left: 45px;
  bottom: 45px;
  z-index: 1;
}
.art-stat strong {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.art-stat span {
  position: static;
  display: block;
  margin-top: 8px;
  color: #b7d9e6;
  font-size: 13px;
  line-height: 1.4;
}
.art-stat.dark strong {
  color: var(--ink);
}
.art-stat.dark span {
  color: #5c6f78;
}
.project-art-two {
  background: #15191c;
  padding: 38px;
}
.terminal {
  color: var(--accent);
  font-size: 42px;
  font-weight: 600;
}
.code-line {
  display: block;
  height: 6px;
  margin-top: 22px;
  background: #6b7a81;
}
.code-line.one {
  width: 66%;
}
.code-line.two {
  width: 90%;
  background: var(--accent);
}
.code-line.three {
  width: 43%;
}
.status-grid {
  position: absolute;
  top: 38px;
  right: 38px;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 7px;
}
.status-grid .dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.status-grid .dot.ok {
  background: var(--accent);
}
.status-grid .dot.warn {
  background: #e8b839;
}
.status-grid .dot.crit {
  background: #e0555f;
}
.art-caption {
  position: absolute;
  left: 38px;
  bottom: 38px;
  color: #8b9aa1;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.project-art-three {
  position: relative;
  background: #e3edf1;
}
.node-grid {
  position: absolute;
  inset: 40px 40px 90px 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}
.node-grid i {
  display: block;
  background: #c3d6de;
  border-radius: 3px;
}
.node-grid i:nth-child(3n) {
  background: var(--accent);
}
.node-grid i:nth-child(7n) {
  background: #08324a;
}
.project-info {
  padding: 19px 0 35px;
}
.project-info p {
  margin: 0 0 8px;
  color: #71818a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.project-info h3 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.05em;
}
.project-info .desc {
  margin: 0 0 18px;
  max-width: 480px;
  color: #4b5b63;
  font-size: 15px;
  line-height: 1.5;
}
.project-info a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ============================================================
   Testimonials (Startseite)
   ============================================================ */
.testimonials {
  text-align: center;
}
.testimonials .section-kicker {
  justify-content: center;
}
.quote-wrap {
  max-width: 1000px;
  margin: 55px auto 0;
}
.quote-mark {
  display: block;
  color: var(--accent);
  font-size: 100px;
  height: 66px;
  font-family: Georgia, serif;
}
.quote-wrap blockquote {
  margin: 20px 0 43px;
  font-size: clamp(27px, 3.3vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}
.person {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.person > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.person p {
  margin: 0;
  color: #738188;
  font-size: 13px;
  line-height: 1.45;
}
.person b {
  color: var(--ink);
}

/* ============================================================
   Prozess-Schritte (wiederverwendet: Startseite + Werdegang)
   ============================================================ */
.process {
  background: #dfecef;
}
.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}
.process li {
  border-top: 2px solid var(--accent);
  padding-top: 17px;
}
.process li > b {
  color: var(--accent);
  font-size: 13px;
}
.process h3 {
  margin: 45px 0 10px;
  font-size: 25px;
  letter-spacing: -0.05em;
}
.process p {
  margin: 0;
  max-width: 220px;
  color: #60717a;
  line-height: 1.43;
  font-size: 15px;
}

/* ============================================================
   Kontakt-CTA (alle Seiten)
   ============================================================ */
.contact {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  color: white;
  background: var(--ink);
}
.contact h2 {
  color: white;
}
.contact-action {
  width: min(410px, 100%);
  align-self: end;
}
.contact-action p {
  margin: 0 0 28px;
  color: #b6c6cd;
  font-size: 18px;
  line-height: 1.45;
}

/* ============================================================
   Footer (alle Seiten)
   ============================================================ */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 30px clamp(24px, 7vw, 112px);
  color: #6d7a80;
  background: #fff;
  font-size: 13px;
}
footer .brand {
  font-size: 19px;
}
footer a:not(.brand) {
  color: inherit;
  text-decoration: none;
}
footer a:not(.brand):hover {
  color: var(--accent);
}
.page-header {
  max-width: 1400px;
  margin: auto;
}

/* ============================================================
   Leistungs-Unterseite (leistung.html)
   ============================================================ */
.service-hero {
  background: #fff;
  padding-top: clamp(60px, 9vw, 110px);
}
.back-link {
  margin-bottom: 34px;
}
.back-link b {
  order: -1;
}
.service-hero h1 {
  font-size: clamp(52px, 6.4vw, 100px);
  max-width: 960px;
}
.service-hero .intro {
  max-width: 680px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}
.service-hero-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: clamp(20px, 3vw, 36px);
  max-width: 100%;
}
.service-hero-image img {
  height: auto;
  display: block;
}
.service-hero-image.single img {
  width: clamp(240px, 26vw, 360px);
  max-width: 100%;
}
.service-hero-image.multi img {
  width: clamp(130px, 15vw, 190px);
  max-width: 45%;
}
@media (max-width: 760px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
  .service-hero-image {
    justify-content: flex-start;
    justify-self: start;
    order: -1;
    margin-bottom: 8px;
  }
  .service-hero-image.single img {
    width: clamp(160px, 55vw, 260px);
  }
  .service-hero-image.multi img {
    width: clamp(110px, 34vw, 160px);
    max-width: 42%;
  }
}
.service-benefits {
  color: white;
  background: var(--ink);
}
.service-benefits h2 {
  color: white;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.practice {
  background: #fff;
}
.practice-box {
  max-width: 900px;
  margin-top: 34px;
  padding-left: 30px;
  border-left: 3px solid var(--accent);
}
.practice-box p {
  margin: 0;
  color: #3a464c;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.not-found {
  background: #fff;
}
.not-found .intro {
  max-width: 560px;
  margin: 30px 0 36px;
  font-size: 19px;
}

/* ============================================================
   Rechtliche Seiten (Impressum / Datenschutz)
   ============================================================ */
.legal-page {
  background: #fff;
}
.legal-page h1 {
  margin: 25px 0 0;
  max-width: none;
  font-size: clamp(44px, 5.3vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 600;
}
.legal-content {
  max-width: 640px;
  margin-top: 40px;
}
.legal-content h3 {
  margin: 38px 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.legal-content h3:first-child {
  margin-top: 0;
}
.legal-content h4 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #33414a;
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #4b5b63;
  font-size: 16px;
  line-height: 1.55;
}
.legal-content li {
  margin-bottom: 4px;
}
.legal-content p {
  margin: 0 0 4px;
  color: #4b5b63;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.legal-content a {
  color: var(--accent);
}
.legal-content code {
  font-family: inherit;
  font-size: 0.9em;
  background: #e8f0f4;
  color: #33414a;
  padding: 1px 5px;
  border-radius: 3px;
}
.legal-source {
  margin-top: 34px;
  color: #8a9aa1;
  font-size: 13px;
}
.profile-hero {
  background: #fff;
  padding-top: clamp(60px, 9vw, 110px);
}
.profile-hero h1 {
  font-size: clamp(48px, 5.8vw, 90px);
  max-width: 980px;
}
.profile-hero .intro {
  max-width: 720px;
}

/* ============================================================
   Über mich: Skills
   ============================================================ */
.skills-section {
  background: #f6f9fa;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 60px);
  margin-top: clamp(50px, 7vw, 90px);
}
.skills-col h3 {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.skills-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.skills-col li {
  padding: 14px 0;
  border-top: 1px solid #cbd6dc;
  color: #4b5b63;
  font-size: 15px;
  line-height: 1.45;
}
.skills-col li:last-child {
  border-bottom: 1px solid #cbd6dc;
}
.skills-col li b {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 760px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Über mich: Werdegang
   ============================================================ */
.career-section {
  background: #fff;
}
.career-logo {
  height: 30px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.career-logo img {
  max-height: 100%;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}
.career-section li:hover .career-logo img {
  filter: grayscale(0);
  opacity: 1;
}
.downloads-section {
  background: #f6f9fa;
}
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-top: clamp(50px, 7vw, 90px);
}
.download-card {
  padding: clamp(28px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
}
.download-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.download-quote {
  margin: 0 0 26px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: #4b5b63;
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 760px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Kontaktseite (kontakt.html)
   ============================================================ */
.contact-hero {
  background: #fff;
  padding-top: clamp(60px, 9vw, 110px);
}
.contact-hero h1 {
  font-size: clamp(48px, 6.4vw, 100px);
  max-width: 900px;
}
.contact-hero .intro {
  max-width: 640px;
}
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag-pills span {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4b5b63;
  font-size: 14px;
  font-weight: 500;
}
.contact-form-section {
  background: #f6f9fa;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
}
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.availability-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3bb273;
  flex-shrink: 0;
}
.contact-detail {
  margin-bottom: 32px;
}
.contact-detail h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71818a;
}
.contact-detail p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}
.contact-detail a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-detail a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.contact-form {
  background: #fff;
  padding: clamp(28px, 4vw, 46px);
}
.form-row {
  margin-bottom: 24px;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5b63;
}
.form-row .required {
  color: var(--accent);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 2px;
  border: none;
  border-bottom: 2px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: Geist, Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .button {
  margin-top: 8px;
}
.form-note {
  margin: 14px 0 0;
  color: #8a9aa1;
  font-size: 13px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-recaptcha {
  margin-bottom: 24px;
}
.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #d5484f;
}
.form-note.form-error {
  color: #d5484f;
}
.form-success {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .form-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 75px 24px;
  }
  .about-grid,
  .capabilities,
  .contact {
    grid-template-columns: 1fr;
    display: grid;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .service-item {
    grid-template-columns: 35px 1fr;
  }
  .service-item > b {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .project:last-child {
    grid-column: auto;
  }
  .project-large .project-art {
    min-height: 350px;
  }
  .project-art {
    min-height: 230px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article {
    min-height: 190px;
  }
  .process ol {
    grid-template-columns: 1fr 1fr;
    margin-top: 55px;
  }
  .contact-action {
    align-self: auto;
  }
  .section-heading.split .text-link {
    display: none;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 20px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(22, 25, 27, 0.15);
}
.cookie-banner-text {
  flex: 1;
}
.cookie-banner-text strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 15px;
}
.cookie-banner-text p {
  margin: 0;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.cookie-btn-accept {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
