:root {
  --bb-bg: #070707;
  --bb-yellow: #ffd51f;
  --bb-text: #ffffff;
  --bb-muted: #bdbdbd;
  --bb-field: #111111;
  --bb-field-border: rgba(255,255,255,.24);
  --bb-yellow-border: rgba(255,213,31,.48);
}

html { background: var(--bb-bg); }

body.beerbattls-contact-v1 {
  margin: 0 !important;
  min-height: 100vh;
  color: var(--bb-text);
  background:
    radial-gradient(circle at 4% 96%, rgba(255,213,31,.09), transparent 25%),
    radial-gradient(circle at 96% 22%, rgba(255,213,31,.07), transparent 24%),
    var(--bb-bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.beerbattls-contact-v1 * { box-sizing: border-box; }
body.beerbattls-contact-v1 a { color: inherit; }

.bb-contact-shell { min-height: 100vh; display: flex; flex-direction: column; }

.bb-contact-header {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bb-contact-brand { display: inline-flex; }
.bb-contact-brand img { display: block; width: 230px; max-width: 58vw; height: auto; object-fit: contain; }

.bb-contact-main {
  width: min(1420px, calc(100% - 64px));
  margin: auto;
  padding: 34px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(460px, .85fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
}

.bb-contact-copy { max-width: 800px; }

.bb-contact-eyebrow,
.bb-contact-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255,213,31,.7);
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.bb-contact-copy h1 {
  margin: 24px 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-weight: 900;
  line-height: .91;
  letter-spacing: .005em;
  text-transform: uppercase;
}

.bb-contact-copy h1 span,
.bb-contact-copy h1 strong { display: block; }
.bb-contact-copy h1 span { color: #fff; font-size: clamp(66px, 5.3vw, 98px); font-weight: inherit; }
.bb-contact-copy h1 strong { color: var(--bb-yellow); font-size: clamp(76px, 6.25vw, 116px); font-weight: inherit; }

.bb-contact-lead {
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.5;
  font-weight: 500;
}

.bb-contact-card {
  width: 100%;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid var(--bb-yellow-border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20,20,20,.985), rgba(8,8,8,.995));
  box-shadow: 0 32px 92px rgba(0,0,0,.62), 0 0 55px rgba(255,213,31,.055);
}

.bb-contact-card-kicker { margin-bottom: 28px; }

.bb-native-contact { display: grid; gap: 18px; margin: 0; }
.bb-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.bb-field { display: block; position: relative; margin: 0; }
.bb-field > span {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 18px;
  color: #a7a7a7;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  pointer-events: none;
  transition: transform .16s ease, font-size .16s ease, color .16s ease, top .16s ease;
}

.bb-field input,
.bb-field textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid var(--bb-field-border);
  border-radius: 8px;
  outline: none;
  color: #fff;
  background: var(--bb-field);
  box-shadow: none;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.bb-field input { height: 60px; padding: 22px 18px 8px; }
.bb-field textarea { min-height: 154px; padding: 34px 18px 16px; line-height: 1.5; resize: vertical; }

.bb-field:focus-within > span,
.bb-field:has(input:not(:placeholder-shown)) > span,
.bb-field:has(textarea:not(:placeholder-shown)) > span {
  top: 7px;
  color: var(--bb-yellow);
  font-size: 10px;
}

/* Placeholder wird nur technisch verwendet, damit :placeholder-shown funktioniert. */
.bb-field input::placeholder,
.bb-field textarea::placeholder { color: transparent; }

.bb-field input:focus,
.bb-field textarea:focus {
  border-color: var(--bb-yellow);
  box-shadow: 0 0 0 3px rgba(255,213,31,.09);
  background: #0e0e0e;
}

.bb-field input:-webkit-autofill,
.bb-field input:-webkit-autofill:hover,
.bb-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 0 0 1000px #111 inset !important;
  caret-color: #fff;
}

.bb-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #eee;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.bb-check input { position: absolute; opacity: 0; pointer-events: none; }
.bb-checkmark {
  position: relative;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 5px;
  background: #111;
}
.bb-check input:focus-visible + .bb-checkmark { box-shadow: 0 0 0 3px rgba(255,213,31,.16); }
.bb-check input:checked + .bb-checkmark { border-color: var(--bb-yellow); background: var(--bb-yellow); }
.bb-check input:checked + .bb-checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #070707;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bb-contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66px;
  min-height: 66px;
  margin: 8px 0 0;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: #090909;
  background: linear-gradient(90deg, #ffcb17, #ffe349);
  box-shadow: 0 0 30px rgba(255,213,31,.20);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.bb-contact-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(255,213,31,.27); }
.bb-contact-submit:disabled { cursor: wait; opacity: .68; }

.bb-contact-status {
  display: none;
  margin: 0 0 20px;
  padding: 15px 17px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.bb-contact-status.is-visible,
.bb-contact-status.is-success,
.bb-contact-status.is-error { display: block; }
.bb-contact-status.is-success { border: 1px solid rgba(255,213,31,.62); color: #fff; background: rgba(255,213,31,.09); }
.bb-contact-status.is-error { border: 1px solid rgba(255,100,100,.52); color: #fff; background: rgba(180,25,25,.14); }

.bb-contact-privacy-note {
  margin: 24px 0 0;
  color: #929292;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.bb-contact-privacy-note a { color: var(--bb-yellow) !important; text-decoration: underline; text-underline-offset: 3px; }

.bb-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.admin-bar .bb-contact-shell { min-height: calc(100vh - 32px); }

@media (max-width: 1120px) {
  .bb-contact-main { grid-template-columns: 1fr; max-width: 760px; gap: 46px; padding-top: 48px; }
}

@media (max-width: 720px) {
  .bb-contact-header,
  .bb-contact-main { width: min(100% - 34px, 720px); }
  .bb-contact-header { padding-top: 20px; }
  .bb-contact-brand img { width: 205px; }
  .bb-contact-main { padding: 30px 0 52px; }
  .bb-contact-copy h1 span { font-size: clamp(52px, 14vw, 74px); }
  .bb-contact-copy h1 strong { font-size: clamp(60px, 15.6vw, 82px); }
  .bb-contact-lead { font-size: 18px; }
  .bb-contact-card { padding: 24px 18px; border-radius: 17px; }
  .bb-contact-row { grid-template-columns: 1fr; gap: 18px; }
}
