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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Mono', monospace;
  background-color: #f5f5f5;
  color: #111;
}

/* #href {
  color: #111;
} */

.pbold {
  font-weight: 600;
}

.pnumeric {
  font-family: 'Inter', sans-serif;
}

/* INTRO SECTION */
.intro {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  gap: 300px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #111;
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.logo-row {
  display: flex;
}

.logo-row span {
  font-family: 'DM Mono', monospace;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  width: 0.8em;
  text-align: center;
}

.adresse {
  /* padding-top: 10px; */
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  align-self: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  font-size: 14px;
  letter-spacing: 0.05em;
  min-height: 1.4em;
}

.form-message--ok  { color: #3a7d44; }
.form-message--err { color: #b00020; }

/* CONTACT FORM */
.contact {
  padding: 80px 60px;
  background-color: #ebebeb;
  text-align: center;
}

.contact h2 {
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 620px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  background: none;
  border: none;
  border-bottom: 1px solid #999;
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  outline: none;
  color: #111;
}

.contact textarea {
  height: 200px;
  resize: none;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #999;
}

.contact button {
  align-self: flex-start;
  background: transparent;
  color: #111;
  border: 1px solid #111;
  border-radius: 6px;
  padding: 11px 40px;
  font-size: 16px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact button:hover {
  background: #353535;
  color: #f5f5f5;
}

/* IMPRESSUM */
.impressum {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  padding: 60px;
  max-width: 720px;
  margin: 0 auto;
}

.impressum h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.impressum p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.impressum a {
  color: #111;
}

/* FOOTER */
footer {
  padding: 30px 60px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  color: #888;
  display: flex;
  justify-content: space-between;
}

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

footer a {
  color: #888;
  text-decoration: none;
}

footer a:hover {
  color: #111;
}

/* MOBILE */
@media (max-width: 768px) {

  .intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 32px;
    gap: 48px;
  }

  .logo-row span {
    font-size: 38px;
  }

  .adresse {
    text-align: center;
  }

  .contact {
    padding: 60px 32px;
  }

  .contact form {
    max-width: 100%;
  }

  .contact button {
    align-self: center;
  }

  footer {
    padding: 24px 32px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  
}