:root {
  --color-black: #000000;
  --color-gold: #D3B865;
  --color-creme: #EBE8E4;
  --color-white: #FFFFFF;
  --color-amber: #FFC000;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

a { color: inherit; }

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

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.6rem 1.4rem 3rem;
}

/* ---------- Logo / Header ---------- */

.brand-header {
  text-align: center;
  margin-bottom: 0.9rem;
}

.brand-header img {
  height: 26px;
  margin: 0 auto 0.4rem;
}

.brand-header .brand-name {
  font-family: 'Noto Serif Display', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-black);
}

/* ---------- Hero ---------- */

.eyebrow {
  text-align: center;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

h1.headline {
  font-family: 'Noto Serif Display', Georgia, serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  margin: 0 auto 1.4rem;
}

h1.headline .line {
  display: block;
}

h1.headline .accent { color: var(--color-gold); }

.subheadline {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 1.8rem;
  font-size: 0.85rem;
  color: #666;
}

/* ---------- Two-column block ---------- */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: stretch;
  margin-bottom: 2.6rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h2 {
  font-family: 'Noto Serif Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0 0 1.4rem;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.bullet-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 0.15rem;
}

.bullet-list p {
  margin: 0;
  font-size: 0.98rem;
  color: #222;
}

.hero-image-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero-image-card.placeholder img {
  max-width: 45%;
  opacity: 0.9;
}

.hero-image-card img.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CTA ---------- */

.cta-block {
  text-align: center;
  margin-bottom: 2.6rem;
}

.cta-button {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cta-button:hover { background: #222; }

.cta-sub {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #666;
}

/* ---------- Mobile ---------- */

@media (max-width: 760px) {
  h1.headline { font-size: clamp(2rem, 9.5vw, 3.1rem); }
  .subheadline { font-size: 0.82rem; margin-bottom: 1.6rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .hero-text { order: 1; }
  .hero-image-card { order: 2; min-height: 260px; }
}

/* ---------- Form (Bewerbung) ---------- */

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.6rem 1.4rem 4rem;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}

.progress-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
}

.progress-dots span.active { background: var(--color-gold); }
.progress-dots span.done { background: var(--color-black); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step h2 {
  font-family: 'Noto Serif Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 1.6rem;
  text-align: center;
}

.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-white);
  color: var(--color-black);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.field textarea { min-height: 110px; resize: vertical; }

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.96rem;
  font-weight: 400;
  color: #222;
  cursor: pointer;
}

.checkbox-group input,
.radio-group input {
  margin-top: 0.2rem;
}

.other-input {
  margin-top: 0.5rem;
  margin-left: 1.9rem;
}

.consent-box {
  background: var(--color-creme);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.85rem;
  color: #333;
}

.consent-box p { margin: 0 0 0.9rem; }

.consent-box a { color: var(--color-black); text-decoration: underline; }

.consent-box label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  cursor: pointer;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-gold);
  margin-left: auto;
}

.btn-primary:hover { background: #222; }

.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  background: transparent;
  color: #666;
}

.form-error {
  color: #b33;
  font-size: 0.85rem;
  margin-top: 0.6rem;
  min-height: 1.1em;
}

/* ---------- Danke-Seite ---------- */

.thanks-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 5rem 1.4rem 5rem;
  text-align: center;
}

.thanks-wrap h1 {
  font-family: 'Noto Serif Display', Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 1.2rem;
}

.thanks-wrap p {
  font-size: 1.05rem;
  color: #333;
}

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  padding: 2rem 1.4rem 2.6rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 1rem;
}

.site-footer .footer-brand {
  font-family: 'Noto Serif Display', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.site-footer nav a {
  font-size: 0.82rem;
  color: #666;
  text-decoration: none;
  margin: 0 0.6rem;
}

.site-footer nav a:hover { color: var(--color-black); }

.site-footer .copyright {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: #999;
}
