/* ===================================================================
   schupi by chezlu — Landingpage
   Farben:
     Hintergrund   #f4f1ec
     Überschrift   #4a4139
     Text mittel   #574f45
     Fließtext     #7e7264
     Gedämpft      #a1947f
=================================================================== */

:root {
  --bg:        #f4f1ec;
  --dark:      #4a4139;
  --medium:    #574f45;
  --text:      #7e7264;
  --muted:     #a1947f;
  --card-bg:   #faf8f5;
  --card-line: #e6dfd4;
  --line:      #d8cfc2;
  --link:      #8a7b6c;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

/* ---------------- Hero ---------------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 92px;
}

.hero__logo {
  width: 100%;
  max-width: 470px;
  height: auto;
}

.hero__badge {
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
}

.hero__title {
  margin-top: 26px;
  color: var(--dark);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 55px;
  line-height: 1.12;
  letter-spacing: 0.5px;
}

.hero__title span {
  display: block;
}

.hero__text {
  margin-top: 22px;
  max-width: 410px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------------- Countdown ---------------- */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
  max-width: 640px;
  margin: 56px auto 0;
}

.countdown__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-line);
  border-radius: 2px;
  padding: 22px 8px 16px;
}

.countdown__value {
  color: var(--dark);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 54px;
  line-height: 1;
}

.countdown__label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

/* ---------------- Kontakt ---------------- */
.contact {
  max-width: 640px;
  margin: 96px auto 0;
  text-align: center;
}

.contact__title {
  color: var(--dark);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 6px;
}

.contact__subtitle {
  color: var(--muted);
  font-size: 14px;
}

/* ---------------- Formular ---------------- */
.form {
  margin-top: 40px;
  text-align: left;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.field {
  margin-bottom: 26px;
}

.field__label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  color: var(--dark);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease;
}

.field__input::placeholder {
  color: var(--muted);
}

.field__input:focus {
  border-bottom-color: var(--medium);
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
}

select.field__input {
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* ---------------- Bot-Schutz ---------------- */
/* Honeypot: visuell und für Screenreader ausgeblendet, aber im DOM */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* "Ich bin ein Mensch"-Checkbox */
.human {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--medium);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.human input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--medium);
  cursor: pointer;
}

/* Datenschutz-Hinweis unter dem Formular */
.form__privacy {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.form__privacy a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.form__privacy a:hover {
  color: var(--dark);
  border-color: var(--medium);
}

/* ---------------- Button ---------------- */
.btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--medium);
  color: var(--bg);
  border: none;
  border-radius: 2px;
  padding: 15px 38px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--dark);
}

/* ---------------- Standort / Karte ---------------- */
.location {
  max-width: 640px;
  margin: 96px auto 0;
  text-align: center;
}

.location__title {
  color: var(--dark);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 6px;
}

.location__address {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.location__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--card-line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 65, 57, 0.08);
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* dezente, zum Design passende Anmutung */
  filter: grayscale(0.3) sepia(0.08);
}

.location__link {
  display: inline-block;
  margin-top: 18px;
  color: var(--link);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.location__link:hover {
  color: var(--dark);
  border-color: var(--medium);
}

/* ---------------- Footer ---------------- */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
  padding: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--dark);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 600px) {
  .hero {
    padding-top: 56px;
  }

  .hero__title {
    font-size: 40px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer {
    flex-direction: column;
  }
}
