:root {
  --mint: #cfead9;
  --ink: #0f1012;
  --bg: #ffffff;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
html {
  height: 100%;
}
body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main */
.uu-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(16px, 6vw, 24px);
  flex: 1;
  width: 100%;
}

/* Einleitungstext */
.kontakt-intro {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.kontakt-intro__title {
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.kontakt-intro__text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
}
.kontakt-intro__text strong {
  font-weight: 800;
}
.kontakt-intro__text em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

/* Kontaktinformationen */
.kontakt-info {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.kontakt-info__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.kontakt-info__logo img {
  height: clamp(2.5rem, 5vw, 4rem);
  width: auto;
  filter: brightness(0);
}
.kontakt-info__details {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}
.kontakt-info__company {
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #8b6f47;
  margin: 0;
}
.kontakt-info__address,
.kontakt-info__contact {
  font-size: clamp(0.9375rem, 1.3vw, 1rem);
  color: var(--ink);
  margin: 0;
}
.kontakt-info__contact a {
  color: var(--ink);
  text-decoration: none;
}
.kontakt-info__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

/* Formular Section */
.kontakt-form-section {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.uu-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}
.uu-card__title {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
}

/* Form Styles */
.uu-form {
  margin-top: 1.5em;
}
.uu-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(12px, 2vw, 20px);
}
@media (max-width: 600px) {
  .uu-form__row {
    grid-template-columns: 1fr;
  }
}
.uu-form__field {
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.uu-form__field--checkboxes {
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: clamp(16px, 2.5vw, 24px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.uu-form__label {
  display: block;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  margin-bottom: 8px;
  color: var(--ink);
}
.uu-form__required {
  color: var(--ink);
  margin-left: 2px;
}
.uu-form__input,
.uu-form__textarea,
.uu-form__select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.uu-form__input:focus,
.uu-form__textarea:focus,
.uu-form__select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(207, 234, 217, 0.3);
}
.uu-form__input:invalid:not(:placeholder-shown),
.uu-form__textarea:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}
.uu-form__select:invalid {
  border-color: #dc2626;
}
.uu-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.uu-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f1012' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.uu-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: clamp(12px, 2vw, 16px);
}
.uu-form__checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--mint);
}
.uu-form__checkbox-label {
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  cursor: pointer;
  color: var(--ink);
}
.uu-form__actions {
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: clamp(16px, 2.5vw, 24px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.uu-form__submit {
  display: inline-block;
  padding: 14px 32px;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  outline: none;
}
.uu-form__submit:hover {
  background: #b8e0c8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.uu-form__submit:active {
  transform: translateY(1px);
}
.uu-form__submit:focus {
  box-shadow: 0 0 0 3px rgba(207, 234, 217, 0.5);
}
.uu-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.uu-form__message {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}
.uu-form__message--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.uu-form__message--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Footer */
.uu-footer {
  position: relative;
  background: #000;
  color: #fff;
  padding: 2.5rem 1.25rem;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.uu-footer__copy {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.uu-footer__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.uu-footer__link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

