* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Bitcount', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #ffffff;
  background: transparent;
}

.contact {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 90px;
  padding: 40px 60px 40px 500px;
}

/* ---- links on the left ---- */
.links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.headline {
  font-size: 3.2rem;
  margin-bottom: 6px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.7rem;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.social:hover {
  opacity: 1;
  transform: translateX(8px);
}
.social-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
  flex-shrink: 0;
}
.social-icon.stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ---- form on the right: minimal underline style ---- */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 340px;
}
.form-title {
  font-size: 1.6rem;
  opacity: 0.7;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#contact-form input,
#contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding: 8px 2px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
}
#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-bottom-color: #ffffff;
}
.hp { display: none !important; }

.send-btn {
  align-self: flex-start;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0;
  padding: 10px 28px;
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.send-btn:hover {
  background: #ffffff;
  color: #111111;
}
#form-status {
  font-size: 0.95rem;
  opacity: 0.85;
  min-height: 1.2em;
}

/* ===== nicer scrollbars ===== */
* { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.25) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }