@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/roboto-light.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-medium.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto-bold.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/roboto-black.woff2') format('woff2');
  font-display: swap;
}

:root {
  --color-bg: #2B2D31;
  --color-text: #F1F1F0;
  --color-text-muted: #A0A2A6;
  --color-accent: #E63946;
  --color-accent-2: #00C2D1;

  --font-body: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8vh 5vw 80px;
}

.logo img {
  width: 100%;
  max-width: 1024px;
  height: auto;
  display: block;
  margin: 0 auto 64px;
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: normal;
  margin: 0;
  color: var(--color-text);
  white-space: nowrap;
}

.hero .subline {
  font-family: var(--font-body);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 4vw, 2rem);
  line-height: 1.25;
  letter-spacing: normal;
  max-width: 36ch;
  margin: 32px 0 64px;
  color: var(--color-accent);
}

/* Services */

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 40ch;
}

.service .label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-accent-2);
  border: 1px solid var(--color-accent-2);
  border-radius: 4px;
  padding: 2px 12px;
  margin-bottom: 12px;
}

.service p {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 300;
}

/* Contact */

.contact {
  padding: 80px 5vw;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.contact h2,
.site-footer h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.contact a {
  color: var(--color-accent-2);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer / Impressum */

.site-footer {
  padding: 48px 5vw 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
