/* ============================================
   pw-projekt42.de
   Visual System: Japanisch Minimalistisch
   Fonts: Inter Variable — lokal gehostet
   ============================================ */

/* --- Local Font --- */
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --bg: #f7f5f2;
  --text: #1a1a1a;
  --muted: #888780;
  --faint: #b4b2a9;
  --rule: #d3d1c7;
  --font: "Inter", sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Base --- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 80px 0;
  border-bottom: 0.5px solid var(--rule);
}

section:last-of-type {
  border-bottom: none;
}

/* --- Navigation --- */
nav {
  padding: 32px 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.nav-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

/* --- Hero --- */
.hero {
  padding: 80px 0 96px;
}

.hero-slogan {
  font-size: 13px;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-slogan strong {
  font-weight: 600;
  color: var(--text);
}

.hero-head {
  font-size: 36px;
  font-weight: 200;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-subhead {
  font-size: 13px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--rule);
  padding-top: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--faint);
}

/* --- Section Labels --- */
.section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 40px;
}

/* --- Was ich mache --- */
.intro-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.leistungen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.leistungen li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
}

.leistungen .title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.leistungen .desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Für wen ich arbeite --- */
.fuer-wen p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.fuer-wen p:last-of-type {
  margin-bottom: 0;
}

.fuer-wen .highlight {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  border-left: 1px solid var(--rule);
  padding-left: 20px;
  margin-top: 36px;
  line-height: 1.8;
}

.fuer-wen .coda {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 200;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* --- Kontakt --- */
.kontakt-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.kontakt-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border-bottom: 0.5px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.kontakt-link:hover {
  border-color: var(--text);
}

/* --- Footer --- */
footer {
  padding: 32px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 11px;
  color: var(--faint);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--muted);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .hero-head {
    font-size: 28px;
  }

  .leistungen li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
