/* FPC – Florian Protzer Consulting */

:root {
  --bg: #0C0E11;
  --bg-alt: #101318;
  --bg-footer: #090B0D;
  --line: rgba(255, 255, 255, 0.09);
  --text: #F2F2EF;
  --body: #A7ACB3;
  --muted: #8C919A;
  --accent: #C2A15F;
  --accent-hover: #D8BC80;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

::selection { background: var(--accent); color: var(--bg); }

img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 14, 17, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

.brand { display: flex; align-items: baseline; gap: 10px; color: var(--text); }
.brand-mark { font-family: 'Instrument Serif', serif; font-size: 24px; letter-spacing: 0.04em; }
.brand-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.nav-links a { color: #B9BDC2; }
.nav-links a:hover { color: var(--text); }

/* ---------- Sections ---------- */

section { border-bottom: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }

.accent-rule { display: block; width: 48px; height: 2px; background: var(--accent); }

/* ---------- Hero ---------- */

.hero .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy { max-width: 800px; display: flex; flex-direction: column; gap: 28px; }

.hero h1 {
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-sub { margin: 0; font-size: 17px; line-height: 1.65; color: var(--body); max-width: 56ch; }

.cta-block { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 2px;
  letter-spacing: 0.01em;
}
.btn-cta:hover { background: var(--accent-hover); color: var(--bg); }

.cta-note { font-size: 13.5px; color: var(--muted); }

.trust-line {
  margin: 12px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #C7CBCF;
}
.portrait { margin: 0; position: relative; max-width: 340px; }
.portrait img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: 55% 18%;
  border-radius: 2px;
  filter: grayscale(30%);
}
.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  pointer-events: none;
}
/* ---------- Leistungen ---------- */

.services .container { padding-top: 72px; padding-bottom: 72px; }
.services h2 { font-size: clamp(30px, 3.4vw, 42px); margin: 16px 0 48px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.2s;
}
.service-card:hover { background: #14181E; }
.service-num { font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.service-card h3 { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.service-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-card li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--body); }
.service-card li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* ---------- Über mich ---------- */

.about .container {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  gap: 48px;
  align-items: center;
}
.about-copy { display: flex; flex-direction: column; gap: 22px; }
.about h2 { font-size: clamp(30px, 3.4vw, 42px); }
.about p { margin: 0; font-size: 16.5px; line-height: 1.7; color: var(--body); }

/* ---------- Ansatz ---------- */

.approach .container {
  max-width: 880px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.approach h2 { font-size: clamp(32px, 4vw, 48px); }
.approach p { margin: 0; font-size: 17px; line-height: 1.75; color: var(--body); text-wrap: pretty; }

/* ---------- Kontakt ---------- */

.contact .container {
  max-width: 760px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.contact h2 { font-size: clamp(32px, 4vw, 48px); }
.contact p { margin: 0; font-size: 16.5px; line-height: 1.7; color: var(--body); }
.contact .btn-cta { padding: 16px 32px; margin-top: 6px; }
.contact-mail { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */

.site-footer { background: var(--bg-footer); }
.site-footer .container {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand strong { font-family: 'Instrument Serif', serif; font-size: 18px; font-weight: 400; }
.footer-brand span, .footer-brand a { font-size: 13px; color: var(--muted); }
.footer-brand a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 24px; font-size: 13px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); }

/* ---------- Legal pages ---------- */

.legal .container { max-width: 760px; padding-top: 72px; padding-bottom: 96px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 32px; }
.legal h2 { font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 19px; margin: 36px 0 10px; }
.legal p { color: var(--body); font-size: 15.5px; margin: 0 0 12px; }
.legal .placeholder { color: var(--muted); font-style: italic; }
.back-link { display: inline-block; margin-bottom: 40px; font-size: 14px; }

/* ---------- Desktop ---------- */

@media (min-width: 880px) {
  .hero .container { padding-top: 110px; padding-bottom: 96px; }
  .about .container { grid-template-columns: 4fr 8fr; gap: 64px; align-items: start; }
  .services .container, .about .container { padding-top: 88px; padding-bottom: 88px; }
  .approach .container, .contact .container { padding-top: 96px; padding-bottom: 96px; }
}

@media (max-width: 879px) {
  .nav-links { gap: 18px; font-size: 13px; }
  .brand-name { display: none; }
}

@media (max-width: 520px) {
  .nav-links { gap: 14px; }
}
