.bl-bcat {
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}

.bl-bcat__panel {
  border: 1px solid #c8b99f;
  background: #fbf8f1;
  box-shadow: 0 24px 54px rgba(21, 17, 13, .08);
}

.bl-bcat__intro {
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-bottom: 1px solid #d6cdbc;
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 200, 149, .20) 0%, rgba(223, 200, 149, 0) 38%),
    linear-gradient(180deg, #fbf8f1 0%, #f5f0e7 100%);
}

.bl-bcat__eyebrow {
  margin: 0 0 .9rem;
  color: #a47b3f;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}

.bl-bcat__intro h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--bl-serif, Georgia, serif);
  font-size: clamp(2.45rem, 4vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 600;
  color: #15110d;
}

.bl-bcat__intro p:not(.bl-bcat__eyebrow) {
  max-width: 47rem;
  margin: 1.1rem 0 0;
  color: #312923;
  line-height: 1.55;
}

.bl-bcat__privacy {
  padding: .85rem 1rem;
  border-left: 3px solid #a47b3f;
  background: rgba(223, 200, 149, .22);
}

.bl-bcat__form {
  padding: clamp(1.25rem, 3vw, 2.2rem);
  display: grid;
  gap: 1.2rem;
}

.bl-bcat__field {
  display: grid;
  gap: .45rem;
}

.bl-bcat__field label {
  display: block;
  color: #15110d;
  font-weight: 700;
}

.bl-bcat__field label span {
  color: #74685c;
  font-weight: 400;
  font-size: .92em;
}

.bl-bcat__field input[type="text"],
.bl-bcat__field input[type="file"] {
  width: 100%;
  border: 1px solid #c8b99f;
  background: #fffdf8;
  color: #15110d;
  padding: .85rem .95rem;
}

.bl-bcat__field input[type="file"] {
  cursor: pointer;
}

.bl-bcat__help {
  margin: 0;
  color: #74685c;
  font-size: .95rem;
  line-height: 1.45;
}

.bl-bcat__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .3rem;
}

.bl-bcat__button {
  border: 1px solid #15110d;
  background: #15110d;
  color: #fff7ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  line-height: 1.15;
  cursor: pointer;
}

.bl-bcat__button:hover,
.bl-bcat__button:focus {
  background: #000;
  color: #fff;
}

.bl-bcat__button--ghost {
  background: transparent;
  color: #15110d;
  border-color: #8f8576;
}

.bl-bcat__button--ghost:hover,
.bl-bcat__button--ghost:focus {
  background: #15110d;
  color: #fff7ec;
}

.bl-bcat__status {
  min-height: 1.5rem;
  padding: 0 clamp(1.25rem, 3vw, 2.2rem) clamp(1.25rem, 3vw, 2.2rem);
  color: #312923;
}

.bl-bcat__status[data-state="error"] {
  color: #7f1d1d;
}

.bl-bcat__status[data-state="success"] {
  color: #315529;
}

@media (max-width: 640px) {
  .bl-bcat__actions {
    display: grid;
  }

  .bl-bcat__button {
    width: 100%;
  }
}
