<<<<<<< HEAD
/* Global Styles and Variables */
:root {
  --bg: #f4f4f4;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #dddddd;
  --accent: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(244, 244, 244, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 22px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  background: #ebebeb;
}

.hero-card,
.section-card,
.project-card,
.social-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-card {
  padding: 28px;
}

.hero-logo-wrap {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fafafa, #efefef);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ececec;
  padding: 30px;
}

.hero-logo-wrap img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.08));
}

section {
  padding: 28px 0 72px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 8px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 720px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.image-placeholder {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, #efefef, #dcdcdc);
  display: grid;
  place-items: center;
  color: #7a7a7a;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.project-image {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #e9e9e9;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.section-card {
  padding: 30px;
}

.section-card p + p {
  margin-top: 14px;
}

.projects-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card,
.social-card {
  overflow: hidden;
}

.project-content,
.social-content {
  padding: 22px;
}

.project-card h3,
.social-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.project-card p,
.social-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f1f1;
  border: 1px solid #e8e8e8;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333333;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cta {
  padding-bottom: 90px;
}

.cta-box {
  padding: 36px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 24px;
}

.cta-buttons {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .projects-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* Legal Pages (Impressum & Datenschutz) */

.legal-page {
  padding: 48px 0 90px;
}

.legal-hero {
  padding: 24px 0 28px;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  margin-bottom: 14px;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-card {
  padding: 34px;
  display: grid;
  gap: 28px;
}

.legal-block + .legal-block {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.legal-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-static {
  display: flex;
}

@media (max-width: 920px) {
  .nav-static {
    display: none;
  }

  .legal-card {
    padding: 24px;
  }
=======
/* Global Styles and Variables */
:root {
  --bg: #f4f4f4;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #dddddd;
  --accent: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(244, 244, 244, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 22px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  background: #ebebeb;
}

.hero-card,
.section-card,
.project-card,
.social-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-card {
  padding: 28px;
}

.hero-logo-wrap {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fafafa, #efefef);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ececec;
  padding: 30px;
}

.hero-logo-wrap img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.08));
}

section {
  padding: 28px 0 72px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 8px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 720px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.image-placeholder {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, #efefef, #dcdcdc);
  display: grid;
  place-items: center;
  color: #7a7a7a;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.project-image {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #e9e9e9;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.section-card {
  padding: 30px;
}

.section-card p + p {
  margin-top: 14px;
}

.projects-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card,
.social-card {
  overflow: hidden;
}

.project-content,
.social-content {
  padding: 22px;
}

.project-card h3,
.social-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.project-card p,
.social-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f1f1;
  border: 1px solid #e8e8e8;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333333;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cta {
  padding-bottom: 90px;
}

.cta-box {
  padding: 36px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 24px;
}

.cta-buttons {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .projects-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* Legal Pages (Impressum & Datenschutz) */

.legal-page {
  padding: 48px 0 90px;
}

.legal-hero {
  padding: 24px 0 28px;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  margin-bottom: 14px;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-card {
  padding: 34px;
  display: grid;
  gap: 28px;
}

.legal-block + .legal-block {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.legal-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-static {
  display: flex;
}

@media (max-width: 920px) {
  .nav-static {
    display: none;
  }

  .legal-card {
    padding: 24px;
  }
>>>>>>> 4b732b33213af491f118b249f23c516b0ed1dca1
}